diff options
author | Nick White <git@njw.me.uk> | 2009-10-26 08:50:47 +0000 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2009-10-26 08:50:47 +0000 |
commit | 4fce968ab3cd0920343ec49e8c77903efffd857c (patch) | |
tree | efae4d418d52e7d6158a99f3fc1965e8092af71a | |
parent | a57c49d1e2245cbb98dfc47da58a539555a438a2 (diff) | |
download | njw-gentoo-local-4fce968ab3cd0920343ec49e8c77903efffd857c.tar.bz2 njw-gentoo-local-4fce968ab3cd0920343ec49e8c77903efffd857c.zip |
Add option to skip deblob check of kernel patches
-rw-r--r-- | eclass/kernel-libre.eclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/eclass/kernel-libre.eclass b/eclass/kernel-libre.eclass index 140850c..80cc3ec 100644 --- a/eclass/kernel-libre.eclass +++ b/eclass/kernel-libre.eclass @@ -35,6 +35,7 @@ check_for_blobs() { # we want the name of a variable (not just its contents) # so can unset it if blobs are found + [[ "$SKIP_PATCH_DEBLOB" == "1" ]] && return 0 [[ -z "${!1}" ]] && return 1 sh ${DISTDIR}/${DEBLOB_CHECK} ${!1} |