######################################################################################
-PR = "r49"
+PR = "r50"
######################################################################################
######################################################################################
-WIP_DATE = "20061108"
+WIP_DATE = "20061120"
PR = "${WIP_DATE}-r1"
######################################################################################
M_TITLE="Boot SD card"
+test "$DISABLE_SD_BOOT" = yes && exit 0
+
# This function is activated by init.altboot by calling this script with the "run" option
run_module() {
M_TITLE="Boot CF card"
+test "$DISABLE_CF_BOOT" = yes && exit 0
+
# This function is activated by init.altboot by calling this script with the "run" option
run_module() {
M_TITLE="Boot from NFS"
+test "$DISABLE_NFS_BOOT" = yes && exit 0
+
# This function is activated by init.altboot by calling this script with the "run" option
run_module() {
# !/bin/sh
M_TITLE="init=/bin/sh"
+test "$DISABLE_BINSH_BOOT" = yes && exit 0
run_module() {
do
if ! test -d "$1/$file"
then
- M_TITLE="`$1/$file title`"
+ # NOTE: It is important to use "." here so that the script inherits
+ # the shell environment / all set variables!
+ M_TITLE="`. $1/$file title`"
FLAGS="`$1/$file flags`"
if ! test -z "$M_TITLE"
#
-# Altboot machine configuration for: Akita / Kernel 2.6
+# Altboot machine configuration for: Poodle / Kernel 2.6
#
# Handled by /sbin/init.altboot
REAL_INIT="/sbin/init.sysvinit"
SH_SHELL="/bin/sh"
-ENABLE_SOUND="yes"
+ENABLE_SOUND="no"
IMAGE_PATH="boot-images"
IMAGE_TYPE="ext2"
SD_DEVICE="/dev/mmcblk0p1"
SD_KERNEL_MODULE=""
-USB_HOST_AVAILABLE="no"
+USB_HOST_AVAILABLE="yes"
USB_STORAGE_MODULES="ohci_hcd usb_storage sd_mod"
USB_STORAGE_PARTITION="/dev/sda1"
USB_STORAGE_WAIT="4"
SD_MOUNTPOINT="/media/card"
CF_MOUNTPOINT="/media/cf"
+
+# Poodle already boots off SD natively!
+DISABLE_SD_BOOT="yes"
+