Do not wait for iscsi if we have not started it
[genkernel.git] / defaults / linuxrc
1 #!/bin/sh
2
3 . /etc/initrd.defaults
4 . /etc/initrd.scripts
5
6 splash() {
7         return 0
8 }
9
10 [ -e /etc/initrd.splash ] && . /etc/initrd.splash
11
12 # Clean input/output
13 exec >${CONSOLE} <${CONSOLE} 2>&1
14
15 if [ "$$" != '1' ]
16 then
17         echo '/linuxrc has to be run as the init process as the one'
18         echo 'with a PID of 1. Try adding init="/linuxrc" to the'
19         echo 'kernel command line or running "exec /linuxrc".'
20         exit 1
21 fi
22
23 mount -t proc proc /proc >/dev/null 2>&1
24 mount -o remount,rw / >/dev/null 2>&1
25
26 # Set up symlinks
27 /bin/busybox --install -s
28
29 if [ "$0" = '/init' ]
30 then
31         [ -e /linuxrc ] && rm /linuxrc
32 fi
33
34 if [ -e /bin/lvm ]
35 then
36         [ -e /bin/vgscan   ] || ln -s /bin/lvm /bin/vgscan
37         [ -e /bin/vgchange ] || ln -s /bin/lvm /bin/vgchange
38 fi
39
40 quiet_kmsg
41
42 CMDLINE=`cat /proc/cmdline`
43 # Scan CMDLINE for any specified real_root= or cdroot arguments
44 FAKE_ROOT=''
45 REAL_ROOTFLAGS=''
46 CRYPT_SILENT=0
47 for x in ${CMDLINE}
48 do
49         case "${x}" in
50                 real_root\=*)
51                         REAL_ROOT=`parse_opt "${x}"`
52                 ;;
53                 root\=*)
54                         FAKE_ROOT=`parse_opt "${x}"`
55                 ;;
56                 subdir\=*)
57                         SUBDIR=`parse_opt "${x}"`
58                 ;;
59                 real_init\=*)
60                         REAL_INIT=`parse_opt "${x}"`
61                 ;;
62                 init_opts\=*)
63                         INIT_OPTS=`parse_opt "${x}"`
64                 ;;
65                 # Livecd options
66                 cdroot)
67                         CDROOT=1
68                 ;;
69                 cdroot\=*)
70                         CDROOT=1
71                         CDROOT_DEV=`parse_opt "${x}"`
72                 ;;
73                 cdroot_type\=*)
74                         CDROOT_TYPE=`parse_opt "${x}"`
75                 ;;
76                 # Start livecd loop, looptype options
77                 loop\=*)
78                         LOOP=`parse_opt "${x}"`
79                 ;;
80                 looptype\=*)
81                         LOOPTYPE=`parse_opt "${x}"`
82                 ;;
83                 isoboot\=*)
84                         ISOBOOT=`parse_opt "${x}"`
85                 ;;
86                 # Start Volume manager options 
87                 dolvm)
88                         USE_LVM_NORMAL=1
89                 ;;
90                 dolvm2)
91                         bad_msg 'Using dolvm2 is deprecated, use dolvm, instead.'
92                         USE_LVM_NORMAL=1
93                 ;;
94                 domdadm)
95                         USE_MDADM=1
96                 ;;
97                 dodmraid)
98                         USE_DMRAID_NORMAL=1
99                 ;;
100                 dodmraid\=*)
101                         DMRAID_OPTS=`parse_opt "${x}"`
102                         USE_DMRAID_NORMAL=1
103                 ;;
104                 doevms)
105                         USE_EVMS_NORMAL=1
106                 ;;
107                 doevms2)
108                         bad_msg 'Using doevms2 is deprecated, use doevms, instead.'
109                         USE_EVMS_NORMAL=1
110                 ;;
111                 # Debug Options
112                 debug)
113                         DEBUG='yes'
114                 ;;
115                 # Scan delay options 
116                 scandelay\=*)
117                         SDELAY=`parse_opt "${x}"`
118                 ;;
119                 scandelay)
120                         SDELAY=3
121                 ;;
122                 # Module no-loads
123                 doload\=*)
124                         MDOLIST=`parse_opt "${x}"`
125                         MDOLIST="`echo ${MDOLIST} | sed -e 's/,/ /g'`"
126                 ;;
127                 nodetect)
128                         NODETECT=1
129                 ;;
130                 noload\=*)
131                         MLIST=`parse_opt "${x}"`
132                         MLIST="`echo ${MLIST} | sed -e 's/,/ /g'`"
133                         export MLIST
134                 ;;
135                 # Redirect output to a specific tty
136                 CONSOLE\=*|console\=*)
137                         CONSOLE=`parse_opt "${x}"`
138 #                       exec >${CONSOLE} <${CONSOLE} 2>&1
139                 ;;
140                 # /dev/md
141                 lvmraid\=*)
142                         RAID_DEVICES="`parse_opt ${x}`"
143                         RAID_DEVICES="`echo ${RAID_DEVICES} | sed -e 's/,/ /g'`"
144                 ;;
145                 part\=*)
146                         MDPART=`parse_opt "${x}"`
147                 ;;
148                 # NFS
149                 ip\=*)
150                         IP=`parse_opt "${x}"`
151                 ;;
152                 nfsroot\=*)
153                         NFSROOT=`parse_opt "${x}"`
154                 ;;
155                 # iSCSI
156                 iscsi_initiatorname\=*)
157                         ISCSI_INITIATORNAME=`parse_opt "${x}"`
158                 ;;
159                 iscsi_target\=*)
160                         ISCSI_TARGET=`parse_opt "${x}"`
161                 ;;
162                 iscsi_tgpt\=*)
163                         ISCSI_TGPT=`parse_opt "${x}"`
164                 ;;
165                 iscsi_address\=*)
166                         ISCSI_ADDRESS=`parse_opt "${x}"`
167                 ;;
168                 iscsi_port\=*)
169                         ISCSI_PORT=`parse_opt "${x}"`
170                 ;;
171                 iscsi_username\=*)
172                         ISCSI_USERNAME=`parse_opt "${x}"`
173                 ;;
174                 iscsi_password\=*)
175                         ISCSI_PASSWORD=`parse_opt "${x}"`
176                 ;;
177                 iscsi_username_in\=*)
178                         ISCSI_USERNAME_IN=`parse_opt "${x}"`
179                 ;;
180                 iscsi_password_in\=*)
181                         ISCSI_PASSWORD_IN=`parse_opt "${x}"`
182                 ;;
183                 iscsi_debug\=*)
184                         ISCSI_DEBUG=`parse_opt "${x}"`
185                 ;;
186                 # Crypto
187                 crypt_root\=*)
188                         CRYPT_ROOT=`parse_opt "${x}"`
189                 ;;
190                 crypt_swap\=*)
191                         CRYPT_SWAP=`parse_opt "${x}"`
192                 ;;
193                 root_key\=*)
194                         CRYPT_ROOT_KEY=`parse_opt "${x}"`
195                 ;;
196                 root_keydev\=*)
197                         CRYPT_ROOT_KEYDEV=`parse_opt "${x}"`
198                 ;;
199                 swap_key\=*)
200                         CRYPT_SWAP_KEY=`parse_opt "${x}"`
201                 ;;
202                 swap_keydev\=*)
203                         CRYPT_SWAP_KEYDEV=`parse_opt "${x}"`
204                 ;;
205                 real_resume\=*|resume\=*)
206                         REAL_RESUME=`parse_opt "${x}"`
207                 ;;
208                 noresume)
209                         NORESUME=1
210                 ;;
211                 crypt_silent)
212                         CRYPT_SILENT=1
213                 ;;
214                 real_rootflags\=*)
215                         REAL_ROOTFLAGS=`parse_opt "${x}"`
216                 ;;
217                 keymap\=*)
218                         keymap=`parse_opt "${x}"`
219                 ;;
220                 unionfs)
221                         if [ ! -x /sbin/unionfs ]
222                         then
223                                 USE_UNIONFS_NORMAL=0
224                                 bad_msg 'unionfs binary not found: aborting use of unionfs!'
225                         else
226                                 USE_UNIONFS_NORMAL=1
227                         fi
228                         ;;
229                 nounionfs)
230                         USE_UNIONFS_NORMAL=0
231                         ;;
232 #                 unionfs\=*)    
233 #                         if [ ! -x /sbin/unionfs ]      
234 #                         then   
235 #                                 USE_UNIONFS_NORMAL=0   
236 #                                 bad_msg 'unionfs binary not found: aborting use of unionfs!'
237 #                         else   
238 #                                 USE_UNIONFS_NORMAL=1   
239 #                                 CMD_UNIONFS=`parse_opt "${x}"`         
240 #                                 echo ${CMD_UNIONFS}|grep , >/dev/null 2>&1     
241 #                                 if [ $? -eq 0 ]
242 #                                 then   
243 #                                         UID=`echo ${CMD_UNIONFS#*,}`   
244 #                                         UNIONFS=`echo ${CMD_UNIONFS%,*}`       
245 #                                 else   
246 #                                         UNIONFS=${CMD_UNIONFS}         
247 #                                 fi     
248 #                         fi     
249 #                 ;;
250         esac
251 done
252
253 if [ -z "${REAL_ROOT}" -a \( "${CDROOT}" = '0' \)  -a \( "${FAKE_ROOT}" != "/dev/ram0" \) ]
254 then
255         REAL_ROOT="${FAKE_ROOT}"        
256 fi
257
258 splash 'init'
259
260 cmdline_hwopts
261
262 # Mount sysfs
263 mount_sysfs
264
265 # Setup hotplugging for firmware loading
266 setup_hotplug
267
268 # Load modules listed in MY_HWOPTS if /lib/modules exists for the running kernel
269 if [ -z "${DO_modules}" ]
270 then
271         good_msg 'Skipping module load; disabled via commandline'
272 elif [ -d "/lib/modules/${KV}" ]
273 then
274         good_msg 'Loading modules'
275         # Load appropriate kernel modules
276         if [ "${NODETECT}" != '1' ]
277         then
278                 for modules in ${MY_HWOPTS}
279                 do
280                         modules_scan ${modules}
281                 done
282         fi
283         # Always eval doload=...
284         modules_load ${MDOLIST}
285 else
286         good_msg 'Skipping module load; no modules in the ramdisk!'
287 fi
288
289 # Apply scan delay if specified
290 sdelay
291
292 # Setup slow USB bits
293 setup_slowusb
294
295 # Start device manager
296 start_dev_mgr
297
298 # if doslowusb is passed, pause other 10 seconds here, after mdev load
299 [ "${DO_slowusb}" ] && sleep 10
300
301 # Start iSCSI
302 startiscsi
303
304 # Setup btrfs, see bug 303529
305 setup_btrfsctl
306
307 # Setup md device nodes if they dont exist
308 setup_md_device
309
310 # Scan volumes
311 startVolumes
312
313 setup_keymap
314
315 # Initialize LUKS root device except for livecd's
316 if [ "${CDROOT}" != 1 ]
317 then
318         startLUKS
319         if [ "${NORESUME}" != '1' ] && [ -n "${REAL_RESUME}" ]
320         then
321                 case "${REAL_RESUME}" in
322                         LABEL\=*|UUID\=*)
323
324                                 RESUME_DEV=""
325                                 retval=1
326                                 
327                                 if [ ${retval} -ne 0 ]; then
328                                         RESUME_DEV=`findfs "${REAL_RESUME}" 2>/dev/null`
329                                         retval=$?
330                                 fi
331                                 
332                                 if [ ${retval} -ne 0 ]; then
333                                         RESUME_DEV=`busybox findfs "${REAL_RESUME}" 2>/dev/null`
334                                         retval=$?
335                                 fi
336                                 
337                                 if [ ${retval} -ne 0 ]; then
338                                         RESUME_DEV=`blkid -l -t "${REAL_RESUME}" | cut -d ":" -f 1 2>/dev/null`
339                                         retval=$?
340                                 fi
341                                 
342                                 if [ ${retval} -eq 0 ] && [ -n "${RESUME_DEV}" ]; then
343                                         good_msg "Detected real_resume=${RESUME_DEV}"
344                                         REAL_RESUME="${RESUME_DEV}"
345                                 fi
346                                 ;;
347                 esac
348
349                 do_resume
350         fi
351 fi
352
353 mkdir -p "${NEW_ROOT}"
354 CHROOT="${NEW_ROOT}"
355
356 # Run debug shell if requested
357 rundebugshell
358
359 if [ "${CDROOT}" = '1' ]
360 then
361         good_msg "Making tmpfs for ${NEW_ROOT}"
362         mount -n -t tmpfs tmpfs "${NEW_ROOT}"
363         
364         for i in dev mnt mnt/cdrom mnt/livecd mnt/key tmp tmp/.initrd mnt/gentoo sys
365         do
366                 mkdir -p "${NEW_ROOT}/${i}"
367                 chmod 755 "${NEW_ROOT}/${i}"
368         done
369         [ ! -e "${NEW_ROOT}/dev/null" ] && mknod "${NEW_ROOT}"/dev/null c 1 3
370         [ ! -e "${NEW_ROOT}/dev/console" ] && mknod "${NEW_ROOT}"/dev/console c 5 1
371
372         # For SGI LiveCDs ...
373         if [ "${LOOPTYPE}" = "sgimips" ]
374         then
375                 [ ! -e "${NEW_ROOT}/dev/sr0" ] && mknod "${NEW_ROOT}/dev/sr0" b 11 0
376                 [ ! -e "${NEW_ROOT}/dev/loop0" ] && mknod "${NEW_ROOT}/dev/loop0" b 7 0
377         fi
378
379         # Required for splash to work.  Not an issue with the initrd as this
380         # device isn't created there and is not needed.
381         if [ -e /dev/tty1 ]
382         then
383                 [ ! -e "${NEW_ROOT}/dev/tty1" ] && mknod "${NEW_ROOT}/dev/tty1" c 4 1
384         fi
385
386         if [ "${REAL_ROOT}" != "/dev/nfs" ] && [ "${LOOPTYPE}" != "sgimips" ]
387         then
388                 bootstrapCD
389         fi
390
391         if [ "${REAL_ROOT}" = '' ]
392         then
393                 echo -n -e "${WARN}>>${NORMAL}${BOLD} No bootable medium found. Waiting for new devices"
394                 
395                 COUNTER=0
396                 while [ ${COUNTER} -lt 3 ]; do
397                         sleep 3
398                         echo -n '.'
399                         let COUNTER=${COUNTER}+1
400                 done
401
402                 sleep 1
403                 echo -e "${NORMAL}"
404                 bootstrapCD
405         fi
406
407         if [ "${REAL_ROOT}" = '' ]
408         then
409                 # Undo stuff
410                 umount  "${NEW_ROOT}/dev" 2>/dev/null
411                 umount  "${NEW_ROOT}/sys" 2>/dev/null
412                 umount /sys 2>/dev/null
413
414                 umount  "${NEW_ROOT}"
415                 rm -rf  "${NEW_ROOT}/*"
416
417                 bad_msg 'Could not find CD to boot, something else needed!'
418                 CDROOT=0
419         fi
420 fi
421
422 # Determine root device
423 good_msg 'Determining root device...'
424 while true
425 do
426         while [ "${got_good_root}" != '1' ]
427         do
428                 case "${REAL_ROOT}" in
429                         LABEL\=*|UUID\=*)
430                         
431                                 ROOT_DEV=""
432                                 retval=1
433                                 
434                                 if [ ${retval} -ne 0 ]; then
435                                         ROOT_DEV=`findfs "${REAL_ROOT}" 2>/dev/null`
436                                         retval=$?
437                                 fi
438                                 
439                                 if [ ${retval} -ne 0 ]; then
440                                         ROOT_DEV=`busybox findfs "${REAL_ROOT}" 2>/dev/null`
441                                         retval=$?
442                                 fi
443                                 
444                                 if [ ${retval} -ne 0 ]; then
445                                         ROOT_DEV=`blkid -l -t "${REAL_ROOT}" | cut -d ":" -f 1 2>/dev/null`
446                                         retval=$?
447                                 fi
448                                 
449                                 if [ ${retval} -eq 0 ] && [ -n "${ROOT_DEV}" ]; then
450                                         good_msg "Detected real_root=${ROOT_DEV}"
451                                         REAL_ROOT="${ROOT_DEV}"
452                                 else
453                                         whereis "REAL_ROOT" "root block device"
454                                         got_good_root=0
455                                         continue
456                                 fi
457                                 ;;
458                 esac
459                                 
460                 if [ "${REAL_ROOT}" = '' ]
461                 then
462                         # No REAL_ROOT determined/specified. Prompt user for root block device.
463                         whereis "REAL_ROOT" "root block device"
464                         got_good_root=0
465
466                 # Check for a block device or /dev/nfs
467                 elif [ -b "${REAL_ROOT}" ] || [ "${REAL_ROOT}" = "/dev/nfs" ]
468                 then
469                         got_good_root=1
470
471                 else
472                         bad_msg "Block device ${REAL_ROOT} is not a valid root device..."
473                         REAL_ROOT=""
474                         got_good_root=0
475                 fi
476         done
477
478
479         if [ "${CDROOT}" = 1 -a "${got_good_root}" = '1' -a "${REAL_ROOT}" != "/dev/nfs" ]
480         then
481                 # CD already mounted; no further checks necessary
482                 break
483         elif [ "${LOOPTYPE}" = "sgimips" ]
484         then
485                 # sgimips mounts the livecd root partition directly
486                 # there is no isofs filesystem to worry about
487                 break
488         else
489                 good_msg "Mounting root..."
490
491                 # Try to mount the device as ${NEW_ROOT}
492                 if [ "${REAL_ROOT}" = '/dev/nfs' ]; then
493                         findnfsmount
494                 else
495                         # mount ro so fsck doesn't barf later
496                         if [ "${REAL_ROOTFLAGS}" = '' ]; then
497                                 mount -o ro ${REAL_ROOT} ${NEW_ROOT}
498                         else
499                                 good_msg "Using mount -o ro,${REAL_ROOTFLAGS}"
500                                 mount -o ro,${REAL_ROOTFLAGS} ${REAL_ROOT} ${NEW_ROOT}
501                         fi
502                 fi
503                 
504                 # If mount is successful break out of the loop 
505                 # else not a good root and start over.
506                 if [ "$?" = '0' ]
507                 then
508                         if [ -d ${NEW_ROOT}/dev -a -x ${NEW_ROOT}/sbin/init ] || [ "${REAL_ROOT}" = "/dev/nfs" ]
509                         then
510                                 break
511                         else
512                                 bad_msg "The filesystem mounted at ${REAL_ROOT} does not appear to be a valid /, try again"
513                                 got_good_root=0
514                                 REAL_ROOT=''
515                         fi
516                 else
517                         bad_msg "Could not mount specified ROOT, try again"
518                         got_good_root=0
519                         REAL_ROOT=''
520                 fi
521         fi
522 done
523 # End determine root device
524
525 #verbose_kmsg
526
527 # If CD root is set determine the looptype to boot
528 if [ "${CDROOT}" = '1' ]
529 then
530         good_msg 'Determining looptype ...'
531         cd "${NEW_ROOT}"
532
533         # Find loop and looptype
534         [ -z "${LOOP}" ] && find_loop
535         [ -z "${LOOPTYPE}" ] && find_looptype
536
537         cache_cd_contents
538
539         # If encrypted, find key and mount, otherwise mount as usual
540         if [ -n "${CRYPT_ROOT}" ]
541         then
542                 CRYPT_ROOT_KEY="$(head -n 1 ${NEW_ROOT}/mnt/cdrom/livecd)"
543                 CRYPT_ROOT='/dev/loop0'
544                 good_msg 'You booted an encrypted livecd' "${CRYPT_SILENT}"
545
546                 losetup /dev/loop0 "${NEW_ROOT}/mnt/cdrom/${LOOPEXT}${LOOP}"
547                 test_success 'Preparing loop filesystem'
548
549                 startLUKS
550
551                 case ${LOOPTYPE} in
552                         normal)
553                                 MOUNTTYPE="ext2"
554                                 ;;
555                         *)
556                                 MOUNTTYPE="${LOOPTYPE}"
557                                 ;;
558                 esac
559                 mount -t "${MOUNTTYPE}" -o ro /dev/mapper/root "${NEW_ROOT}/mnt/livecd"
560                 test_success 'Mount filesystem'
561                 FS_LOCATION='mnt/livecd'
562         # Setup the loopback mounts, if unencrypted
563         else
564                 if [ "${LOOPTYPE}" = 'normal' ]
565                 then
566                         good_msg 'Mounting loop filesystem'
567                         mount -t ext2 -o loop,ro "${NEW_ROOT}/mnt/cdrom/${LOOPEXT}${LOOP}" "${NEW_ROOT}/mnt/livecd"
568                         test_success 'Mount filesystem'
569                         FS_LOCATION='mnt/livecd'
570                 elif [ "${LOOPTYPE}" = 'squashfs' ]
571                 then
572                         good_msg 'Mounting squashfs filesystem'
573                         mount -t squashfs -o loop,ro "${NEW_ROOT}/mnt/cdrom/${LOOPEXT}${LOOP}" "${NEW_ROOT}/mnt/livecd"
574                         test_success 'Mount filesystem'
575                         FS_LOCATION='mnt/livecd'
576                 elif [ "${LOOPTYPE}" = 'gcloop' ]
577                 then
578                         good_msg 'Mounting gcloop filesystem'
579                         echo ' ' | losetup -E 19 -e ucl-0 -p0 "${NEW_ROOT}/dev/loop0" "${NEW_ROOT}/mnt/cdrom/${LOOPEXT}${LOOP}"
580                         test_success 'losetup the loop device'
581
582                         mount -t ext2 -o ro "${NEW_ROOT}/dev/loop0" "${NEW_ROOT}/mnt/livecd"
583                         test_success 'Mount the losetup loop device'
584                         FS_LOCATION='mnt/livecd'
585                 elif [ "${LOOPTYPE}" = 'zisofs' ]
586                 then
587                         FS_LOCATION="mnt/cdrom/${LOOPEXT}${LOOP}"
588                 elif [ "${LOOPTYPE}" = 'noloop' ]
589                 then
590                         FS_LOCATION='mnt/cdrom'
591                 elif [ "${LOOPTYPE}" = 'sgimips' ]
592                 then
593                         # getdvhoff finds the starting offset (in bytes) of the squashfs
594                         # partition on the cdrom and returns this offset for losetup
595                         #
596                         # All currently supported SGI Systems use SCSI CD-ROMs, so
597                         # so we know that the CD-ROM is usually going to be /dev/sr0.
598                         #
599                         # We use the value given to losetup to set /dev/loop0 to point
600                         # to the liveCD root partition, and then mount /dev/loop0 as
601                         # the LiveCD rootfs
602                         good_msg 'Locating the SGI LiveCD Root Partition'
603                         echo ' ' | \
604                                 losetup -o $(getdvhoff "${NEW_ROOT}${REAL_ROOT}" 0) \
605                                         "${NEW_ROOT}${CDROOT_DEV}" \
606                                         "${NEW_ROOT}${REAL_ROOT}"
607                         test_success 'losetup /dev/sr0 /dev/loop0'
608         
609                         good_msg 'Mounting the Root Partition'
610                         mount -t squashfs -o ro "${NEW_ROOT}${CDROOT_DEV}" "${NEW_ROOT}/mnt/livecd"
611                         test_success 'mount /dev/loop0 /'
612                         FS_LOCATION='mnt/livecd'
613                 fi
614         fi
615
616
617
618         # Unpacking additional packages from NFS mount
619         # This is useful for adding kernel modules to /lib
620         # We do this now, so that additional packages can add whereever they want.
621         if [ "${REAL_ROOT}" = '/dev/nfs' ]
622         then
623                 if [ -e "${NEW_ROOT}/mnt/cdrom/add" ]
624                 then
625                                 for targz in `ls ${NEW_ROOT}/mnt/cdrom/add/*.tar.gz`
626                                 do      
627                                         tarname=`basename ${targz}`
628                                         good_msg "Adding additional package ${tarname}"
629                                         (cd ${NEW_ROOT} ; /bin/tar -xzf ${targz})
630                                 done
631                 fi
632         fi
633
634
635         if [ "${USE_UNIONFS_NORMAL}" = '1' ]
636         then
637                 setup_unionfs ${NEW_ROOT} ${NEW_ROOT}/${FS_LOCATION}
638                 CHROOT=/union
639         else
640         
641         good_msg "Copying read-write image contents to tmpfs"
642         # Copy over stuff that should be writable
643         (cd "${NEW_ROOT}/${FS_LOCATION}"; cp -a ${ROOT_TREES} "${NEW_ROOT}")
644
645         # Now we do the links.
646         for x in ${ROOT_LINKS}
647         do
648                 if [ -L "${NEW_ROOT}/${FS_LOCATION}/${x}" ]
649                 then
650                         ln -s "`readlink ${NEW_ROOT}/${FS_LOCATION}/${x}`" "${x}" 2>/dev/null
651                 else
652                         # List all subdirectories of x
653                         find "${NEW_ROOT}/${FS_LOCATION}/${x}" -type d 2>/dev/null | while read directory
654                         do
655                                 # Strip the prefix of the FS_LOCATION
656                                 directory="${directory#${NEW_ROOT}/${FS_LOCATION}/}"
657
658                                 # Skip this directory if we already linked a parent directory
659                                 if [ "${current_parent}" != '' ]; then
660                                         var=`echo "${directory}" | grep "^${current_parent}"`
661                                         if [ "${var}" != '' ]; then
662                                                 continue
663                                         fi
664                                 fi
665                                 # Test if the directory exists already
666                                 if [ -e "/${NEW_ROOT}/${directory}" ]
667                                 then
668                                         # It does exist, link all the individual files
669                                         for file in `ls /${NEW_ROOT}/${FS_LOCATION}/${directory}`
670                                         do
671                                         if [ ! -d "/${NEW_ROOT}/${FS_LOCATION}/${directory}/${file}" ] && [ ! -e "${NEW_ROOT}/${directory}/${file}" ]; then
672                                                         ln -s "/${FS_LOCATION}/${directory}/${file}" "${directory}/${file}" 2> /dev/null
673                                                 fi
674                                         done
675                                 else
676                                         # It does not exist, make a link to the livecd
677                                         ln -s "/${FS_LOCATION}/${directory}" "${directory}" 2>/dev/null
678                                         current_parent="${directory}"
679                                 fi
680                         done
681                 fi
682         done
683
684         mkdir initramfs proc tmp sys 2>/dev/null
685         chmod 1777 tmp
686
687         fi
688
689         #UML=`cat /proc/cpuinfo|grep UML|sed -e 's|model name.*: ||'`
690         #if [ "${UML}" = 'UML' ]
691         #then
692         #       # UML Fixes
693         #       good_msg 'Updating for uml system'
694         #fi
695
696         # Let Init scripts know that we booted from CD
697         export CDBOOT
698         CDBOOT=1
699 else
700         if [ "${USE_UNIONFS_NORMAL}" = '1' ]
701         then
702                 mkdir /union_changes
703                 mount -t tmpfs tmpfs /union_changes
704                 setup_unionfs /union_changes ${NEW_ROOT}
705                 mkdir -p ${UNION}/tmp/.initrd
706         fi
707 fi
708
709 # Execute script on the cdrom just before boot to update things if necessary
710 cdupdate
711
712 if [ "${SUBDIR}" != '' -a -e "${CHROOT}/${SUBDIR}" ]
713 then
714         good_msg "Entering ${SUBDIR} to boot"
715         CHROOT="${CHROOT}/${SUBDIR}"
716 fi
717
718 verbose_kmsg
719
720 echo -ne "${GOOD}>>${NORMAL}${BOLD} Booting (initramfs)${NORMAL}"
721 if [ ! -e "${CHROOT}/dev/console" ] || [ ! -e "${CHROOT}/dev/null" ]
722 then
723         echo -ne "${BAD}>>${NORMAL}${BOLD} ERROR: your real /dev is missing files required to boot (console and null)${NORMAL}"
724 elif [ -e /etc/initrd.splash -a ! -e "${CHROOT}/dev/tty1" ]
725 then
726         echo -ne "${BAD}>>${NORMAL}${BOLD} ERROR: your real /dev is missing tty1, which is required for splash${NORMAL}"
727 fi
728
729 cd "${CHROOT}"
730 mkdir "${CHROOT}/proc" "${CHROOT}/sys" 2>/dev/null
731 echo -ne "${BOLD}.${NORMAL}"
732 umount /sys || echo '*: Failed to unmount the ramdisk /sys!'
733 umount /proc || echo '*: Failed to unmount the ramdisk /proc!'
734 echo -e "${BOLD}.${NORMAL}"
735
736 exec /sbin/switch_root -c "/dev/console" "${CHROOT}" "${REAL_INIT:-/sbin/init}" "${INIT_OPTS}"
737
738 # If we get here, something bad has happened
739 splash 'verbose'
740
741 echo 'A fatal error has probably occured since /sbin/init did not'
742 echo 'boot correctly. Trying to open a shell...'
743 echo
744 exec /bin/bash
745 exec /bin/sh
746 exec /bin/ash
747 exec sh