| 1 | beyerle@PS | 1 | #!/bin/ash
 | 
        
           |  |  | 2 | #
 | 
        
           |  |  | 3 | # Original version from http://www.linux-live.org/
 | 
        
           |  |  | 4 | #
 | 
        
           |  |  | 5 | # modified by Urs Beyerle, PSI
 | 
        
           |  |  | 6 | # - to allow LiveCD mounted over NFS
 | 
        
           |  |  | 7 | # - add support for LiveCD on SATA devices
 | 
        
           |  |  | 8 |   | 
        
           |  |  | 9 | export PATH=.:/:/usr/sbin:/usr/bin:/sbin:/bin
 | 
        
           |  |  | 10 | . liblinuxlive
 | 
        
           |  |  | 11 |   | 
        
           |  |  | 12 |   | 
        
           |  |  | 13 | echolog "mounting /proc and /sys filesystems"
 | 
        
           |  |  | 14 | mount -t proc proc /proc
 | 
        
           |  |  | 15 | mount -t sysfs sysfs /sys
 | 
        
           | 36 | beyerle@PS | 16 | ln -sf /proc/mounts /etc/mtab # this allows us to use umount -a
 | 
        
           | 1 | beyerle@PS | 17 |   | 
        
           |  |  | 18 | # setup DEBUGCMD variable. If debug boot option is present, call debug()
 | 
        
           |  |  | 19 | # function several times during script's execution
 | 
        
           |  |  | 20 | if [ "`cmdline_parameter debug`" ]; then DEBUGCMD="debug"; else DEBUGCMD=""; fi
 | 
        
           |  |  | 21 |   | 
        
           |  |  | 22 | $DEBUGCMD
 | 
        
           |  |  | 23 |   | 
        
           | 36 | beyerle@PS | 24 | # amount of RAM to store changes
 | 
        
           |  |  | 25 | RAMSIZE="`cmdline_value ramsize`"
 | 
        
           |  |  | 26 | if [ "$RAMSIZE" = "" ]; then RAMSIZE="70%"; fi
 | 
        
           |  |  | 27 |   | 
        
           | 1 | beyerle@PS | 28 | # I have to set these variables very carefully
 | 
        
           |  |  | 29 | UNION=/union
 | 
        
           |  |  | 30 | MEMORY=/memory
 | 
        
           |  |  | 31 | MOUNTDIR=livecd
 | 
        
           |  |  | 32 | CHANGES=$MEMORY/changes
 | 
        
           |  |  | 33 | COPY2RAM=$MEMORY/copy2ram
 | 
        
           |  |  | 34 | IMAGES=$MEMORY/images
 | 
        
           |  |  | 35 | INITRAMDISK=$MOUNTDIR/live
 | 
        
           |  |  | 36 |   | 
        
           |  |  | 37 | # set NFSROOT if nfsroot= in boot parameter 
 | 
        
           |  |  | 38 | NFSROOT="`cmdline_value nfsroot`"
 | 
        
           |  |  | 39 |   | 
        
           | 37 | beyerle@PS | 40 | # we need cdrom support, isofs support, unionfs/aufs support, etc
 | 
        
           | 1 | beyerle@PS | 41 | modprobe_essential_modules
 | 
        
           |  |  | 42 | setup_dma
 | 
        
           |  |  | 43 |   | 
        
           |  |  | 44 | $DEBUGCMD
 | 
        
           |  |  | 45 |   | 
        
           | 36 | beyerle@PS | 46 | # if NFSROOT is set:
 | 
        
           | 1 | beyerle@PS | 47 | echolog "check for nfsroot"
 | 
        
           |  |  | 48 | if [ "$NFSROOT" != "" ]; then
 | 
        
           | 36 | beyerle@PS | 49 |   | 
        
           |  |  | 50 |    # load network modules, if NFSROOT is set
 | 
        
           | 1 | beyerle@PS | 51 |    echolog "nfsroot: $NFSROOT"
 | 
        
           | 36 | beyerle@PS | 52 |    load_network_modules
 | 
        
           | 1 | beyerle@PS | 53 |   | 
        
           | 36 | beyerle@PS | 54 |    $DEBUGCMD
 | 
        
           | 1 | beyerle@PS | 55 |   | 
        
           | 36 | beyerle@PS | 56 |    # get DHCP lease
 | 
        
           |  |  | 57 |    echolog "get DHCP lease"
 | 
        
           |  |  | 58 |    get_dhcp_lease
 | 
        
           |  |  | 59 |   | 
        
           |  |  | 60 |    $DEBUGCMD
 | 
        
           | 1 | beyerle@PS | 61 |   | 
        
           | 36 | beyerle@PS | 62 |     # we need nfs modules loaded, if NFSROOT is set
 | 
        
           |  |  | 63 |     modprobe_nfs_modules
 | 
        
           | 1 | beyerle@PS | 64 |   | 
        
           |  |  | 65 | fi
 | 
        
           |  |  | 66 |   | 
        
           |  |  | 67 | $DEBUGCMD
 | 
        
           |  |  | 68 |   | 
        
           |  |  | 69 | # $UNION will be used as a root directory, livecd modules will be added soon.
 | 
        
           |  |  | 70 | echolog "setup union on $UNION"
 | 
        
           |  |  | 71 | mkdir -p $UNION
 | 
        
           |  |  | 72 | mkdir -p $MEMORY
 | 
        
           |  |  | 73 |   | 
        
           |  |  | 74 | CHANGESDEV="`cmdline_value changes`"
 | 
        
           |  |  | 75 | if [ "$CHANGESDEV" != "" ]; then
 | 
        
           |  |  | 76 |    echo "mounting $CHANGESDEV to $MEMORY"
 | 
        
           |  |  | 77 |    mount_device $CHANGESDEV $MEMORY
 | 
        
           |  |  | 78 | else false; fi
 | 
        
           |  |  | 79 |   | 
        
           |  |  | 80 | # mount tmpfs only in the case when changes= boot parameter was empty
 | 
        
           |  |  | 81 | # or we were not able to mount the storage device
 | 
        
           | 36 | beyerle@PS | 82 | if [ $? -ne 0 ]; then mount -t tmpfs -o "size=$RAMSIZE" tmpfs $MEMORY; fi
 | 
        
           | 1 | beyerle@PS | 83 |   | 
        
           |  |  | 84 | mkdir -p $CHANGES
 | 
        
           |  |  | 85 | mkdir -p $COPY2RAM
 | 
        
           |  |  | 86 | mkdir -p $IMAGES
 | 
        
           |  |  | 87 |   | 
        
           | 37 | beyerle@PS | 88 | # mount unionfs or aufs
 | 
        
           |  |  | 89 | lsmod | grep -q ^unionfs
 | 
        
           |  |  | 90 | if [ $? -eq 0 ]; then  
 | 
        
           |  |  | 91 |     mount -t unionfs -o dirs=$CHANGES=rw unionfs $UNION
 | 
        
           | 48 | beyerle@PS | 92 |     if [ $? -ne 0 ]; then fatal "can't setup union in $UNION directory"; fi
 | 
        
           | 37 | beyerle@PS | 93 | else
 | 
        
           |  |  | 94 |     mount -t aufs -o br:$CHANGES=rw aufs $UNION
 | 
        
           | 48 | beyerle@PS | 95 |     if [ $? -ne 0 ]; then fatal "can't setup union (aufs) in $UNION directory"; fi
 | 
        
           | 37 | beyerle@PS | 96 | fi
 | 
        
           |  |  | 97 |   | 
        
           | 1 | beyerle@PS | 98 | $DEBUGCMD
 | 
        
           |  |  | 99 |   | 
        
           |  |  | 100 | # try to find livecd data directory. If not found, try modprobing
 | 
        
           |  |  | 101 | # USB and SATA kernel modules and repeat the find procedure again
 | 
        
           |  |  | 102 | echolog "looking for data modules"
 | 
        
           |  |  | 103 | DATA="`find_live_data_dir $MOUNTDIR`";
 | 
        
           |  |  | 104 | # if [ "$DATA" = "" ]; then modprobe_usb_modules; DATA="`find_live_data_dir $MOUNTDIR`"; fi
 | 
        
           |  |  | 105 | if [ "$DATA" = "" ]; then modprobe_usb_sata_modules; DATA="`find_live_data_dir $MOUNTDIR`"; fi
 | 
        
           |  |  | 106 | if [ "$DATA" = "" ]; then fatal "Data for LiveCD not found. Are you using SCSI?"; fi
 | 
        
           |  |  | 107 | echolog "LiveCD found in: $DATA"
 | 
        
           |  |  | 108 |   | 
        
           |  |  | 109 | $DEBUGCMD
 | 
        
           |  |  | 110 |   | 
        
           |  |  | 111 | # If toram or copy2ram boot parameter is present, copy all .mo modules to RAM.
 | 
        
           |  |  | 112 | # (skip modules from /optional/ which are not listed in load= boot option)
 | 
        
           |  |  | 113 | # Finaly modify DATA variable so it will point to correct directory
 | 
        
           |  |  | 114 | if [ "`cmdline_parameter toram`" != "" -o "`cmdline_parameter copy2ram`" != "" ]; then
 | 
        
           |  |  | 115 |    echolog "copying modules to RAM, this may take some time"
 | 
        
           |  |  | 116 |    copy_to_ram $DATA $COPY2RAM
 | 
        
           |  |  | 117 |    cd_autoeject 1
 | 
        
           |  |  | 118 |    umount $DATA 2>/dev/null
 | 
        
           |  |  | 119 |    if [ $? -ne 0 ]; then umount `dirname $DATA` 2>/dev/null; fi
 | 
        
           |  |  | 120 |    DATA=$COPY2RAM
 | 
        
           |  |  | 121 |    cd_autoeject 0
 | 
        
           |  |  | 122 | fi
 | 
        
           |  |  | 123 |   | 
        
           |  |  | 124 | mkdir -p $UNION/boot
 | 
        
           |  |  | 125 | mount -o bind $DATA $UNION/boot
 | 
        
           |  |  | 126 |   | 
        
           |  |  | 127 | $DEBUGCMD
 | 
        
           |  |  | 128 |   | 
        
           |  |  | 129 | # DATA contains path to the base directory of all .mo images which need
 | 
        
           |  |  | 130 | # to be mounted and inserted into live filesystem. Do it now.
 | 
        
           |  |  | 131 | echolog "inserting all modules and creating live filesystem"
 | 
        
           |  |  | 132 | union_insert_modules $UNION $DATA $IMAGES
 | 
        
           |  |  | 133 |   | 
        
           |  |  | 134 | $DEBUGCMD
 | 
        
           |  |  | 135 |   | 
        
           |  |  | 136 | echo "copying rootchanges"
 | 
        
           |  |  | 137 | copy_rootchanges $DATA $UNION
 | 
        
           |  |  | 138 |   | 
        
           |  |  | 139 | $DEBUGCMD
 | 
        
           |  |  | 140 |   | 
        
           |  |  | 141 | echo "creating /etc/fstab"
 | 
        
           |  |  | 142 | activate_fstab $UNION
 | 
        
           |  |  | 143 |   | 
        
           |  |  | 144 | # More likely these directories aren't there.
 | 
        
           |  |  | 145 | # Even if they are, this won't hurt.
 | 
        
           |  |  | 146 | mkdir -p $UNION/proc
 | 
        
           |  |  | 147 | mkdir -p $UNION/sys
 | 
        
           |  |  | 148 | mkdir -p $UNION/tmp
 | 
        
           | 36 | beyerle@PS | 149 | chmod 1777 $UNION/tmp
 | 
        
           | 1 | beyerle@PS | 150 | mkdir -p $UNION/dev
 | 
        
           | 36 | beyerle@PS | 151 | mkdir -p $UNION/initrd
 | 
        
           | 1 | beyerle@PS | 152 |   | 
        
           |  |  | 153 | $DEBUGCMD
 | 
        
           |  |  | 154 |   | 
        
           | 48 | beyerle@PS | 155 | # no X? (set runlevel to 3)
 | 
        
           |  |  | 156 | if [ "`cmdline_parameter nox`" ]; then
 | 
        
           |  |  | 157 |   echo "set runlevel to 3"
 | 
        
           |  |  | 158 |   sed sed -i "s/id:.:initdefault:/id:3:initdefault:/" $UNION/etc/inittab
 | 
        
           |  |  | 159 | fi
 | 
        
           |  |  | 160 |   | 
        
           |  |  | 161 | $DEBUGCMD
 | 
        
           |  |  | 162 |   | 
        
           | 1 | beyerle@PS | 163 | # Union contains all the files and directories unioned from all modules.
 | 
        
           |  |  | 164 | # Change root directory to it, and move initrd's root to /livecd/live/initramdisk
 | 
        
           |  |  | 165 | # Finaly execute /sbin/init to start the distribution.
 | 
        
           |  |  | 166 | echolog "changing root directory..."
 | 
        
           |  |  | 167 | cd $UNION
 | 
        
           |  |  | 168 | mkdir -p $INITRAMDISK
 | 
        
           |  |  | 169 |   | 
        
           |  |  | 170 | umount /sys # we won't need it anymore
 | 
        
           |  |  | 171 | if [ ! -e $UNION/dev/console ]; then mknod $UNION/dev/console c 5 1; fi
 | 
        
           |  |  | 172 |   | 
        
           |  |  | 173 | if [ -x $UNION/usr/sbin/chroot ];
 | 
        
           |  |  | 174 |   then CHROOT=/usr/sbin/chroot
 | 
        
           |  |  | 175 |   else CHROOT=/usr/bin/chroot
 | 
        
           |  |  | 176 | fi
 | 
        
           |  |  | 177 |   | 
        
           |  |  | 178 | echolog "End of linux live scripts"
 | 
        
           |  |  | 179 |   | 
        
           |  |  | 180 | # pure magic ;-)
 | 
        
           |  |  | 181 | cat $UNION/bin/true >/dev/null
 | 
        
           |  |  | 182 |   | 
        
           |  |  | 183 | $DEBUGCMD
 | 
        
           |  |  | 184 |   | 
        
           |  |  | 185 | pivot_root . $INITRAMDISK
 | 
        
           | 36 | beyerle@PS | 186 | exec $CHROOT . sbin/init <dev/console >dev/console 2>&1
 | 
        
           | 1 | beyerle@PS | 187 |   | 
        
           |  |  | 188 | header "ERROR!"
 | 
        
           |  |  | 189 | echolog "You are not supposed to be here, something went wrong!"
 | 
        
           |  |  | 190 | echolog "Even Ctrl+Alt+Del won't help you in kernel panic."
 | 
        
           |  |  | 191 |   |