Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 88690 Details for
Bug 136076
kernel-2 eclass K_EXTRAEINFO/WARN enhancement
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
kernel-2.eclass.diff
kernel-2.eclass.diff (text/plain), 1.69 KB, created by
Peter Hyman
on 2006-06-08 08:22:25 UTC
(
hide
)
Description:
kernel-2.eclass.diff
Filename:
MIME Type:
Creator:
Peter Hyman
Created:
2006-06-08 08:22:25 UTC
Size:
1.69 KB
patch
obsolete
>--- /home/peter/tmp/kernel-2.eclass 2006-06-07 17:00:29.000000000 -0400 >+++ ./kernel-2.eclass 2006-06-07 16:58:42.000000000 -0400 >@@ -1,6 +1,6 @@ > # Copyright 1999-2005 Gentoo Foundation > # Distributed under the terms of the GNU General Public License v2 >-# $Header: /var/www/www.gentoo.org/raw_cvs/gentoo-x86/eclass/kernel-2.eclass,v 1.178 2006/05/28 11:28:52 brix Exp $ >+# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.178 2006/05/28 11:28:52 brix Exp $ > > # Description: kernel.eclass rewrite for a clean base regarding the 2.6 > # series of kernel with back-compatibility for 2.4 >@@ -33,6 +33,9 @@ > # postinst and can be used to carry additional postinst > # messages > # K_EXTRAEWARN - same as K_EXTRAEINFO except ewarn's instead of einfo's >+# K_EXTRAEINFO_F and - these _F variables will use echo -e so that line >+# K_EXTRAEWARN_F formatting line \n or \t can be used. Line breaks will >+# override what the fmt command would do. > # K_SYMLINK - if this is set, then forcably create symlink anyway > # > # K_DEFCONFIG - Allow specifying a different defconfig target. >@@ -666,11 +669,23 @@ > while read -s ELINE; do einfo "${ELINE}"; done > fi > >+ # print with format >+ if [[ -n ${K_EXTRAEINFO_F} ]]; then >+ echo -e ${K_EXTRAEINFO_F} | fmt -w75 -s | >+ while read -s ELINE; do einfo "${ELINE}"; done >+ fi >+ > # if K_EXTRAEWARN is set then lets display it now > if [[ -n ${K_EXTRAEWARN} ]]; then > echo ${K_EXTRAEWARN} | fmt | > while read -s ELINE; do ewarn "${ELINE}"; done > fi >+ >+ # print with format >+ if [[ -n ${K_EXTRAEWARN_F} ]]; then >+ echo -e ${K_EXTRAEWARN_F} | fmt -w75 -s | >+ while read -s ELINE; do ewarn "${ELINE}"; done >+ fi > } > > postinst_headers() {
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 136076
: 88690 |
88829