LICENSE = "GPL"
IGNORE_STRIP_ERRORS = "1"
-PR = "r16"
+PR = "r17"
SRC_URI = "file://altboot-menu \
# This function is activated by init.altboot by calling this script with the "run" option
run_module() {
- test -e /etc/altboot.func && . /etc/altboot.func || die "ERROR: /etc/altboot.func not found. Check your installation!"
+ test -e /etc/altboot.func && . /etc/altboot.func || die "ERROR: /etc/altboot.func not found. Check your installation!"
echo -n "Mounting rootfs rw..." >/dev/tty0
mount -o remount,rw / >/dev/tty0 2>&1 && echo ok >/dev/tty0|| die "mount -o remount,rw / failed"
+ mount proc -t proc /proc >/dev/tty0 2>&1
+
echo -n "Generating device files..." >/dev/tty0
/etc/init.d/devices start && echo ok >/dev/tty0|| die "FAILED"
/etc/init.d/devices start && echo ok >/dev/tty0|| die "FAILED"
echo -n "Mounting /proc..." >/dev/tty0
- mount /proc >/dev/tty0 2>&1 && echo ok >/dev/tty0 || echo failed
+ mount /proc >/dev/tty0 >/dev/null 2>&1 && echo ok >/dev/tty0 || echo failed
# Needed for NFS
/etc/init.d/portmap start >/dev/tty1 2>&1 || die "/etc/init.d/portmap start failed!"
test "$ASK_PW_ON_BOOT" != "yes" && verify_master_pw >/dev/tty0
+ # Make the system a little bit more usable than a standard init=/bin/sh boot
+ mount -t proc proc /proc >/dev/null 2>&1
+ uname -r | grep -q "2.6." && mount sys -t sysfs /sys
+ mount -o remount,rw /
+
echo -e "\nBoot system with 'exec /sbin/init 5'\n"
while true
do
-#!/bin/bash
+#!/bin/sh
+
+mount proc -t proc /proc >/dev/null 2>&1
echo 0 > /proc/sys/kernel/printk
ALTBOOT_CFG_FILE="/etc/altboot-2.6.cfg";;
esac
-echo "Using [${ALTBOOT_CFG_FILE}]"
test -e "$ALTBOOT_CFG_FILE" && . "$ALTBOOT_CFG_FILE" || echo "WARNING: No $ALTBOOT_CFG_FILE found! Check your installation of Altboot!" > /dev/tty1
C_RED="\033[31m"