From 408879acf7c44dd1501a799116b24fe3266e3650 Mon Sep 17 00:00:00 2001 From: Matthias Hentges Date: Wed, 14 Mar 2007 01:40:35 +0000 Subject: altboot: Add support for fic-gta01 aka Neo1973. Booting off SD works, NFS / usbnet is untested --- .../altboot/files/fic-gta01/altboot-menu/15-bootSD | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 packages/altboot/files/fic-gta01/altboot-menu/15-bootSD (limited to 'packages/altboot/files/fic-gta01/altboot-menu/15-bootSD') diff --git a/packages/altboot/files/fic-gta01/altboot-menu/15-bootSD b/packages/altboot/files/fic-gta01/altboot-menu/15-bootSD new file mode 100644 index 0000000000..3cf49deea5 --- /dev/null +++ b/packages/altboot/files/fic-gta01/altboot-menu/15-bootSD @@ -0,0 +1,32 @@ +# !/bin/sh +# +# Copyright Matthias Hentges (c) 2005 +# +# License: GPL (see http://www.gnu.org/licenses/gpl.txt for a copy of the GPL) + + +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() { + + test -e /etc/altboot.func && . /etc/altboot.func || die "ERROR: /etc/altboot.func not found. Check your installation!" + + # Mount /proc, etc + init_rootfs + + mount_sd + + # Check for a real fs and loop-images. + check_target "$SD_MOUNTPOINT" >/dev/tty0 + +} + + +case "$1" in +title) echo "$M_TITLE";; +run) run_module "$2";; +esac + -- cgit v1.2.3