diff options
author | Brian Jackson <iggy@gentoo.org> | 2004-01-16 22:31:07 +0000 |
---|---|---|
committer | Brian Jackson <iggy@gentoo.org> | 2004-01-16 22:31:07 +0000 |
commit | d2130591bc9d2b5c90f9e7c126ebb602661410e6 (patch) | |
tree | 48389b010869fe21f8e203e30c201dee56643a80 /eclass/kernel-2.eclass | |
parent | manifest fix (diff) | |
download | historical-d2130591bc9d2b5c90f9e7c126ebb602661410e6.tar.gz historical-d2130591bc9d2b5c90f9e7c126ebb602661410e6.tar.bz2 historical-d2130591bc9d2b5c90f9e7c126ebb602661410e6.zip |
clean up K_EXTRAEWARN, and add it to the documented vars at the top
Diffstat (limited to 'eclass/kernel-2.eclass')
-rw-r--r-- | eclass/kernel-2.eclass | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass index 12ea3bc60813..8839f5a8076e 100644 --- a/eclass/kernel-2.eclass +++ b/eclass/kernel-2.eclass @@ -16,6 +16,7 @@ # K_NOSETEXTRAVERSION - if this is set then EXTRAVERSION will not be automatically set within the kernel Makefile # K_NOUSENAME - if this is set then EXTRAVERSION will not include the first part of ${PN} in EXTRAVERSION # K_EXTRAEINFO - this is a new-line seperated list of einfo displays in postinst and can be used to carry additional postinst messages +# K_EXTRAEWARN - same as K_EXTRAEINFO except ewarn's instead of einfo's # UNIPATCH_LIST - space delimetered list of patches to be applied to the kernel # UNIPATCH_DOCS - space delimemeted list of docs to be installed to the doc dir @@ -207,6 +208,8 @@ postinst_sources() { do einfo "${ELINE}" done + + echo fi # if K_EXTRAEWARN is set then lets display it now @@ -215,8 +218,10 @@ postinst_sources() { echo ${K_EXTRAEWARN} | fmt | while read -s ELINE do - einfo "${ELINE}" + ewarn "${ELINE}" done + + echo fi } |