Gentoo Archives: gentoo-commits

From: "Andrew Gaffney (agaffney)" <agaffney@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] genkernel r608 - trunk
Date: Fri, 29 Feb 2008 01:54:33
Message-Id: E1JUuSE-0000Bh-JK@stork.gentoo.org
1 Author: agaffney
2 Date: 2008-02-29 01:54:29 +0000 (Fri, 29 Feb 2008)
3 New Revision: 608
4
5 Modified:
6 trunk/ChangeLog
7 trunk/gen_initramfs.sh
8 Log:
9 Redirect which output to /dev/null and put quotes around var in test
10
11 Modified: trunk/ChangeLog
12 ===================================================================
13 --- trunk/ChangeLog 2008-02-29 01:06:15 UTC (rev 607)
14 +++ trunk/ChangeLog 2008-02-29 01:54:29 UTC (rev 608)
15 @@ -2,6 +2,9 @@
16 # Copyright 2006-2008 Gentoo Foundation; Distributed under the GPL v2
17 # $Header: $
18
19 + 29 Feb 2008; Andrew Gaffney <agaffney@g.o> gen_initramfs.sh:
20 + Redirect which output to /dev/null and put quotes around var in test
21 +
22 29 Feb 2008; Chris Gianelloni <wolf31o2@g.o> alpha/modules_load,
23 genkernel, ia64/modules_load, ppc/modules_load, ppc64/modules_load,
24 um/modules_load, x86_64/modules_load:
25
26 Modified: trunk/gen_initramfs.sh
27 ===================================================================
28 --- trunk/gen_initramfs.sh 2008-02-29 01:06:15 UTC (rev 607)
29 +++ trunk/gen_initramfs.sh 2008-02-29 01:54:29 UTC (rev 608)
30 @@ -212,8 +212,8 @@
31 }
32
33 append_splash(){
34 - splash_geninitramfs=`which splash_geninitramfs 2>1&`
35 - if [ -x ${splash_geninitramfs} ]
36 + splash_geninitramfs=`which splash_geninitramfs 2>/dev/null`
37 + if [ -x "${splash_geninitramfs}" ]
38 then
39 [ -z "${SPLASH_THEME}" ] && [ -e /etc/conf.d/splash ] && source /etc/conf.d/splash
40 [ -z "${SPLASH_THEME}" ] && SPLASH_THEME=default
41
42 --
43 gentoo-commits@l.g.o mailing list