summaryrefslogtreecommitdiff
path: root/packages/altboot/files/init.altboot
diff options
context:
space:
mode:
authorMatthias Hentges <oe@hentges.net>2005-08-07 08:36:47 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-08-07 08:36:47 +0000
commit18333dda898cfa195ff4fa3fa1b2535eceb7d16e (patch)
tree3c1b19acbb9d46ebf0955ac14a6d34a23c983db2 /packages/altboot/files/init.altboot
parenta8dbb70c70b53d86d5391dc66e84a3cb563fffce (diff)
altboot: No longer use hutils.conf, only altboot.cfg. Adjust master-pw prompt.
Diffstat (limited to 'packages/altboot/files/init.altboot')
-rw-r--r--packages/altboot/files/init.altboot5
1 files changed, 2 insertions, 3 deletions
diff --git a/packages/altboot/files/init.altboot b/packages/altboot/files/init.altboot
index 28ae7b7042..d9443c568e 100644
--- a/packages/altboot/files/init.altboot
+++ b/packages/altboot/files/init.altboot
@@ -10,15 +10,14 @@ test -e /etc/altboot.func && . /etc/altboot.func || die "ERROR: /etc/altboot.fun
CURRENT_ENV="`set`"
VERSION="0.0.2"
-# Set some defaults in case hutils.conf is missing
+# Set some defaults in case altboot.cfg is missing
REAL_INIT="/sbin/init.sysvinit"
# Read default runlevel from inittab
INIT_RUNLEVEL="`cat /etc/inittab | sed -n "/^id\:/s/id\:\([0-9]\)\:.*$/\1/p"`"
test -z "$INIT_RUNLEVEL" && INIT_RUNLEVEL=5
-test -e /etc/altboot.cfg && . /etc/altboot.cfg || echo "No altboot.cfg" > /dev/tty1
-test -e /etc/hutils.conf && . /etc/hutils.conf || echo "No hutils.conf" > /dev/tty1
+test -e /etc/altboot.cfg && . /etc/altboot.cfg || echo "WARNING: No altboot.cfg found! Check your installation of Altboot!" > /dev/tty1
C_RED="\033[31m"
C_BLUE="\033[34m"