diff options
| author | Daniel Baumann <daniel@debian.org> | 2007-09-23 14:46:40 +0200 |
|---|---|---|
| committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 17:31:05 +0100 |
| commit | 833abaa35c3a77075dd57f3f1a3633d79109a5b4 (patch) | |
| tree | 7ff85c4f46c17b2045a8b042d341220e9574ecac /scripts/live | |
| parent | f92e88f44e35a6e103b607a06d9fe69b9c20a53d (diff) | |
| download | live-boot-833abaa35c3a77075dd57f3f1a3633d79109a5b4.tar.gz live-boot-833abaa35c3a77075dd57f3f1a3633d79109a5b4.zip | |
Adding live-initramfs 1.91.6-1.
Diffstat (limited to 'scripts/live')
| -rwxr-xr-x | scripts/live | 31 |
1 files changed, 21 insertions, 10 deletions
diff --git a/scripts/live b/scripts/live index 5b70b6a..d52ae7c 100755 --- a/scripts/live +++ b/scripts/live @@ -8,6 +8,7 @@ echo "/root/lib" >> /etc/ld.so.conf echo "/root/usr/lib" >> /etc/ld.so.conf mountpoint=/live/image +LIVE_MEDIA_PATH="/live" root_persistence="live-rw" home_persistence="home-rw" @@ -74,7 +75,7 @@ parse_cmdline () export USERFULLNAME LIVECONF ;; - ip*) + ip=*) STATICIP=${x#ip=} if [ -z "${STATICIP}" ] @@ -130,6 +131,11 @@ parse_cmdline () export LIVE_MEDIA_OFFSET ;; + live-media-path=*) + LIVE_MEDIA_PATH="${x#live-media-path=}" + export LIVE_MEDIA_PATH + ;; + live-media-timeout=*) LIVE_MEDIA_TIMEOUT=${x#live-media-timeout=} export LIVE_MEDIA_TIMEOUT @@ -145,7 +151,7 @@ parse_cmdline () export MODULE ;; - netboot*) + netboot=*) NETBOOT=${x#netboot=} export NETBOOT ;; @@ -228,6 +234,11 @@ parse_cmdline () export UNIONTYPE ;; + utc=*) + UTC="${x#utc=}" + export UTC + ;; + xdebconf) XDEBCONF="Yes" export XDEBCONF @@ -271,11 +282,11 @@ is_live_path() { DIRECTORY="${1}" - if [ -d "${DIRECTORY}"/live ] + if [ -d "${DIRECTORY}"/"${LIVE_MEDIA_PATH}" ] then for FILESYSTEM in squashfs ext2 ext3 xfs dir do - if [ "`echo ${DIRECTORY}/live/*.${FILESYSTEM}`" != "${DIRECTORY}/live/*.${FILESYSTEM}" ] + if [ "`echo ${DIRECTORY}/${LIVE_MEDIA_PATH}/*.${FILESYSTEM}`" != "${DIRECTORY}/${LIVE_MEDIA_PATH}/*.${FILESYSTEM}" ] then return 0 fi @@ -312,11 +323,11 @@ match_files_in_dir() { mount_images_in_directory() { directory="$1" rootmnt="$2" - if match_files_in_dir "$directory/live/*.squashfs" || - match_files_in_dir "$directory/live/*.ext2" || - match_files_in_dir "$directory/live/*.ext3" || - match_files_in_dir "$directory/live/*.dir"; then - setup_unionfs "$directory/live" "$rootmnt" + if match_files_in_dir "$directory/${LIVE_MEDIA_PATH}/*.squashfs" || + match_files_in_dir "$directory/${LIVE_MEDIA_PATH}/*.ext2" || + match_files_in_dir "$directory/${LIVE_MEDIA_PATH}/*.ext3" || + match_files_in_dir "$directory/${LIVE_MEDIA_PATH}/*.dir"; then + setup_unionfs "$directory/${LIVE_MEDIA_PATH}" "$rootmnt" else : fi @@ -401,7 +412,7 @@ do_netmount() { . /tmp/net-${DEVICE}.conf export HOSTNAME - if [ "${NFSROOT#*:}" = "$NFSROOT" ]; then + if [ "${NFSROOT#*:}" = "$NFSROOT" ] && [ "$NETBOOT" != "cifs" ]; then NFSROOT=${ROOTSERVER}:${NFSROOT} fi |
