summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Januszewski <spock@gentoo.org>2008-09-21 16:32:34 +0000
committerMichael Januszewski <spock@gentoo.org>2008-09-21 16:32:34 +0000
commit01e7e24612df14f6390305f14e7856a3a2788909 (patch)
tree842661c5acde745fb39b0ffbdbe302f74ac72898 /media-gfx/splashutils
parentalpha/ia64/sparc stable wrt #238249 (diff)
downloadgentoo-2-01e7e24612df14f6390305f14e7856a3a2788909.tar.gz
gentoo-2-01e7e24612df14f6390305f14e7856a3a2788909.tar.bz2
gentoo-2-01e7e24612df14f6390305f14e7856a3a2788909.zip
Fix console=tty1 check to not allow invalid kernel command line options.
(Portage version: 2.2_rc8/cvs/Linux 2.6.27-rc6 x86_64)
Diffstat (limited to 'media-gfx/splashutils')
-rw-r--r--media-gfx/splashutils/ChangeLog6
-rw-r--r--media-gfx/splashutils/splashutils-1.5.4.2.ebuild4
2 files changed, 7 insertions, 3 deletions
diff --git a/media-gfx/splashutils/ChangeLog b/media-gfx/splashutils/ChangeLog
index 346b8d048913..5e1e1b1bde1a 100644
--- a/media-gfx/splashutils/ChangeLog
+++ b/media-gfx/splashutils/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-gfx/splashutils
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.145 2008/09/21 07:16:19 solar Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.146 2008/09/21 16:32:34 spock Exp $
+
+ 21 Sep 2008; Michał Januszewski <spock@gentoo.org>
+ splashutils-1.5.4.2.ebuild:
+ Fix console=tty1 check to not allow invalid kernel command line options.
21 Sep 2008; <solar@gentoo.org> splashutils-1.5.4.2.ebuild:
- Make cross compile aware. Avoid calls to built_with_use when doing x-compiles
diff --git a/media-gfx/splashutils/splashutils-1.5.4.2.ebuild b/media-gfx/splashutils/splashutils-1.5.4.2.ebuild
index c16ce4af4509..f65053bc2507 100644
--- a/media-gfx/splashutils/splashutils-1.5.4.2.ebuild
+++ b/media-gfx/splashutils/splashutils-1.5.4.2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.2.ebuild,v 1.4 2008/09/21 07:16:19 solar Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.2.ebuild,v 1.5 2008/09/21 16:32:34 spock Exp $
EAPI="1"
@@ -182,7 +182,7 @@ pkg_postinst() {
fi
if ! test -f /proc/cmdline ||
- ! egrep -q '(console|CONSOLE)=(tty1|/dev/tty1)' /proc/cmdline ; then
+ ! egrep -q '(console=tty1|CONSOLE=/dev/tty1)' /proc/cmdline ; then
elog "It is required that you add 'console=tty1' to your kernel"
elog "command line parameters."
elog ""