source: MondoRescue/branches/2.2.7/mindi/mindi@ 2043

Last change on this file since 2043 was 2043, checked in by Bruno Cornec, 16 years ago
  • Improve a message output in the log related to NFS setup
  • Property svn:keywords set to Rev Id
File size: 100.6 KB
RevLine 
[747]1#!/bin/bash
2
3# $Id: mindi 2043 2008-10-08 00:30:45Z bruno $
4#
5#-----------------------------------------------------------------------------
6# mindi - mini-Linux distro based on the user's filesystem & distribution
7#
[1880]8# Mindi can create a multi-image boot/root kit. The first image is the boot
[747]9# disk: it contains a kernel, a ramdisk etc. The second disk is data disk #1;
10# the third disk is data disk #2; and so it goes.
11#
12# See http://www.mondorescue.org for details.
13#-----------------------------------------------------------------------------
14
15### Which arch are we on (useful for ia64 port)
[1565]16ARCH=`/bin/uname -m`
[747]17
[1511]18ADDITIONAL_BOOT_PARAMS="devfs=nomount noresume selinux=0 barrier=off"
[747]19
[1691]20MINDI_REV=PBREV
21MINDI_VER=PBVER
[747]22
23MINDI_VERSION=${MINDI_VER}-r$MINDI_REV
24MINDI_PREFIX=XXX
25MINDI_CONF=YYY
26MINDI_SBIN=${MINDI_PREFIX}/sbin
[934]27MINDI_LIB=LLL
[747]28
[925]29# Temporary directory for mindi
30TMPDIR=/tmp
31
[1914]32EXTRA_SPACE=49152 # increase if you run out of ramdisk space
[1821]33BOOT_SIZE=16384 # size of the boot disk
[747]34
35PROMPT_MAKE_CD_IMAGE="yes"
36 # Ask if you want to make a CD Image to be written?
37 # if this is set to 'no', then the image will be created automatically
38
[1684]39PROMPT_MAKE_USB_IMAGE="yes"
40 # Ask if you want to make a USB Image to be written?
41 # if this is set to 'no', then the image will be created automatically
42
[966]43USE_OWN_KERNEL="yes"
[747]44 # If set to "no", you will be prompted for whether or not
45 # you want to use your own kernel, or the supplied default.
46 # If "yes" mindi will automatically use your own kernel.
[925]47
[747]48MY_FSTAB=/etc/fstab
49TAPE_MODS="ht st osst ide-tape ide_tape"
[2028]50SCSI_MODS="3w-xxxx 3w_xxxx 3w_9xxx 3w-9xxx 53c7,8xx a100u2w a320raid aacraid adpahci advansys aha152x aha1542 aha1740 aic79xx aic79xx_mod aic7xxx aic7xxx_mod aic7xxx_old AM53C974 atp870u BusLogic cciss cpqfc dmx3191d dpt_i2o dtc eata eata_dma eata_pio fdomain gdth g_NCR5380 i2o_block i2o_core ide-scsi ieee1394 imm in2000 initio ips iscsi isp megaraid megaraid_mm megaraid_mbox megaraid_sas mptbase mptscsih mptsas mptspi mptfc mptscsi mptctl NCR53c406a ncr53c8xx nsp32 pas16 pci2000 pci2220i pcmcia ppa psi240i qla1280 qla2200 qla2300 qla2400 qla2xxx qla2xxx_conf qlogicfas qlogicfc qlogicisp raw1394 scsi_debug scsi_mod scsi_transport_sas scsi_transport_spi sd_mod seagate sg sim710 sr_mod sym53c416 sym53c8xx sym53c8xx_2 t128 tmscsim u14-34f ultrastor wd7000 vmhgfs intermodule"
[747]51
52# ide-probe-mod
[2033]53IDE_MODS="ide ide-floppy floppy ide-generic ide-detect ide-mod ide-disk ide_disk ide-cd ide_cd ide_cd_mod ide-cd_mod ide-cs ide-core ide_core edd paride ata_generic ata_piix libata dock via82cxxx generic nvidia ahci sata_nv cmd64x pata_amd pata_marvell pata_serverworks pata_sis amd74xx sis5513"
[747]54PCMCIA_MODS="pcmcia_core ds yenta_socket"
[1927]55USB_MODS="usb-storage usb-ohci usb-uhci usbcore usb_storage input hid uhci_hcd ehci_hcd uhci-hcd ehci-hcd ohci-hcd ohci_hcd usbkbd usbhid keybdev mousedev libusual scsi_mod"
[2000]56NET_MODS="sunrpc nfs nfs_acl lockd fscache loop mii 3c59x e100 bcm5700 bnx2 e1000 eepro100 ne2k-pci tg3 pcnet32 8139cp 8139too 8390 forcedeth vmxnet vmnet exportfs"
[1993]57CDROM_MODS="$TAPE_MODS $IDE_MODS $USB_MODS $PCMCIA_MODS $SCSI_MODS $NET_MODS af_packet cdrom isocd isofs inflate_fs nls_iso8859-1 nls_base nls_cp437 nls_utf8 sg sr_mod zlib_inflate iso9660"
58# Those modules will only go on the backup media, not the boot media.
[1258]59EXTRA_MODS="$CDROM_MODS vfat fat loop md-mod linear raid0 raid1 xor raid5 raid456 lvm-mod dm-mod dm-snapshot dm-zero dm-mirror jfs xfs xfs_support pagebuf reiserfs ext2 ext3 minix nfs nfs_acl nfsd lockd sunrpc jbd mbcache"
[1230]60# Replace with that line for HP OCMP e.g.
[1828]61#DENY_MODS="MPS_Driver_Mapper mps octtldrv tscttl streams kqemu"
62DENY_MODS="kqemu"
[1399]63# Force some modules to be included
[1354]64FORCE_MODS=""
[925]65
[747]66LOGFILE=/var/log/mindi.log
[1880]67MINDI_CACHE=/var/cache/mindi
[747]68BOOT_MEDIA_MESSAGE="\
69To format and restore all files automatically, type 'nuke' <enter>.\n\
70To restore some/all files interactively, type 'interactive' <enter>.\n\
71To compare the archives with your filesystem, type 'compare' <enter>.\n\
72To boot to a command-line prompt (expert mode), type 'expert' <enter>.\n\
73You may add one or more of the following parameters as well:-\n\n\
74 donteject - mondorestore will not eject the CD; this is useful if, for\n\
75 instance, your PC's case has a concealed CD-ROM drive\n\
76 noresize - your mountlist will not be adjusted to use your unallocated\n\
77 hard disk space\n\
78 textonly - do not call any Newt library routines; this is unattractive\n\
79 but valuable if you find your Newt library has bugs in it\n\n\
80e.g. Type 'nuke donteject textonly' if you have an unstable Newt library and \n\
81a PC whose CD-ROM drive tray would be damaged if it unexpectedly ejected.\n\
82"
[925]83FDISK=$MINDI_SBIN/parted2fdisk
[747]84
[925]85# Using a config file allow to overwrite some values
86MINDI_CONFIG="$MINDI_CONF/mindi.conf"
87if [ -f $MINDI_CONFIG ]; then
88 . $MINDI_CONFIG
89fi
[1885]90DEPLIST_FILE="$MINDI_CONF/deplist.txt"
91ISO_CMD="/usr/bin/mkisofs"
92ISO_OPT="-J -r -v -p Mindi -publisher http://www.mondorescue.org -A Mindi"
[925]93
[1485]94# Now we can create what we need
[1486]95export MINDI_TMP=`mktemp -d $TMPDIR/mindi.XXXXXXXXXX`
[940]96
[747]97# ----------------------------------------------------------------------------
98
99
100AbortHere() {
101 [ "$mountpoint" ] && umount $mountpoint 2>> $LOGFILE
102 Die "Program is terminating in response to signal received from OS/user"
103}
104
105
106Aborted() {
107 trap SIGHUP SIGTERM SIGTRAP SIGINT
[1880]108 [ "$MINDI_CACHE" != "" ] && rm -f $MINDI_CACHE/mindi*img $MINDI_CACHE/*gz $MINDI_CACHE/mindi.iso
[747]109 [ "$minidir_root" != "" ] && rm -Rf $minidir_root/*
110 Die "User abort."
111}
112
113
114AddFileToCfgIfExists() {
115 [ -e "$1" ] && echo -en "$2 `cat $1`\n" >> $3
116}
117
118
119AddKeyboardMappingFile() {
120 local mappath r included_list included_item i res ii sss
121 mappath=$1
122 KBDEPTH=$(($KBDEPTH+1))
123 [ "$KBDEPTH" -gt "128" ] && Die "Edit $MINDI_SBIN/mindi and disable FindAndAddUserKeyboardMappingFile (line 2160, approx.)"
124 if [ -e "$bigdir/$mappath" ] ; then
125 echo "$mappath already added" >> $LOGFILE
126 return
127 elif [ -d "$bigdir/$mappath" ] ; then
128 echo "Cannot add $mappath: it's a directory. Sorry."
129 return
130 fi
131 echo "Added kbd map $mappath" >> $LOGFILE
132 if [ ! -e "$mappath" ] ; then
[1764]133 mappath=`grep "i[3-8]86" $MINDI_TMP/keymaps.find | grep "$locale[^r][^/]" | grep -vx " *#.*"`
[747]134 if [ ! -e "$mappath" ] ; then
[963]135 LogIt "Cannot add $mappath: kbd map file not found"
[747]136 return
137 fi
138 else
139 echo -en "`basename $mappath | tr '.' '#' | sed s/#kmap#gz// | sed s/#inc#gz//` " | tr '#' '.'
140 fi
141
142 mkdir -p $bigdir/etc
[1919]143 tar cf - $mappath 2>> /dev/null | (cd $bigdir ; tar xf -) || LogIt "AKMF -- Could not copy $mappath to $bigdir"
[747]144 if [ "`echo $mappath | grep -F ".gz"`" ] ; then
145 included_list=`gzip -dc $mappath | grep -Fi include | sed s/'"'// | sed s/'"'// | cut -d' ' -f2`
146 else
147 included_list=`grep -Fi include $mappath | sed s/'"'// | sed s/'"'// | cut -d' ' -f2`
148 fi
149 for included_item in $included_list ; do
[925]150 if [ ! -e "$included_item" ] ; then
[1764]151 sss=`grep -F "${included_item}.inc" $MINDI_TMP/keymaps.find`
152 [ "$sss" = "" ] && sss=`grep -F "$included_item" $MINDI_TMP/keymaps.find`
[925]153 for ii in $sss ; do
[747]154 [ -e "$ii" ] && AddKeyboardMappingFile $ii
[925]155 done
156 else
157 AddKeyboardMappingFile $included_item
158 fi
[747]159 done
160}
161
162
163CopyDependenciesToDirectory() {
[1989]164 local outdir incoming fname counter d found
[747]165 outdir=$1
166 mkdir -p $outdir
167 incoming=`ReadLine`
168 counter=0
169 while [ "$incoming" != "" ] ; do
[1526]170 # Non absolute file names should not arrive till here => skipped
171 if [ `echo "$incoming" | cut -c1` != '/' ]; then
172 LogIt "Unable to handle $incoming"
173 incoming=`ReadLine`
174 continue
175 fi
176 # no parent directory of incoming should be a link, copy is not possible in that case
177 d=`dirname "$incoming"`
178 found="false"
179 while [ $d != "/" -a $found = "false" ]; do
180 [ -h "$d" ] && found="true"
181 d=`dirname "$d"`
182 done
183 if [ -d "$incoming" ] && [ ! -h "$incoming" ]; then
[747]184 find $incoming/* -maxdepth 0 2> /dev/null | CopyDependenciesToDirectory $outdir
[1526]185 elif [ -e "$incoming" ] && [ $found = "false" ]; then
[1989]186 tar cf - $incoming 2> /dev/null | (cd $outdir ; tar xf -) || Die "Cannot copy $incoming to $outdir - did you run out of disk space?"
187
188 # Only uncompress modules if not using udevd
189 if [ "`echo "$incoming" | grep "lib/modules/.*\..*o\.gz"`" != "" ] && [ "`ps auxww | grep -v grep | grep -qw udevd`" != "" ]; then
190 gunzip -f $outdir/$incoming || LogIt "Cannot gunzip $outdir/$incoming"
[925]191 fi
[1989]192 [ -x "$outdir" ] && StripExecutable $outdir "-$filename-"
[925]193 counter=$(($counter+1))
194 if [ "$counter" -ge "5" ] ; then
195 counter=0
196 echo -en "."
197 fi
[747]198 fi
199 incoming=`ReadLine`
200 done
201}
202
203
204CountItemsIn() {
205 local r
206 r=0
207 for q in $1 ; do
208 r=$(($r+1))
209 done
210 echo $r
211}
212
213
[925]214# Last function called before exiting
215# Parameter is exit code value
[931]216MindiExit() {
[925]217 local my_partitions
[747]218
[925]219 echo "Mindi $MINDI_VERSION is exiting" >> $LOGFILE
220 echo "End date : `date`" >> $LOGFILE
[1335]221 if [ _"$MONDO_SHARE" != _"" ] ; then
[1349]222 echo "------------- mindi logfile included -------------------------" >> /var/log/mondoarchive.log
[1315]223 cat $LOGFILE >> /var/log/mondoarchive.log
[1349]224 echo "--------------------------------------------------------------">> /var/log/mondoarchive.log
[1315]225 fi
[747]226
[925]227 cd /
[1636]228 sync&
[747]229
[1636]230 # Unmount what could remain mounted
[925]231 my_partitions=`mount | grep -F $$ | cut -f1 -d' '`
232 [ "$my_partitions" != "" ] && umount $my_partitions
[940]233 # Clean temporary files only when standalone mindi
[948]234 if [ _"$MINDI_TMP" != _"$MONDO_TMP" ]; then
[940]235 rm -Rf $MINDI_TMP
236 fi
[925]237 exit $1
238}
239
[747]240Die() {
[925]241 local i
[747]242 if [ "$1" = "" ] ; then
[963]243 LogIt "FATAL ERROR"
[747]244 else
[963]245 LogIt "FATAL ERROR. $1"
[747]246 fi
247
[1315]248 LogIt "Please e-mail a copy of $LOGFILE to the mailing list."
[963]249 LogIt "See http://www.mondorescue.org for more information."
[747]250 LogIt "WE CANNOT HELP unless you enclose that file.\n"
[925]251 MindiExit -1
[747]252}
253
254
255DropOptimizedLibraries() {
256 local outdir filelist list_of_optimized_libraries optimized_lib_name vanilla_lib_name reason msg resolved res
257 filelist=$1
258 outdir=$2
259
260 list_of_optimized_libraries=`grep "lib/i[5-7]86/" $filelist`
261 if [ "$list_of_optimized_libraries" = "" ] ; then
[859]262 return 0
[747]263 fi
264 echo -en "Dropping i686-optimized libraries if appropriate"
265 for optimized_lib_name in $list_of_optimized_libraries ; do
[859]266 echo -en "."
267 reason=""
[1483]268 vanilla_lib_name=`echo "$optimized_lib_name" | sed -e 's/i[5-7]86//' -e 's/cmov//' -e 's/nosegneg//' | tr -s '/' '/'`
[859]269 echo "$vanilla_lib_name" >> $filelist
270 resolved=$vanilla_lib_name
[747]271 echo "Adding $resolved to filelist" >> $LOGFILE
[861]272 resolved=`ReadAllLink $resolved`
273 echo "Adding $resolved to filelist" >> $LOGFILE
[859]274 mkdir -p $outdir$optimized_lib_name > /dev/null 2> /dev/null
275 rmdir $outdir$optimized_lib_name > /dev/null 2> /dev/null
276 ln -sf $vanilla_lib_name $outdir$optimized_lib_name
277 echo "Excluding $optimized_lib_name" >> $LOGFILE
[935]278 grep -Fvx "$optimized_lib_name" "$filelist" > $filelist.tmp
[859]279 echo "Replacing it with $vanilla_lib_name" >> $LOGFILE
280 echo "$vanilla_lib_name" >> $filelist.tmp
281 mv -f $filelist.tmp $filelist
[747]282 done
[925]283 $AWK '{ print $1; }' $filelist | sort -u > $filelist.tmp
[747]284 mv -f $filelist.tmp $filelist
285 echo -e "$DONE"
286}
287
288
289FindAndAddUserKeyboardMappingFile() {
290 local r res mapfile mappath included_item included_list keyfile mp locale
[963]291 LogIt "Analyzing your keyboard's configuration."
[747]292 KEYDIR=/lib/kbd
293 [ ! -e "$KEYDIR" ] && KEYDIR=/usr/share/kbd # Slackware
294 [ ! -e "$KEYDIR" ] && KEYDIR=/usr/lib/kbd
295 [ ! -e "$KEYDIR" ] && KEYDIR=/usr/share
[1713]296 [ ! -e "$KEYDIR" ] && KEYDIR=/etc/condole
297 [ ! -e "$KEYDIR" ] && KEYDIR=/etc/condole-setup
[747]298 if [ ! -e "$KEYDIR" ] ; then
[963]299 LogIt "Keyboard mapping directory not found. I shall use default map at boot-time."
[747]300 return 0
301 fi
302 if [ -e "/etc/sysconfig/keyboard" ] ; then
303 echo "Red Hat-style config detected." >> $LOGFILE
304 keyfile=/etc/sysconfig/keyboard
305 elif [ -e "/etc/rc.d/rc.keymap" ] ; then
306 echo "Slackware-style config detected." >> $LOGFILE
307 keyfile=/etc/rc.d/rc.keymap
308 elif [ -e "/etc/rc.config" ] ; then
309 echo "Debian-style config detected." >> $LOGFILE
310 keyfile=/etc/rc.config
311 elif [ -e "/etc/console/boottime.kmap.gz" ] ; then
312 echo "Debian-style config detected." >> $LOGFILE
313 echo -en "Adding the following keyboard mapping tables: "
314 mkdir -p $bigdir/tmp
315 echo "/etc/console/boottime.kmap.gz" > $bigdir/tmp/KEYMAP-LIVES-HERE
316 KBDEPTH=0
317 mkdir -p $bigdir/etc/console
[963]318 cp /etc/console/boottime.kmap.gz $bigdir/etc/console 2>> $LOGFILE
[747]319 echo -e "$DONE"
320 return 0
[1713]321 elif [ -e "/etc/console-setup/boottime.kmap.gz" ] ; then
322 echo "Ubuntu-style config detected." >> $LOGFILE
323 echo -en "Adding the following keyboard mapping tables: "
324 mkdir -p $bigdir/tmp
325 echo "/etc/console-setup/boottime.kmap.gz" > $bigdir/tmp/KEYMAP-LIVES-HERE
326 KBDEPTH=0
327 mkdir -p $bigdir/etc/console-setup
328 cp /etc/console-setup/boottime.kmap.gz $bigdir/etc/console-setup 2>> $LOGFILE
329 echo -e "$DONE"
330 return 0
[1465]331 elif [ -e "/etc/conf.d/keymaps" ] ; then
332 echo "Gentoo-style config detected." >> $LOGFILE
333 keyfile=/etc/conf.d/keymaps
[747]334 else
335 echo -en "Searching for rc.config ..."
336 keyfile=`find /etc -name rc.config | head -n1`
337 if [ "$keyfile" = "" ] || [ ! -e "$keyfile" ] ; then
[963]338 LogIt "Unknown config detected. Default keyboard map will be used."
[747]339 return
340 else
341 echo "Found $keyfile" >> $LOGFILE
342 fi
343 fi
344 if [ ! -e "$KEYDIR/keymaps" ] ; then
[963]345 LogIt "Keyboard mapping directory not found. Default keyboard map will be used."
[747]346 return
347 fi
348 echo "keyfile=$keyfile" >> $LOGFILE
349 locale=`grep -F KEYTABLE "$keyfile" | tr -d '"' |cut -d'=' -f2`
350 [ ! "$locale" ] && locale=`grep '.map$' "$keyfile" | sed 's/^.* //'` # Slackware
[1465]351 [ ! "$locale" ] && locale=`grep -E '^KEYMAP=' "$keyfile" | tr -d '"' |cut -d'=' -f2` # Gentoo
[747]352 echo "locale=$locale" >> $LOGFILE
[1764]353 #
354 # Process the keymaps dir once for all
355 # AddKeyboardMappingFile will use it recursively
356 #
357 find $KEYDIR/keymaps > $MINDI_TMP/keymaps.find
358 mp=`grep "i[3-8]86" $MINDI_TMP/keymaps.find | grep -F "/${locale}." | grep -vx " *#.*"`
359 [ ! "$mp" ] && mp=`grep "i[3-8]86" $MINDI_TMP/keymaps.find | grep "$locale[^r][^/]" | grep -vx " *#.*"`
[747]360 # If we have multiple keymaps then log it !!
361 echo "$mp" | grep -q " "
362 if [ $? -eq 0 ]; then
363 echo "WARNING: Multiple keymaps found: $mp" | tee -a $LOGFILE
364 echo "The following one will be used" >> $LOGFILE
365 fi
366 for i in $mp ; do
367 mappath=$i
368 [ -e "$i" ] && [ ! -d "$i" ] && break
369 done
370 if [ ! -e "$mappath" ] || [ -d "$mappath" ] ; then
[1854]371 mappath=$(find / -name "*/kbd/keymaps/*/$locale")
[747]372 fi
373 echo "mappath = $mappath" >> $LOGFILE
374 if [ ! -e "$mappath" ] || [ -d "$mappath" ] ; then
[963]375 LogIt "Keyboard mapping file not found. Default keyboard map will be used."
[747]376 return
377 fi
378 echo -en "Adding the following keyboard mapping tables: "
379 mkdir -p $bigdir/tmp
380 echo "$mappath" > $bigdir/tmp/KEYMAP-LIVES-HERE
[1983]381 KBDElabel=memtest\nPTH=0
[747]382 AddKeyboardMappingFile $mappath
383 echo -e "$DONE"
[1764]384 rm -f $MINDI_TMP/keymaps.find
[747]385 return 0
386}
387
388
389FindIsolinuxBinary() {
390 ISOLINUX=/usr/lib/isolinux.bin
391 [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/lib/syslinux/isolinux.bin
[1491]392 [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/lib64/syslinux/isolinux.bin
[747]393 [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/share/syslinux/isolinux.bin
394 [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/share/lib/syslinux/isolinux.bin
[1491]395 [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/share/lib64/syslinux/isolinux.bin
[1854]396 [ ! -e "$ISOLINUX" ] && ISOLINUX=`find / -name isolinux.bin | grep -x "/.*/isolinux.bin"`
[747]397 [ ! -e "$ISOLINUX" ] && Die "Please install isolinux first. If your syslinux RPM doesn't include isolinux, you may download an isolinux RPM from Mondo's website - go to http://www.mondorescue.com and click on 'Download'"
398 echo "Found isolinux.bin at $ISOLINUX" >> $LOGFILE
399}
400
401
402FindSpecificModuleInPath() {
403 local modpaths pwd line
404 pwd=`pwd`
405 if [ "$YOUR_KERNEL_SUCKS" ] ; then
[940]406 cd $MINDI_TMP
[747]407 else
408 cd /
409 fi
410 if [ ! -e "$1" ] ; then
[963]411 LogIt "WARNING - cannot search specific path '$1'"
[747]412 return 1
413 fi
414 modpaths=`find $1 -name $2.*o -type f`
[1815]415 #[ "$?" -ne "0" ] && Die "find $1 -name $2.o -type f --- failed"
[747]416 [ "$modpaths" = "" ] && modpaths=`find $1 -name $2.o.gz -type f`
417 [ "$modpaths" = "" ] && modpaths=`find $1 -name $2.ko.gz -type f`
418 [ "$modpaths" = "" ] && modpaths=`find $1 -name $2 -type f`
419 echo "$modpaths"
420 cd $pwd
421}
422
423
424GenerateGiantDependencyList() {
425 local incoming loc fname list_of_files i tempfile outfile progress filelist res r mapfile mappath included_list included_item old_pwd tempdepfile modres noof_lines lvmversion lvmresolved
426
427 echo -en "Analyzing dependency requirements"
428 outfile=$1
[940]429 tempfile=$MINDI_TMP/$$.txt
[747]430 incoming=`ReadLine`
431
432 > $tempfile
433 progress=0
434 res=0
435 noof_lines=$2
436 while [ "$incoming" != "" ] ; do
[861]437 if echo "$incoming" | grep -x " *#.*" &> /dev/null ; then
438 incoming=`ReadLine`
439 continue
440 fi
441 if [ "$incoming" = "LVMFILES:" ] ; then
442 break
443 fi
[747]444 filelist=`GenerateListForFile "$incoming"`
445 r=$?
[963]446 [ "$r" -ne "0" ] && LogIt "$incoming not found"
[747]447 res=$(($res+$r))
[861]448# echo "'$incoming' generates filelist '$filelist'" >> $LOGFILE
[747]449 for fname in $filelist ; do
[861]450 [ "$fname" != "" ] && echo "$fname" >> $tempfile
[747]451 done
452 progress=$(($progress+1))
453 echo -en "\r\t\t\t\t\t\t\t\t"
454 i=$(($progress*100))
455 i=$(($i/$noof_lines))
456 echo -en "$i"
457 echo -en "%"
458 modres=$(($progress%4))
459 [ "$modres" -eq "0" ] && echo -en "\t/"
460 [ "$modres" -eq "1" ] && echo -en "\t-"
461 [ "$modres" -eq "2" ] && echo -en "\t\\"
462 [ "$modres" -eq "3" ] && echo -en "\t|"
463 incoming=`ReadLine`
464 done
[861]465 if [ "$incoming" = "LVMFILES:" ] ; then
466 incoming=`ReadLine`
467 lvmversion=""
468 while [ "$incoming" != "" ] ; do
469 if echo "$incoming" | grep -x " *#.*" &> /dev/null ; then
470 incoming=`ReadLine`
471 continue
472 fi
473 filelist=`GenerateListForFile "$incoming"`
474 for tool in $filelist ; do
475 lvmresolved=`readlink -f $tool`
[1342]476 if [ "$tool" = "$lvmresolved" ]; then
[861]477 echo "$tool" >> $tempfile
478 elif echo "$lvmresolved" | grep "lvmiopversion" &> /dev/null ; then
479 if [ "$lvmversion" = "" ] ; then
480 lvmversion=`$lvmresolved`
481 echo "$lvmresolved" >> $tempfile
482 fi
483 toolstripped=`echo $tool | $AWK -F / '{print $NF;}'`
[1342]484 if [ "$lvmversion" = "200" ]; then
[861]485 # pvdata and lvmcreate_initrd don't exist in LVM2
486 case "$toolstripped" in
487 "pvdata")
488 continue
489 ;;
490 "lvmcreate_initrd")
491 continue
492 ;;
493 esac
494 fi
495 toolpath="/sbin/lvm-"$lvmversion"/"$toolstripped
496 if [ -e "$toolpath" ] ; then
497 echo "$toolpath" >> $tempfile
498 echo "$tool" >> $tempfile
499 else
500 toolpath="/lib/lvm-"$lvmversion"/"$toolstripped
501 fi
502 if [ -e "$toolpath" ] ; then
503 echo "$toolpath" >> $tempfile
504 echo "$tool" >> $tempfile
505 else
506 echo "Where are your LVM-Tools? Couldn't find $tool"
507 fi
508 else
509 echo "$tool" >> $tempfile
510 fi
511 done
512 progress=$(($progress+1))
513 echo -en "\r\t\t\t\t\t\t\t\t"
514 i=$(($progress*100))
515 i=$(($i/$noof_lines))
516 echo -en "$i"
517 echo -en "%"
518 modres=$(($progress%4))
519 [ "$modres" -eq "0" ] && echo -en "\t/"
520 [ "$modres" -eq "1" ] && echo -en "\t-"
521 [ "$modres" -eq "2" ] && echo -en "\t\\"
522 [ "$modres" -eq "3" ] && echo -en "\t|"
523 incoming=`ReadLine`
524 done
[747]525 fi
526 echo -en "$DONE\nMaking complete dependency list"
527
528 tr -s '/' '/' < $tempfile | sort -u > $tempfile.new
529 mv -f $tempfile.new $tempfile
530 > $outfile.pre
531 progress=0
532 noof_lines=`cat $tempfile | wc -l`
[1876]533 echo "---------------------------------" >> $LOGFILE
534 echo "List of dependencies: " >> $LOGFILE
535 echo "---------------------------------" >> $LOGFILE
[747]536 for fname in `cat $tempfile` ; do
[1876]537 echo "$fname" | tee -a $LOGFILE >> $outfile.pre
538 LocateDeps $fname | tee -a $LOGFILE >> $outfile.pre
[925]539 progress=$(($progress+1))
[747]540 echo -en "\r\t\t\t\t\t\t\t\t"
541 i=$(($progress*100))
542 i=$(($i/$noof_lines))
543 echo -en "$i"
544 echo -en "%"
[925]545 modres=$(($progress%4))
[747]546 [ "$modres" -eq "0" ] && echo -en "\t/"
547 [ "$modres" -eq "1" ] && echo -en "\t-"
548 [ "$modres" -eq "2" ] && echo -en "\t\\"
549 [ "$modres" -eq "3" ] && echo -en "\t|"
550 done
[1684]551 if [ _"$MONDO_SHARE" != _"" ]; then
[925]552 mkdir -p $bigdir/tmp
553 mkdir -p $bigdir/sbin
554 mkdir -p $bigdir/bin
[940]555 if [ -e "$MINDI_TMP/post-nuke.tgz" ] ; then
[963]556 LogIt "\nIncorporating post-nuke tarball"
[925]557 old_pwd=`pwd`
558 cd $bigdir
[963]559 tar -zxf $MINDI_TMP/post-nuke.tgz || LogIt "Error occurred when untarring post-nuke tarball"
[925]560 cd $old_pwd
[747]561 fi
[963]562 if cp -f $MINDI_TMP/mondo*restore $bigdir/usr/bin 2>> $LOGFILE ; then
[925]563 LocateDeps $bigdir/usr/bin/mondo*restore >> $outfile.pre
564 else
[963]565 LogIt "Cannot find mondo*restore in mondo's tempdir, $MINDI_TMP"
566 LogIt "I bet you've got a spare copy of Mondo or Mindi floating around on your system."
[925]567 LogIt "If Mindi was called by Mondo then send me a bug report.\n It not, type 'ps ax' to see which Mondo-related process is still running;\n then kill it. :-)\n Finally, run Mindi again."
568 Die "Odd."
569 fi
[963]570 cp -f $MINDI_TMP/BOOTLOADER.* $bigdir 2> /dev/null || LogIt "\nMondo v1.2x defaults to LILO as the bootloader, BTW."
[940]571 if [ -e "$MINDI_TMP/NFS-DEV" ] ; then
[2043]572 LogIt "\nIncorporating NFS-related settings"
[925]573 for r in NFS-* ISO-PREFIX ; do
[963]574 cp -f $MINDI_TMP/$r $bigdir/tmp 2>> $LOGFILE || Die "Cannot copy $r - did you run out of disk space?"
[925]575 echo "Copying $r to ramdisk" >> $LOGFILE
576 done
577 fi
[747]578 fi
[925]579 tr ' ' '\n' < $outfile.pre | tr -s '/' '/' | grep -Fvx "" | sort -u | grep -Ev "/libX11|/libXext|/libXi|/libgtk|/libgdk" > $outfile
[747]580 rm -f $tempfile $outfile.pre
581 [ "$res" -eq "0" ] && echo -e "\r\t\t\t\t\t\t\t\t$DONE" || echo "\nFailed."
582 return $res
583}
584
585
586GenerateListForFile() {
587 local files_found loc fname incoming i res
588 incoming="$1"
589 files_found=""
590 res=0
591
592 for fname in $incoming ; do
593 files_found="$files_found `LocateFile $fname`"
594 done
595
596 echo "$files_found" | tr ' ' '\n' | sort -u | tr '\n' ' '
597}
598
599
600# Returns all disk devices which are part of a raid array
601GetAllRaidMembers() {
602 $AWK "/^[[:space:]]*#/ {next} /^[[:space:]]*device/ if(\$2) {print \$2}" < /etc/raidtab
603}
604
605
606GetFileSizeList() {
607 local i
608 for i in `find $1 -type d -o -print` ; do
609 du -sk $i
610 done
611}
612
613
614GetHomeDir() {
615 local res loc
616 loc=`which $1 2>/dev/null`
617 res=`file $loc | $AWK '{print $NF;}'`
618 dirname $res
619}
620
621
[1230]622# Check kernel filesystem capabilites for accessing initrd image
623#
624# Interface definition:
625# param #1: absolute path to kernel image
626GetInitrdFilesystemToUse() {
627
628 # interface test: make sure we have one parameter
629 if [ $# -ne 1 ]; then
630 Die "GetInitrdFilesystemToUse(): Expected 1 parameter, got $#."
631 fi
632
633 # interface parameters
634 local lvKernelImage=$1
635
636 # local constants (filesystem magic strings)
637 local lcMagicCramfs="<3>cramfs: wrong magic"
638 local lcMagicExt2fs="<3>EXT2-fs: blocksize too small for device."
[1730]639 local lcMagicInitfs="<6>checking if image is initramfs...|<6>Unpacking initramfs..."
[1230]640
641 # local variables
642 local lvOffset
643 local lvScanRes
644 local lvUseFilesystem
645
646 # say where we are.
647 echo " GetInitrdFilesystemToUse(): called with parameter: $lvKernelImage.\n" >> $LOGFILE
648
649 # verify that file exists
650 [ ! -f $lvKernelImage ] && Die "File $lvKernelImage not found. Terminating."
651
[1566]652 # Kernel may be gzip compressed
[1730]653 file $lvKernelImage 2>&1 | grep -q gzip
[1566]654 if [ $? -eq 0 ]; then
[1730]655 lvScanRes=`gzip -cd $lvKernelImage | strings | grep -E "$lcMagicCramfs|$lcMagicExt2fs|$lcMagicInitfs"`
[1566]656 else
657 # get offet of gzip magic "1f8b0800" in file
658 lvOffset=`od -vA n -t x1 $lvKernelImage | tr -d '[:space:]' | awk '{ print match($0, "1f8b0800")}'`
659 [ $lvOffset -eq 0 ] && Die "gzip magic not found in file $lvKernelImage. Terminating."
660 lvOffset=`expr $lvOffset / 2`
661 echo " GetInitrdFilesystemToUse(): gzip magic found at lvOffset $lvOffset.\n" >> $LOGFILE
[1230]662
[1566]663 # scan kernel image for initrd filessystem support
[1730]664 lvScanRes=`dd ibs=1 skip=$lvOffset if=$lvKernelImage obs=1M 2>/dev/null | gunzip -c 2> /dev/null | strings | grep -E "$lcMagicCramfs|$lcMagicExt2fs|$lcMagicInitfs"`
[1566]665 fi
[1230]666
667 # determine which filesystem to use for initrd image: ext2fs, gzip'ed cpio (initramfs ) or cramfs
[1730]668 if [ `echo $lvScanRes | grep -Ec "$lcMagicExt2fs"` -eq 1 ]; then
[1230]669 lvUseFilesystem="ext2fs"
[1730]670 elif [ `echo $lvScanRes | grep -Ec "$lcMagicInitfs"` -eq 1 ]; then
[1230]671 lvUseFilesystem="initramfs"
[1730]672 elif [ `echo $lvScanRes | grep -Ec "$lcMagicCramfs"` -eq 1 ]; then
[1230]673 lvUseFilesystem="cramfs"
674 else
675 lvUseFilesystem="UNSUPPORTED"
676 fi
677
678 # say what we are using
679 echo " GetInitrdFilesystemToUse(): Filesytem to use for initrd is $lvUseFilesystem.\n" >> $LOGFILE
680
681 # return file system to use
682 echo "$lvUseFilesystem"
683
684}
685
[747]686# Searches parent raid device of given disk device
687# $1: disk device (i.e. /dev/hda1)
688GetParentRaidDev() {
689 $AWK "/^[[:space:]]*#/ {next} /^[[:space:]]*raiddev/ {dev=\$2} /^[[:space:]]*device/ {if(\$2==\"$1\") {print dev; exit}}" < /etc/raidtab
690}
691
692
693# Searches members of raid device
694# $1: raid device (/dev/md...)
695GetRaidDevMembers() {
696 $AWK "/^[[:space:]]*#/ {next} /^[[:space:]]*raiddev/ {if(dev) exit; if(\$2 == \"$1\") dev=\$2} /^[[:space:]]*device/ {if(dev) {print \$2}}" < /etc/raidtab
697}
698
699
700HackPathsToFailsafe() {
701 local incoming newpath kver stub i pwd
702 kver=`uname -r`
703 incoming=`ReadLine`
704 pwd=`pwd`
[940]705 cd $MINDI_TMP
[747]706 while [ "$incoming" != "" ] ; do
[925]707 stub=`basename $incoming`
708 newpath=`FindSpecificModuleInPath lib/modules/$FAILSAFE_KVER $stub`
709 for i in $newpath ; do
710 echo "$i"
711 done
712 read incoming
[747]713 done
714 cd $pwd
715}
716
717
718ListAllPartitions() {
719 local res currline partition all_partitions ap_orig remaining i j
720
[2024]721 grep -Evx " *#.*| *none.*" $MY_FSTAB | $AWK '/^\/dev\/[imhs]d||^LABEL=\/|^UUID=/ && !/fdd|cdr|zip|floppy/ {print $1}'
[747]722 [ -e "/etc/raidtab" ] && $AWK '/^ *device/ {print $2}' /etc/raidtab
[1824]723 if [ -e "/vmfs/volumes" ]; then
724 # For VMWare ESX 3 get the device names of these volumes
725 vdf -P | grep -E '/vmfs/volumes' | awk '{print $1}'
726 fi
[747]727 return
728}
729
730
731ListImagesForUser() {
732 local path fname
[1983]733 path=$MINDI_CACHE
[747]734 echo -en "In the directory '$path' you will find the images:-\n"
735 for fname in `ls $path | grep -F mindi-` ; do
736 printf "%19s " $fname
737 done
738 echo " "
739}
740
741
742ListKernelModulePaths() {
743 local module_list module fname oss r kern
744 oss="/root/oss/modules"
[1399]745 module_list="$MODULES"
[1230]746 # Remove unwanted modules from list
747 for i in $DENY_MODS; do
748 module_list=`echo ${module_list} | tr ' ' '\n' | grep -Ev "^${i}$" | tr '\n' ' '`
[1726]749 EXTRA_MODS=`echo ${EXTRA_MODS} | tr ' ' '\n' | grep -Ev "^${i}$" | tr '\n' ' '`
[1230]750 done
[747]751###
752### Sq-Modification ... Use kernelname for module search path if specified
753###
754 # kern="`uname -r`"
755 if [ "${kernelname}" != "" -a "${kernelname}" != "FAILSAFE" ]
756 then
757 kern=${kernelname}
758 else
759 kern="`uname -r`"
760 fi
761###
762### Sq-Mod End
763###
764 for module in $module_list $EXTRA_MODS ; do
765 r=`find /lib/modules/$kern -type f | grep "/${module}\..*o" | tail -n1`
766 echo "module $module --> $r" >> $LOGFILE
767 [ "$r" ] && echo "$r"
768 [ -f "$oss" ] && find $oss | grep -F $module
769 done
770 find /lib/modules/$kern/modules.* -type f 2> /dev/null
771 [ -f "$oss" ] && find $oss.* 2> /dev/null
772}
773
[1784]774#
775# Critical function which computes all dependencies (dyn. lib.)
776# for a list of binaries
777#
[747]778LocateDeps() {
779 local incoming fname deps
[1724]780 incoming="$*"
[747]781 for fname in $incoming ; do
782 if [ ! -e "$fname" ] ; then
[963]783 echo "WARNING - $fname does not exist; cannot be LDD'd." >> $LOGFILE
[747]784 if echo $fname | grep lvm &> /dev/null ; then
785 echo "This warning only affects you if you are using LVM." >> $LOGFILE
[1399]786 if echo "$MODULES" | grep lvm &> /dev/null ; then
[747]787 echo "I think you are, so please take heed!" >> $LOGFILE
788 else
789 echo "I don't think you are, so don't worry about it." >> $LOGFILE
790 fi
791 fi
792 elif [ -h "$fname" ] && [ -x "$fname" ] ; then
793 echo "$fname is softlink" >> $LOGFILE
794 else
[1526]795 ldd $fname 2> /dev/null | ProcessLDD
[747]796 fi
797 done
798}
799
[925]800
[860]801# Give all symlinks recursively of a full path name
802ReadAllLink() {
803 file="$1"
[747]804
[1883]805 echo "$file"
[860]806 if [ ! -h $file ]; then
807 return 0
808 fi
[747]809
[1883]810 link=`readlink $file`
[862]811 d=`dirname $file`
[1883]812 fchar=`echo $link | cut -c1`
813 # If mother dir is a link print it
[1230]814 if [ -h "$d" ]; then
[1784]815 echo "$d"
[1883]816 d=`readlink $d`
817 fi
818 if [ "$fchar" != "/" ]; then
819 # Relative or local link
820 ReadAllLink "$d/$link"
[860]821 else
[1883]822 # Absolute path
823 ReadAllLink $link
[1230]824 fi
[860]825}
826
[925]827
[747]828LocateFile() {
829 local i path fname_to_find location output resolved tmp stub cache_id loclist
830 fname_to_find="$1"
[1526]831 # It's an absolute path
[747]832 if echo "$fname_to_find" | grep -x "/.*" ; then
[859]833 output="$fname_to_find"
[860]834 if [ -h "$output" ] ; then
835 output="`ReadAllLink $output` $output"
836 fi
[859]837 echo "$output"
838 return 0
[747]839 fi
[1526]840 # It's not an absolute path
[747]841 output=""
[1526]842 for path in /etc /usr /usr/bin /usr/sbin /bin /usr/X11R6/bin /sbin /usr/local/bin /usr/local/sbin `find /usr/lib /lib /usr/local/lib /usr/X11R6/lib /usr/lib64 /lib64 /usr/local/lib64 /usr/X11R6/lib64 -type d -maxdepth 1 2> /dev/null` ; do
843 #for path in /etc /usr /usr/bin /usr/sbin /bin /usr/X11R6/bin /sbin /usr/local/bin /usr/local/sbin /usr/lib /usr/lib64 /usr/lib64/* /lib /lib64 /lib64/* /usr/local/lib /usr/local/lib64 /usr/local/lib64/* /usr/X11R6/lib /usr/X11R6/lib64 /usr/X11R6/lib64/* ; do
844 [ -h "$path" ] && continue
845 [ ! -e "$path/$fname_to_find" ] && continue
846 output="$path/$fname_to_find $output"
847 if [ -h "$path/$fname_to_find" ] ; then
848 output="`ReadAllLink $path/$fname_to_find` $output"
849 fi
[747]850 done
851 if [ "$output" = "" ] ; then
[860]852 return 1
[747]853 fi
854 echo "$output"
855 return 0
856}
857
858
859LogIt() {
860 if [ -e /dev/stderr ] ; then
[925]861 echo -e "$1" >> /dev/stderr
[747]862 elif [ -e /usr/bin/logger ] ; then
[925]863 /usr/bin/logger -s $1
[747]864 fi
[965]865 echo -e "$1" >> $LOGFILE
[747]866}
867
868
869# Called by TurnTgzIntoRdz, to make /tmp/mondo-restore.cfg
870MakeMondoConfigFile() {
871 local outfile use_lzo use_comp use_star
872 outfile=$1
873 > $outfile
874 [ "$TAPESIZE" ] && echo "media-size $TAPESIZE" >> $outfile
875 [ "$TAPEDEV" ] && echo "media-dev $TAPEDEV" >> $outfile
[1698]876 [ "$USBDEVICE" ] && echo "usb-dev $USBDEVICE" >> $outfile
[747]877 [ "$FILES_IN_FILELIST" ] && echo "files-in-filelist $FILES_IN_FILELIST" >> $outfile
878 [ "$LAST_FILELIST_NUMBER" ] && echo "last-filelist-number $LAST_FILELIST_NUMBER" >> $outfile
879 [ "$INTERNAL_TAPE_BLOCK_SIZE" ] && echo "internal-tape-block-size $INTERNAL_TAPE_BLOCK_SIZE" >> $outfile
880 use_lzo=$USE_LZO; [ "$use_lzo" = "" ] && use_lzo="no"
[998]881 use_gzip=$USE_GZIP; [ "$use_gzip" = "" ] && use_gzip="no"
[747]882 use_comp=$USE_COMP; [ "$use_comp" = "" ] && use_comp="yes"
883 use_star=$USE_STAR; [ "$use_star" = "" ] && use_star="no"
884 echo "use-lzo $use_lzo" >> $outfile
[998]885 echo "use-gzip $use_gzip" >> $outfile
[747]886 echo "use-star $use_star" >> $outfile
887 echo "use-comp $use_comp" >> $outfile
888 echo "datestamp `date`" >> $outfile
889 [ "$ESTIMATED_TOTAL_NOOF_SLICES" ] && echo "total-slices $ESTIMATED_TOTAL_NOOF_SLICES" >> $outfile
[940]890 AddFileToCfgIfExists $MINDI_TMP/NFS-CLIENT-IPADDR nfs-client-ipaddr $outfile
891 AddFileToCfgIfExists $MINDI_TMP/NFS-CLIENT-NETMASK nfs-client-netmask $outfile
892 AddFileToCfgIfExists $MINDI_TMP/NFS-CLIENT-BROADCAST nfs-client-broadcast $outfile
893 AddFileToCfgIfExists $MINDI_TMP/NFS-CLIENT-DEFGW nfs-client-defgw $outfile
894 AddFileToCfgIfExists $MINDI_TMP/NFS-SERVER-MOUNT nfs-server-mount $outfile
895 AddFileToCfgIfExists $MINDI_TMP/NFS-SERVER-PATH nfs-server-path $outfile
896 AddFileToCfgIfExists $MINDI_TMP/NFS-DEV nfs-dev $outfile
897 AddFileToCfgIfExists $MINDI_TMP/NFS-SERVER-IPADDR nfs-server-ipaddr $outfile
898 AddFileToCfgIfExists $MINDI_TMP/ISO-DEV iso-dev $outfile
899 AddFileToCfgIfExists $MINDI_TMP/ISO-MNT iso-mnt $outfile
900 AddFileToCfgIfExists $MINDI_TMP/ISO-PREFIX iso-prefix $outfile
901 AddFileToCfgIfExists $MINDI_TMP/ISODIR isodir $outfile
902 AddFileToCfgIfExists $MINDI_TMP/BOOTLOADER.DEVICE bootloader.device $outfile
903 AddFileToCfgIfExists $MINDI_TMP/BOOTLOADER.NAME bootloader.name $outfile
904 AddFileToCfgIfExists $MINDI_TMP/KEYMAP-LIVES-HERE keymap-lives-here $outfile
905 AddFileToCfgIfExists $MINDI_TMP/TAPEDEV-HAS-DATA-DISKS tapedev-has-data-disks $outfile
906 AddFileToCfgIfExists $MINDI_TMP/BACKUP-MEDIA-TYPE backup-media-type $outfile
907 AddFileToCfgIfExists $MINDI_TMP/DIFFERENTIAL differential $outfile
[949]908 AddFileToCfgIfExists $MINDI_TMP/ACL acl $outfile
909 AddFileToCfgIfExists $MINDI_TMP/XATTR xattr $outfile
[1948]910 AddFileToCfgIfExists $MINDI_TMP/OBDR obdr $outfile
[747]911}
912
913
914MakeMountlist() {
915 local scratchdir mountlist all_partitions current_partition \
916partition_size partition_format outstring partition_number \
917partition_mountpt c_p lwm_info psz lvm_dev unofficial_outstring \
[2013]918absolute_partition old_partition_fmt current_lvolume uname skip
[747]919
[967]920 echo "Your raw fstab file looks like this:" >> $LOGFILE
921 echo "------------------------------------" >> $LOGFILE
[747]922 cat $MY_FSTAB >> $LOGFILE
[967]923 echo "Your mountlist will look like this:" | tee -a $LOGFILE
924 echo "-----------------------------------" >> $LOGFILE
[747]925
926# scratchdir, mountlist(OUT)
[940]927 scratchdir=$MINDI_TMP
[747]928 mountlist=$1
929
930# NB: partition = device
931# NB: mountpt = where the device is mounted
932
933 [ -e "$MY_FSTAB" ] || Die "Cannot find your fstab file ($MY_FSTAB)"
934
[1684]935 [ "$mountlist" != "" ] && rm -Rf $mountlist
[747]936 > $mountlist
937 all_partitions=""
938
939 if [ $LVM != "false" ]; then
[1885]940 echo -en "Analyzing LVM...\n"
[968]941 $MINDI_LIB/analyze-my-lvm > $MINDI_TMP/lvm.res
[971]942 if [ $? -ne 0 ]; then
[963]943 LVM="false"
944 fi
[968]945 all_partitions=`cat $MINDI_TMP/lvm.res | grep -F ">>>" | cut -d' ' -f2-32`
[747]946 fi
947 all_partitions="$all_partitions `ListAllPartitions 2> /dev/null`"
948# echo "all partitions = $all_partitions" > /dev/stderr
949 for i in $IMAGE_DEVS ; do
950 mount | grep -F "$i " > /dev/null 2> /dev/null && Die "Sorry, $i is already mounted! CANNOT DO IMAGEDEV on it if it's mounted."
951 done
952 [ "$IMAGE_DEVS" != "" ] && all_partitions="`echo "$all_partitions $IMAGE_DEVS" | tr ' ' '\n' | sort -u | tr '\n ' ' '`"
[1755]953 printf " %-15s %-15s %-15s %-15s %-15s\n" DEVICE MOUNTPOINT FORMAT "SIZE (MB)" LABEL/UUID | tee -a $LOGFILE
[747]954 useless_dev="/dev/floppy /dev/fd0h1440 /dev/fd0H1440 /dev/cdrom /dev/cdrom/cdrom /dev/cdrom/cdrom1 /dev/cdrom/cdrom2 /dev/cdrom0 /dev/cdrom1 /dev/cdrom2 /dev/cdrom3 /dev/cdrw /dev/scd /dev/ram :/ /dev/sr0 /dev/sr1 /dev/cdrom1"
955 for c_p in $all_partitions ; do
956 [ "`echo "$useless_dev" | grep -F "$c_p"`" != "" ] || [ "`echo "$c_p" | grep ":"`" != "" ] && continue
957 [ "`echo "$c_p" | grep -x "/dev/cdroms.*"`" ] && continue
958 if [ -h "$c_p" ] && [ "`echo "$c_p" | grep -F "/dev/hd"`" = "" ] && [ "`echo "$c_p" | grep -F "/dev/sd"`" = "" ] && [ "`echo "$c_p" | grep -F "/dev/md"`" = "" ] ; then
[861]959 current_partition=`readlink -f $c_p`
[747]960 [ "`echo "$current_partition" | grep -F "/dev/mapper"`" != "" ] && current_partition="$c_p"
961 [ "`echo "$useless_dev" | grep -F "$current_partition"`" ] && continue
962 else
963 current_partition="$c_p"
964 fi
965 [ "$c_p" = "none" ] && continue
966 redhat_label=""
[1831]967 label=""
[957]968 uuid=""
[861]969 absolute_partition=`readlink -f $c_p`
[747]970 partition_mountpt=`tr -s '\t' ' ' < $MY_FSTAB | /bin/grep -w "$current_partition" | /bin/grep -vx " *#.*" | $AWK '{print $2}' | head -n1`
971
972 # Detects noauto partitions not mounted and exclude them
973 partition_option=`tr -s '\t' ' ' < $MY_FSTAB | /bin/grep -w "$current_partition" | /bin/grep -vx " *#.*" | $AWK '{print $4}' | head -n1`
974 if [ "`echo "$partition_option" | grep -i noauto`" != "" ] && [ "`mount | grep -w "$partition_mountpt"`" = "" ] ; then
975 continue
976 fi
977
[1986]978 # set default in case we dont't find it
979 str_to_find_fmt_with=$current_partition
980
[747]981 # This part tries to retrieve the correct device from a LABEL line in /etc/fstab
982 # current_partition contains only first column of /etc/fstab
983 if [ "`echo "$current_partition" | /bin/grep -i "LABEL="`" != "" ]; then
[980]984 redhat_label=`echo "$current_partition" | cut -d'=' -f2`
[747]985 actual_dev=""
[853]986
987 # 1st try, findfs - the RHEL way of finding labels and their partitions
988 if [ -x "/sbin/findfs" ]; then
[855]989 actual_dev=`/sbin/findfs LABEL=${redhat_label} 2> /dev/null`
[853]990 fi
[747]991
[853]992 # 2nd try : blkid, the good way for all LABEL except swap
993 if [ "x$actual_dev" = "x" -a -x "/sbin/blkid" ]; then
[980]994 actual_dev=`/sbin/blkid | /bin/grep "$redhat_label" | grep LABEL= | cut -d':' -f1`
[747]995 # For LVM FS it will give a /dev/dm-# which should then be converted
[748]996 if [ $LVM = "v2" ] && [ "`echo $actual_dev | grep '/dev/dm'`" ]; then
[963]997 major=`/bin/ls -l $actual_dev | $AWK '{print $5}'`
998 minor=`/bin/ls -l $actual_dev | $AWK '{print $6}'`
[747]999 for dev in `ls /dev/mapper/*`; do
[963]1000 major1=`/bin/ls -l $dev | $AWK '{print $5}'`
1001 minor1=`/bin/ls -l $dev | $AWK '{print $6}'`
[747]1002 if [ $major1 = $major ] && [ $minor1 = $minor ]; then
[963]1003 actual_dev=`/bin/ls -l $dev | $AWK '{print $10}'`
[747]1004 break
1005 fi
1006 done
1007 fi
1008 fi
1009
[853]1010 # 3rd try, which works on a standard partition (ext2/3), but not on swap
[747]1011 # For LVM gives a /dev/mapper entry
1012 if [ "x$actual_dev" = "x" ]; then
[980]1013 actual_dev=`/bin/mount -l | /bin/grep "\[$redhat_label\]" | cut -d' ' -f1`
[747]1014 fi
1015
[853]1016 # 4th try, with vol_id
[747]1017 # SWAP only
1018 if [ "x$actual_dev" = "x" -a -x "/sbin/vol_id" ]; then
[963]1019 list_swaps=`cat /proc/swaps | /bin/grep "/dev/" | $AWK '{ print $1 }' `
[747]1020 for dev_swap in $list_swaps ; do
1021 dev_exists=`/sbin/vol_id $dev_swap | /bin/grep "$redhat_label"`
1022 if [ "x$dev_exists" != "x" ]; then
1023 actual_dev=$dev_swap
1024 break;
1025 fi
1026 done
1027 fi
1028
[853]1029 # 5th try : pre-formated LABEL. Format is : LABEL=SWAP-mydevice or SW-mydevice. e.g. : LABEL=SWAP-hda5
[789]1030 # LABEL=SW-cciss/c0d0p3 (RDP)
[853]1031 # or could be a string that isn't a complete device name (eg. LABEL =SWAP-cciss/c0d0p)
[747]1032 # SWAP only
[789]1033 if [ "x$actual_dev" = "x" -a _"`echo $current_partition | /bin/grep -iE 'LABEL=SWAP|LABEL=SW-'`" != _"" ]; then
[2013]1034 skip=""
1035 uname="`uname -r`"
1036 [ "`echo $uname | grep "2.4.[0-9]"`" != "" ] && skip=16
1037 # 2.6.12 needs 16 (FC3)
1038 [ "`echo $uname | grep "2.6.[0-1]"`" != "" ] && skip=16
1039 # 2.6.19 and upper needs 1052
1040 [ "`echo $uname | grep "2.6.19"`" != "" ] && skip=1052
1041 [ "`echo $uname | grep "2.6.[2-9]"`" != "" ] && skip=1052
1042 if [ $skip = "" ]; then
1043 Die "Your kernel is too old. I don't know how to support labelled swap spaces with it"
1044 fi
[853]1045 for try_dev in `tail +2 /proc/swaps | cut -d' ' -f1`
1046 do
1047 # Location of the swap label for kernel 2.6
[2013]1048 try_dev_label=`dd bs=1 count=16 skip=$skip if=$try_dev 2> /dev/null`
[853]1049 if [ "x$try_dev_label" = "x$redhat_label" ]; then
[855]1050 actual_dev=$try_dev
[853]1051 fi
1052 done
[747]1053 fi
[1008]1054
1055 # Check if one of all those tries has known success
1056 if [ "x$actual_dev" != "x" ]; then
1057 current_partition=$actual_dev
1058 else
[1885]1059 Die "Your system uses a LABEL partition ($current_partition), but you lack the tool to support it.\nPlease replace labels with their correct devices in $MY_FSTAB or install findfs|blkid|vol_id"
[1008]1060 fi
[957]1061 # This part tries to retrieve the correct device from a UUID line in /etc/fstab
1062 # current_partition contains only first column of /etc/fstab
[1009]1063 elif [ "`echo "$current_partition" | /bin/grep -i "UUID="`" != "" ]; then
[980]1064 uuid=`echo "$current_partition" | cut -d'=' -f2`
[957]1065 actual_dev=""
1066
1067 # 1st try, findfs - the RHEL way of finding labels and their partitions
1068 if [ -x "/sbin/findfs" ]; then
1069 actual_dev=`/sbin/findfs UUID=${uuid} 2> /dev/null`
1070 fi
1071
[1531]1072 # 2nd try : blkid, the good way for all UUID except swap
[957]1073 if [ "x$actual_dev" = "x" -a -x "/sbin/blkid" ]; then
[980]1074 actual_dev=`/sbin/blkid | /bin/grep "$uuid" | grep UUID= | cut -d':' -f1`
[957]1075 # For LVM FS it will give a /dev/dm-# which should then be converted
1076 if [ $LVM = "v2" ] && [ "`echo $actual_dev | grep '/dev/dm'`" ]; then
[963]1077 major=`/bin/ls -l $actual_dev | $AWK '{print $5}'`
1078 minor=`/bin/ls -l $actual_dev | $AWK '{print $6}'`
[957]1079 for dev in `ls /dev/mapper/*`; do
[963]1080 major1=`/bin/ls -l $dev | $AWK '{print $5}'`
1081 minor1=`/bin/ls -l $dev | $AWK '{print $6}'`
[957]1082 if [ $major1 = $major ] && [ $minor1 = $minor ]; then
[963]1083 actual_dev=`/bin/ls -l $dev | $AWK '{print $10}'`
[957]1084 break
1085 fi
1086 done
1087 fi
1088 fi
1089
1090 # 3th try, with vol_id
1091 if [ "x$actual_dev" = "x" -a -x "/sbin/vol_id" ]; then
[963]1092 list_dev=`mount | /bin/grep -E '^/' | $AWK '{ print $1 }' `
[957]1093 for dev in $list_dev ; do
1094 dev_exists=`/sbin/vol_id $dev | /bin/grep "$uuid"`
1095 if [ "x$dev_exists" != "x" ]; then
1096 actual_dev=$dev
1097 break;
1098 fi
1099 done
1100 fi
1101
[1531]1102 # 4th try, with dumpuuid (VMWare only ?) for swap
1103 if [ "x$actual_dev" = "x" -a -x "/sbin/dumpuuid" ]; then
1104 list_dev=`cat /proc/swaps | /bin/grep -E '^/' | $AWK '{ print $1 }' `
1105 for dev in $list_dev ; do
1106 dev_exists=`/sbin/dumpuuid $dev | /bin/grep "$uuid"`
1107 if [ "x$dev_exists" != "x" ]; then
1108 actual_dev=$dev
1109 break;
1110 fi
1111 done
1112 fi
1113
[747]1114 # Check if one of all those tries has known success
1115 if [ "x$actual_dev" != "x" ]; then
1116 current_partition=$actual_dev
1117 else
[1315]1118 Die "Your system uses a UUID partition ($current_partition), but you lack the tool to support it.\nPlease replace labels with their correct devices in $MY_FSTAB or install findfs|blkid|vol_id"
[747]1119 fi
1120 else
[1863]1121 # Needs to handle the recent OpenSUSE fancy way of dealing with fstab :-(
1122 # they use symlinks in fstab unrelated to what is shown in mount !
1123 if [ _"$partition_mountpt" = _"" ]; then
[1986]1124 # set default in case we dont't find it
[1863]1125 for tmpp in `tr -s '\t' ' ' < $MY_FSTAB | /bin/grep -Ev "^#" | $AWK '{print $1}'`; do
[1864]1126 if [ _"`readlink -f $tmpp`" = _"$current_partition" ]; then
[1863]1127 str_to_find_fmt_with=$tmpp
[1865]1128 partition_mountpt=`tr -s '\t' ' ' < $MY_FSTAB | /bin/grep -w "$tmpp" | /bin/grep -vx " *#.*" | $AWK '{print $2}' | head -n1`
[1864]1129 break;
[1863]1130 fi
1131 done
1132 fi
[747]1133 fi
1134
1135 partition_format=`$AWK '$1 == "'"$str_to_find_fmt_with"'" {print $3}' $MY_FSTAB`
1136 # Some distributions such as Debian do not put /dev/<VG>/<LV> in fstab
1137 # for LVM partitions but use /dev/mapper/<VG>-<LV> instead. Fortunately,
1138 # the former is then a link to the latter, so we test whether
1139 # $current_partition is actually such a link or not and set
[755]1140 # $current_lvolume accordingly. On Debian you may find more than one answer
1141 # so we remove the one corresponding to /dev/.static
1142 # On RedHat even if the device name is different (/dev/mapper/<VG><LV>), the
1143 # principle is the same and we need to find the link to it as well.
1144 # Note that $current_lvolume may well be an
[747]1145 # ordinary device. It is just to make sure that we feed the right value
1146 # into any of the LVM tools if possible.
1147
1148 current_lvolume="$current_partition"
[763]1149 if [ $LVM = "v2" ] && [ "`echo $current_partition | grep -E '^/dev/mapper/'`" ]; then
[755]1150 # .static dir are a Debian specificity
[763]1151 current_lvolume="`find /dev -lname "$current_partition" | grep -Ev '^/dev/\.static/'`"
[755]1152 echo $current_lvolume | grep -q ' '
[784]1153 if [ $? -eq 0 ]; then
[755]1154 echo "WARNING: Multiple Logical Volumes found. Report to dev team" >> $LOGFILE
1155 fi
[747]1156 fi
1157 #
1158 # End of LVM device style variation code (other than $current_lvolume).
1159
[745]1160 if [ $LVM != "false" ] && [ "`$LVMCMD lvdisplay $current_lvolume 2> /dev/null`" ]; then
1161 # Size computed via LVM not directly
[747]1162 partition_size="lvm"
1163 else
1164 partition_size=`SizeOfPartition $current_partition`
1165 [ "`echo "$current_partition" | grep "[0-9]"`" = "" ] && continue
1166 [ "`echo "$current_partition" | grep -c "^/"`" -ne "1" ] && continue
1167 if [ "$partition_format" = "swap" ] || [ "$partition_mountpt" = "swap" ] ; then
1168 partition_size=`grep -Fv "Priority" /proc/swaps | tr -s '\t' ' ' | grep -F "$current_partition" | $AWK '{print $3}'`
1169 [ "$partition_mountpt" != "swap" ] && partition_mountpt="swap"
1170 [ "$partition_format" != "swap" ] && partition_format="swap"
1171 if [ "$partition_size" = "" ] ; then
1172 totalsize=0
1173 items=0
1174 for i in `tr -s ' ' '\t' < /proc/swaps | grep -Fv "Filename" | cut -f3` ; do
1175 totalsize=$(($totalsize+$i))
1176 items=$(($items+1))
1177 done
1178 [ "$items" -gt "0" ] && partition_size=$(($totalsize/$items)) || partition_size=0
1179 [ "$partition_size" -lt "125000" ] && partition_size=125000
1180 echo "I'm guessing $c_p is $(($partition_size/1024))MB" >> $LOGFILE
1181 fi
1182 fi
1183 fi
1184 [ "$partition_mountpt" = "swap" ] && partition_format="swap"
1185 [ "$partition_format" = "swap" ] && partition_mountpt="swap"
1186 if [ "$partition_mountpt" = "" ] ; then
1187 if [ "`$LVMCMD pvdisplay $current_lvolume 2> /dev/null`" != "" ] ; then
1188 if [ "`grep -F device /etc/raidtab 2> /dev/null | grep -w $current_partition`" ] ; then
1189 partition_mountpt="raid"
1190 partition_format="raid"
1191 else
1192 partition_mountpt="lvm"
1193 partition_format="lvm"
1194 fi
1195 fi
1196 fi
1197 psz=$partition_size
1198 echo "Examining $current_partition (mount=$partition_mountpt fmt=$partition_format psz=$psz)" >> $LOGFILE
1199 [ "$psz" != "lvm" ] && psz=$(($psz/1024))
1200 if [ "`echo " $IMAGE_DEVS " | grep -F " $current_partition "`" != "" ] ; then
1201 partition_mountpt="image"
1202 old_partition_fmt=$partition_format
1203 partition_format="`$FDISK -l 2>> $LOGFILE | tr '*' ' ' | tr '+' ' ' | tr -s ' ' '\t' | grep -w "$absolute_partition" | cut -f5`"
1204 partition_size=$(($partition_size+1)); # just in case
1205 if [ "$partition_format" = "Linux" ] ; then
1206 echo "Are you imaging a mounted swap partition? Silly..." >> $LOGFILE
1207 echo "Reverting format from $old_partition_fmt to $partition_format" >> $LOGFILE
1208 partition_format=$old_partition_fmt
1209 fi
1210 fi
1211 if [ "$EXCLUDE_DEVS" ] && [ "`echo " $EXCLUDE_DEVS " | grep -F " $current_partition "`" ] || [ "`echo " $EXCLUDE_DEVS " | grep " $current_partition "`" ] ; then
1212 echo "Excluding $current_partition from mountlist" >> $LOGFILE
1213 continue
1214 fi
1215 if [ ! "$partition_mountpt" ] ; then
[965]1216 echo "------- $FDISK -l $qq log ------------" >> $LOGFILE
[1883]1217 for qq in "" `find /dev/ida/c*d* ! -name '*p*' 2> /dev/null`; do
[747]1218 partition_format=`$FDISK -l $qq 2>> $LOGFILE | grep -w "$c_p" | sed 's/12/|/' | tr -s '\t' ' ' | cut -d'|' -f2 | cut -d' ' -f2-9`
1219 [ "$partition_format" ] && break
1220 done
[965]1221 echo "------- $FDISK log end ------------" >> $LOGFILE
[747]1222 if [ "$partition_format" = "Compaq diagnostics" ] ; then
1223 partition_format="compaq"
1224 elif [ ! "`grep -F device /etc/raidtab 2> /dev/null | grep -w $current_partition`" ] ; then
[963]1225 LogIt "Unable to find mountpoint of $current_partition - ignoring"
[747]1226 continue
1227 fi
1228 fi
[1755]1229 if [ "$redhat_label" ]; then
1230 label="$redhat_label"
[1756]1231 elif [ "$uuid" ]; then
[1755]1232 label="$uuid"
1233 fi
[747]1234 partition_format="`echo "$partition_format" | cut -d',' -f1`"; # in case user has ext3,ext2 or something dumb like that
[963]1235 [ "$partition_format" = "auto" ] && partition_format="`mount | grep -w $current_partition | $AWK '{print$5;}'`"; # in case user uses 'auto' (dumb!)
[1755]1236 unofficial_outstring=`printf "\t%-15s %-15s %-15s %7s %-15s\n" $current_partition $partition_mountpt $partition_format $psz "$label"`
[747]1237 if [ "$current_partition" = "" ] ; then
1238 echo "Unknown partition (outstring = $unofficial_outstring)" >> $LOGFILE
1239 elif [ "$partition_mountpt" = "" ] && [ -f "/etc/raidtab" ] ; then
1240 if [ "`grep -F device /etc/raidtab 2>/dev/null | grep -F $current_partition`" ] ; then
1241 partition_mountpt=raid
1242 partition_format=raid
[1755]1243 printf "\t%-15s %-15s %-15s %7s %-15s\n" $current_partition $partition_mountpt $partition_format $psz "$label" | tee -a $LOGFILE
1244 printf "%s %s %s %s %s %s\n" $current_partition $partition_mountpt $partition_format $partition_size "$label" >> $mountlist
[747]1245 else
1246 echo "Unknown mountpoint (outstring = $unofficial_outstring)" >> $LOGFILE
1247 fi
1248 elif [ "$partition_format" = "" ] ; then
1249 echo "Unknown format (outstring = $unofficial_outstring)" >> $LOGFILE
1250 elif [ "$partition_size" = "" ] ; then
1251 echo "Unknown partition size (outstring = $unofficial_outstring)" >> $LOGFILE
1252 elif [ "$partition_mountpt" = "/proc" ] || [ "$partition_mountpt" = "/dev/pts" ] ; then
1253 continue
1254 else
1255 if [ "$partition_format" = "dos" ] || [ "$partition_format" = "msdos" ] ; then
1256 echo "Stupid bastard..." >> $LOGFILE
1257 partition_format="vfat"
1258 fi
[1755]1259 printf "\t%-15s %-15s %-15s %7s %-15s\n" $current_partition $partition_mountpt $partition_format $psz "$label" | tee -a $LOGFILE
1260 printf "%s %s %s %s %s\n" $current_partition $partition_mountpt $partition_format $partition_size "$label" >> $mountlist
[747]1261 fi
1262 done
1263}
1264
1265
1266MakeSureNumberIsInteger() {
1267 res=`echo "$1" | tr -s '\-[0-9]' ' '`
1268 if [ "$res" != " " ] && [ "$res" != "" ] ; then
1269 echo "result = '$res'"
1270 Die "$1 should be an integer"
1271 fi
1272}
1273
1274
1275OfferToMakeBootableISO() {
1276 local i old_pwd
[1684]1277 if [ "$PROMPT_MAKE_CD_IMAGE" = "yes" ] && [ _"$MONDO_SHARE" = _"" ]; then
[966]1278 echo -en "Shall I make a bootable CD image? (y/[n]) "
[747]1279 read i
1280 [ "$i" != "y" ] && [ "$i" != "Y" ] && return 0
1281 fi
[1885]1282 if [ _"$MINDI_TMP" = _"" ]; then
1283 Die "MINDI_TMP undefined"
[747]1284 fi
[940]1285 rm -Rf $MINDI_TMP/iso
[1983]1286 mkdir -p $MINDI_TMP/iso/{images,archives}
1287 cp -f $MINDI_CACHE/*.gz $MINDI_TMP/iso/images 2>> $LOGFILE || LogIt "OfferToMakeBootableISO: Cannot copy $MINDI_CACHE/*.gz to $MINDI_TMP/iso/images"
[747]1288 echo "mindi_lib = $MINDI_LIB" >> $LOGFILE
1289 for i in memdisk memtest.bin memtest.img ; do
[953]1290 j=$MINDI_LIB/$i
[1983]1291 k=$MINDI_TMP/iso
[953]1292 if [ -e "$j" ] ; then
[963]1293 LogIt "Copying $j to $k"
[953]1294 cp -f $j $k 2> /dev/null || Die "Failed to copy $j to $k"
1295 cp -f $j $MINDI_TMP 2> /dev/null || Die "Failed to copy $j to $MINDI_TMP"
[1885]1296 if [ _"$MONDO_SHARE" != _"" ]; then
1297 cp -f $j $MONDO_ROOT 2>> $LOGFILE || Die "Failed to copy $j to $MONDO_ROOT"
1298 fi
[953]1299 fi
[747]1300 done
[1983]1301 MakeMessageFile > $MINDI_TMP/iso/message.txt
1302 cp $kernelpath $MINDI_TMP/iso/vmlinuz 2>> $LOGFILE || Die "Cannot copy vmlinuz ($kernelpath) to mindi tmp ($MINDI_TMP/iso/vmlinuz). Did you run out of disk space?"
1303 cp $MINDI_TMP/initrd.img $MINDI_TMP/iso/initrd.img 2>> $LOGFILE || Die "Cannot copy initrd.img ($MINDI_TMP/initrd.img) to $MINDI_TMP/iso/initrd.img. Did you run out of disk space?"
[1885]1304 if [ _"$MONDO_SHARE" != _"" ]; then
[1929]1305 cp $kernelpath $MONDO_ROOT/vmlinuz 2>> $LOGFILE || Die "Cannot copy vmlinuz ($kernelpath) to mondo root ($MONDO_ROOT/vmlinuz). Did you run out of disk space?"
[1983]1306 cp $MINDI_TMP/initrd.img $MONDO_ROOT/initrd.img 2>> $LOGFILE || Die "Cannot copy initrd.img ($MINDI_TMP/initrd.img) to $MONDO_ROOT/initrd.img. Did you run out of disk space?"
[1885]1307 fi
[1983]1308 MakeBootConfFile syslinux > $MINDI_TMP/iso/isolinux.cfg
[747]1309 if [ "$ARCH" != "ia64" ] ; then
[1983]1310 cp $ISOLINUX $MINDI_TMP/iso/isolinux.bin 2> /dev/null || Die "Cannot copy isolinux.bin ($ISOLINUX) to $MINDI_TMP/iso - did you run out of disk space?"
[747]1311 fi
[1983]1312 old_pwd=`pwd`
[940]1313 cd $MINDI_TMP/iso
[747]1314 if [ "$ARCH" != "ia64" ] ; then
[1885]1315 if [ _"$MONDO_SHARE" != _"" ]; then
[1983]1316 cp -f $MINDI_TMP/iso/{isolinux.cfg,initrd.img,vmlinuz,isolinux.bin,message.txt} $MONDO_ROOT 2> /dev/null || Die "Cannot copy core files to ramdisk for boot disk (under $MONDO_ROOT). Did you run out of disk space?"
1317 cp -f $MONDO_SHARE/autorun $MINDI_TMP/iso 2>> $LOGFILE
[1885]1318 fi
[1983]1319 $ISO_CMD -U $ISO_OPT -V Mindi_Image -o $MINDI_CACHE/mindi.iso -b isolinux.bin -c boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table . > /dev/null 2> $MINDI_TMP/mkisofs.log
[747]1320 else
[1983]1321 $ISO_CMD $ISO_OPT -V Mindi_Image -o $MINDI_CACHE/mindi.iso -b images/mindi-bootroot.$BOOT_SIZE.img -c images/boot.cat -no-emul-boot . > /dev/null 2> $MINDI_TMP/mkisofs.log
[1950]1322 rm -f images/mindi-bootroot.$BOOT_SIZE.img
[747]1323 fi
1324 if [ "$?" -ne "0" ] ; then
[1885]1325 echo "----------- $ISO_CMD's errors --------------" >> $LOGFILE
[940]1326 cat $MINDI_TMP/mkisofs.log >> $LOGFILE
[1885]1327 echo "$ISO_CMD returned the following errors:-"
[940]1328 cat $MINDI_TMP/mkisofs.log
[963]1329 LogIt "Failed to create ISO image."
[747]1330 else
[1880]1331 echo "Created bootable ISO image at $MINDI_CACHE/mindi.iso" | tee -a $LOGFILE
[747]1332 fi
[940]1333 rm -f $MINDI_TMP/mkisofs.log
[747]1334 cd $old_pwd
1335}
1336
1337
[1684]1338OfferToMakeBootableUSB() {
[2041]1339 local i
[1684]1340 if [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ] && [ _"$MONDO_SHARE" = _"" ]; then
[1786]1341 echo -n "Shall I make a bootable USB image ? (y/[n]) "
[1764]1342 read i
1343 [ "$i" != "y" ] && [ "$i" != "Y" ] && return 0
1344 if [ "$USBDEVICE" = "" ]; then
1345 echo -en "Please enter the device name of your USB device (e.g. /dev/sda) : "
1346 read dev
1347 USBDEVICE=$dev
[1722]1348 fi
[1764]1349 echo "WARNING: This will erase all content on $USBDEVICE"
1350 echo -en "Are you sure you want to use $USBDEVICE (y/[n]) "
[2040]1351 read i
1352 [ "$i" != "y" ] && [ "$i" != "Y" ] && return 0
[1684]1353 fi
1354 if [ _"$MINDI_TMP" = _"" ]; then
1355 Die "MINDI_TMP undefined"
1356 fi
1357 rm -Rf $MINDI_TMP/usb
1358 mkdir -p $MINDI_TMP/usb
1359 USBPART="${USBDEVICE}1"
1360
1361 echo -en "Transforming $USBDEVICE in a Bootable device "
1362 echo -en "."
1363 echo "Transforming $USBDEVICE in a Bootable device" >> $LOGFILE
1364 echo "Checking $USBDEVICE" >> $LOGFILE
[1857]1365 $FDISK -l $USBDEVICE 2>> $LOGFILE 1>> $LOGFILE
[1684]1366 if [ $? -ne 0 ]; then
1367 echo "Unable to access $USBDEVICE" | tee -a $LOGFILE
1368 echo "Make sure your USB device is pluged in" | tee -a $LOGFILE
1369 exit -1
1370 fi
1371 echo -en "."
[1691]1372 echo "Unmounting $USBDEVICE just in case" >> $LOGFILE
[1721]1373 umount $USBPART 2>> $LOGFILE 1>> $LOGFILE
[1684]1374 echo "Erasing $USBDEVICE" >> $LOGFILE
[1721]1375 $FDISK $USBDEVICE 2>> $LOGFILE 1>> $LOGFILE << EOF
[1684]1376d
1377d
1378d
1379d
1380n
1381p
13821
1383
1384
1385t
1386b
1387a
13881
1389w
1390EOF
1391 if [ $? -ne 0 ]; then
1392 echo "Unable to create a vfat Filesystem on $USBDEVICE" | tee -a $LOGFILE
1393 echo "Make sure your USB device is pluged in" | tee -a $LOGFILE
1394 $FDISK -l $USBDEVICE 2>&1 | tee -a $LOGFILE
1395 MindiExit -1
1396 fi
1397 echo -en "."
1398 echo "Creating a vfat filesystem on $USBPART" >> $LOGFILE
[1688]1399 mkdosfs -F 32 $USBPART 2>&1 >> $LOGFILE
[1684]1400 if [ $? -ne 0 ]; then
1401 echo "Unable to create a vfat filesystem on $USBPART" | tee -a $LOGFILE
1402 echo "Make sure your USB device is pluged in and partitioned ($USBPART must exist on it)" | tee -a $LOGFILE
1403 $FDISK -l $USBDEVICE 2>&1 | tee -a $LOGFILE
1404 MindiExit -1
1405 fi
1406 echo -en "."
1407 echo "Mounting $USBPART on $MINDI_TMP/usb" >> $LOGFILE
1408 mount $USBPART $MINDI_TMP/usb 2>> $LOGFILE
1409 if [ $? -ne 0 ]; then
1410 echo "Unable to mount $USBPART on $MINDI_TMP/usb" | tee -a $LOGFILE
1411 echo "Make sure your USB device is pluged in, partitioned and formated ($USBPART must exist on it)" | tee -a $LOGFILE
1412 $FDISK -l $USBDEVICE 2>&1 | tee -a $LOGFILE
1413 MindiExit -1
1414 fi
1415 echo -en "."
[1691]1416 mkdir -p $MINDI_TMP/usb/images
[1983]1417 cp -f $MINDI_CACHE/*.img $MINDI_CACHE/*.gz $MINDI_TMP/usb/images 2>> $LOGFILE || LogIt "OfferToMakeBootableUSB: Cannot copy $i to $MINDI_TMP/usb/images"
[1684]1418 echo -en "."
1419 echo "mindi_lib = $MINDI_LIB" >> $LOGFILE
1420 for i in memdisk memtest.bin memtest.img ; do
1421 j=$MINDI_LIB/$i
1422 k=$MINDI_TMP/usb
1423 if [ -e "$j" ] ; then
1424 LogIt "Copying $j to $k"
1425 cp -f $j $k 2> /dev/null || Die "Failed to copy $j to $k"
1426 cp -f $j $MINDI_TMP 2> /dev/null || Die "Failed to copy $j to $MINDI_TMP"
1427 fi
1428 done
1429 echo -en "."
[1983]1430 MakeMessageFile > $MINDI_TMP/usb/message.txt
[1684]1431 echo -en "."
[1983]1432 cp $kernelpath $MINDI_TMP/usb/vmlinuz 2> /dev/null || Die "Cannot copy vmlinuz ($kernelpath) to mindi tmp ($MINDI_TMP/usb/vmlinuz). Did you run out of disk space?"
[1684]1433 echo -en "."
[1983]1434 cp $MINDI_TMP/initrd.img $MINDI_TMP/usb/initrd.img 2>> $LOGFILE
[1684]1435 echo -en "."
[2041]1436 MakeBootConfFile syslinux > $MINDI_TMP/usb/syslinux.cfg
[1684]1437 echo -en "."
[1721]1438 umount $MINDI_TMP/usb
[1684]1439 if [ "$ARCH" != "ia64" ] ; then
1440 syslinux $USBPART 2>> $MINDI_TMP/syslinux.log
1441 if [ "$?" -ne "0" ] ; then
1442 echo "----------- syslinux's errors --------------" |tee -a $LOGFILE
1443 cat $MINDI_TMP/syslinux.log |tee -a $LOGFILE
1444 LogIt "Failed to create USB image."
1445 else
1446 echo -e "$DONE"
1447 echo "Created bootable USB image on $USBDEVICE" >> $LOGFILE
1448 fi
1449 rm -f $MINDI_TMP/syslinux.log
1450 else
1451 echo "No USB boot support for ia64" | tee -a $LOGFILE
1452 MindiExit -1
1453 fi
1454 echo -en "."
1455}
1456
1457
[747]1458MakeMessageFile() {
[1983]1459 iss="/dev/null"
1460 [ -e /etc/issue ] && iss="/etc/issue"
1461 [ -e /etc/issue.net ] && iss="/etc/issue.net"
1462 if [ "`grep -Fi "debian" $iss 2> /dev/null`" ] ; then
1463 sed s/ZZZZZ/$MINDI_VERSION/ $MINDI_LIB/msg-txt | sed s/YYYYY/"Mondo Rescue"/ | sed s/XXXXX/"a cousin of"/ | sed s%DDDDD%"Debian GNU\/`uname -s` `cut -d ' ' -f 3 $iss` `hostname`"% | sed s/KKKKK/"Kernel `uname -r` on a `uname -m`"/ | sed s/TTTTT/"`LC_TIME=C date`"/ | sed s/%r/"`uname -r`"/ | sed s/%t/"`hostname`"/
[747]1464 else
[1983]1465 sed s/ZZZZZ/$MINDI_VERSION/ $MINDI_LIB/msg-txt | sed s/YYYYY/"Mondo Rescue"/ | sed s/XXXXX/"a cousin of"/ | sed s/DDDDD/"`grep -i "linux" $iss | sed s~/~~ | head -n1 | tr -s ' ' ' '`"/ | sed s/KKKKK/"`grep -i "kernel" $iss | sed s~/~~ | head -n1 | tr -s ' ' ' '`"/ | sed s/TTTTT/"`LC_TIME=C date`"/ | sed s/' 'r' 'on' 'an' 'm/' '`uname -r`' 'on' 'an' '`uname -m`/ | sed s/%r/"`uname -r`"/ | sed s/%t/"`hostname`"/
[747]1466 fi
[1885]1467 if [ _"$MONDO_SHARE" != _"" ]; then
1468 if [ "$CDRECOVERY" != "yes" ] ; then
1469 if [ -e "$MINDI_TMP/NFS-DEV" ] ; then
1470 echo -en "Press <enter> to continue.\n"
1471 elif [ ! "$MINDI_TMP" ] ; then
1472 echo -en "FYI, this is _not_ a Mondo Rescue CD.\n"
[1983]1473 if [ -e "$MINDI_LIB/memtest.img" ] ; then
1474 echo -en "Type 'memtest' <Enter> to test your PC's memory intensively.\nJust press <Enter> to go to the main test menu.\n"
1475 fi
[1885]1476 else
1477 echo -en "$BOOT_MEDIA_MESSAGE"
[747]1478 fi
[1983]1479 else
1480 echo -en "\
[747]1481To restore your disk to factory defaults, type 'RESTORE' <enter>.\n\
1482CAUTION: THIS WILL ERASE YOUR WHOLE DISK !!!\n"
[1983]1483 fi
[747]1484 fi
1485 echo -en "\n\n\n"
1486}
1487
1488
[1983]1489MakeBootConfFile() {
[1885]1490 local options i ooo
[747]1491 options=""
[1983]1492 # Type of boot file (elilo or syslinux/isolinux)
1493 type=$1
1494 if [ "$type" = "elilo" ]; then
1495 sep="="
1496 else
1497 sep=" "
1498 fi
[925]1499
[1983]1500 # Generic header for conf file
1501 if [ "$type" != "elilo" ] ; then
1502 echo -en "prompt 1\ndisplay message.txt\n"
1503 else
1504 echo -en "prompt\n"
[925]1505 fi
[1983]1506
1507 # Compute which default option to boot from
[747]1508 if [ "$CDRECOVERY" = "yes" ] ; then
[1983]1509 echo -en "default${sep}RESTORE\n"
1510 # In case it's mondoarchive
[1885]1511 elif [ _"$MONDO_SHARE" != _"" ]; then
[940]1512 if [ -e "$MINDI_TMP/NFS-DEV" ] ; then
[1983]1513 echo -en "default${sep}iso\n"
[747]1514 else
[1983]1515 echo -en "default${sep}interactive\n"
[747]1516 fi
1517 else
[1983]1518 echo -en "default${sep}expert\n"
[747]1519 fi
1520
[1983]1521 # Handle timeout
[747]1522 if [ "$CDRECOVERY" != "yes" ] ; then
[1983]1523 echo -en "timeout${sep}300\n"
1524 else
1525 echo -en "timeout${sep}10000\n"
[747]1526 fi
1527 echo -en "\n"
[1983]1528
1529 # prepare which labels will be generted
[747]1530 if [ "$CDRECOVERY" = "yes" ] ; then
[925]1531 options="RESTORE expert"
[1885]1532 else
1533 if [ _"$MONDO_SHARE" != _"" ]; then
[940]1534 if [ -e "$MINDI_TMP/NFS-DEV" ] ; then
[747]1535 options="iso"
1536 else
1537 options="interactive expert compare iso nuke isonuke"
1538 fi
1539 else
1540 options="expert"
[925]1541 fi
[747]1542 fi
[1983]1543
1544 # Generate rest of conf file
[747]1545 for i in $options ; do
[925]1546 ooo=$i
1547 [ "$ooo" = "RESTORE" ] && ooo="nuke"
[1983]1548 if [ "$type" = "elilo" ]; then
1549 outstr="image=/vmlinuz\n\tlabel=$i\n\tinitrd=/initrd.img\n\troot=/dev/ram0 append=\" rw ramdisk_size=$ramdisk_size $ooo_mode $ADDITIONAL_BOOT_PARAMS \"\n"
[925]1550 else
[1983]1551 outstr="label $i\n\tkernel /vmlinuz\n\tappend initrd=/initrd.img root=/dev/ram0 rw ramdisk_size=$ramdisk_size ${ooo}_mode $ADDITIONAL_BOOT_PARAMS\n"
[925]1552 fi
[1885]1553 echo -en "$outstr"
[747]1554 done
[1983]1555
1556 if [ -e "$MINDI_LIB/memtest.img" ] ; then
1557 if [ "$type" = "elilo" ]; then
1558 echo -en "image=/memtest.bin\n\tlabel=memtest\n"
1559 echo -en "image=/memdisk\n\tlabel=memtest\nappend=\"initrd=memtest.img\"\n"
1560 else
1561 echo -en "label memtest\n\tkernel /memtest.bin\n"
1562 echo -en "label=memtest\n\tkernel /memdisk\nappend initrd=memtest.img\n"
1563 fi
1564 fi
[747]1565}
1566
1567
1568PrepareBootDiskImage_LILO() {
[1983]1569 local imagesdir dev imagefile mountpoint fname i kernelpath cfg_file testpath options retval outstr old_pwd ooo max_kernel_size liloconf
1570 imagesdir=$MINDI_CACHE
1571 kernelpath=$1
[747]1572
1573 retval=0
1574 [ ! -e "$kernelpath" ] && Die "PBDI - cannot find $kernelpath kernel"
[1885]1575 echo -en "Making "$BOOT_SIZE"KB boot disk..."
[1983]1576 TurnTgzIntoRdz $MINDI_LIB/rootfs $MINDI_TMP/initrd.img `du -sk $kernelpath | cut -f1` || Die "Could not turn rootfs into initrd.img; are you SURE your kernel supports loopfs?"
[747]1577 echo -en "..."
[1885]1578 imagefile=$imagesdir/mindi-bootroot.$BOOT_SIZE.img
[940]1579 mountpoint=$MINDI_TMP/mountpoint.$$
[747]1580 mkdir -p $mountpoint
[1885]1581 dd if=/dev/zero of=$imagefile bs=1k count=$BOOT_SIZE &> /dev/null || Die "Cannot dd blank file"
[1983]1582 mkdosfs $imagefile >> $LOGFILE 2>> $LOGFILE
1583 mount -t vfat -o loop $imagefile $mountpoint || LogIt "Cannot mount (PBDI)"
[964]1584 # copy Mindi's skeleton fs & lilo/syslinux/whatever stuff into it
[747]1585 mkdir -p $mountpoint/etc
[1983]1586 liloconf=$mountpoint/elilo.conf
[747]1587
[1983]1588 MakeBootConfFile elilo > $liloconf
[747]1589
[1230]1590 # Copy it so that CD-ROM menu entry is satisfied
[1983]1591 mountefi=0
1592 df -T | grep /boot/efi | grep -q vfat
1593 if [ $? -ne 0 ]; then
1594 mount /boot/efi
[1230]1595 if [ $? -ne 0 ]; then
[1983]1596 echo "You have to mount your EFI partition when using mindi"
1597 MindiExit -1
[1230]1598 fi
[1983]1599 mountefi=1
[1230]1600 fi
[1983]1601 el=`find /boot/efi -name elilo.efi`
1602 cp $el $mountpoint
1603 cp $liloconf $mountpoint
1604 if [ $mountefi -eq 1 ]; then
1605 umount /boot/efi 2>&1 > /dev/null
1606 fi
[1230]1607
[1983]1608 echo "Copying $MINDI_TMP/initrd.img to $mountpoint..." >> $LOGFILE
1609 cp -f $MINDI_TMP/initrd.img $mountpoint 2>> $LOGFILE
[747]1610 if [ "$?" -ne "0" ] ; then
[1983]1611 LogIt "Failed to copy $MINDI_TMP/initrd.img to $mountpoint"
[940]1612 cat $MINDI_TMP/mtpt.$$ >> $LOGFILE
[963]1613 LogIt "Please unload some of your modules and try again."
[940]1614 rm -f $MINDI_TMP/mtpt.$$
[1983]1615 LogIt "Cannot incorporate initrd.img in bootdisk (kernel / modules too big?)"
[747]1616 retval=$(($retval+1))
1617 fi
[1983]1618 MakeMessageFile > $mountpoint/message.txt
[747]1619
1620 mkdir -p $mountpoint/tmp
[1983]1621 if [ -f "$MINDI_TMP/mondo-restore.cfg" ]; then
1622 cp -f $MINDI_TMP/mondo-restore.cfg $mountpoint/tmp
[747]1623 fi
1624
[925]1625 # copy the kernel across
[1230]1626 [ "$mountpoint" != "" ] && rm -Rf $mountpoint/lost+found
[747]1627 dd if=/dev/zero of=$mountpoint/zero bs=1k count=16 &> /dev/null
[1796]1628 free_space=`df -k -P $mountpoint | tail -n1 | tr -s ' ' '\t' | cut -f4`
[747]1629 cp -f $kernelpath $mountpoint/vmlinuz > /dev/null 2> /dev/null
[1885]1630 if [ "$?" -ne "0" ] ; then
[925]1631 echo "Files at mountpoint ($mountpoint) :-" >> $LOGFILE
1632 du -sk $mountpoint/* >> $LOGFILE
1633 echo "--- end of list of files ---" >> $LOGFILE
1634 echo -en "Kernel size = `du -sk $kernelpath | cut -f1` K\nRamdisk free = $free_space K\n\
[1885]1635Sorry, your kernel is too big for your image.\n" >> $LOGFILE
[1998]1636 [ "$mountpoint" != "" ] && rm -f $mountpoint/vmlinuz
[925]1637 cd $old_pwd
[747]1638 umount $mountpoint || Die "Cannot unmount mountpoint ($mountpoint)"
[963]1639 rmdir $mountpoint || LogIt "Cannot rmdir (PBDI)"
[925]1640 # losetup /dev/loop0 -d
[1998]1641 [ "$imagefile" != "" ] && rm -f $imagefile
[1885]1642 return 0
[747]1643 fi
[1796]1644 free_space=`df -k -P $mountpoint | tail -n1 | tr -s ' ' '\t' | cut -f4`
[747]1645 max_kernel_size=$(($free_space+`du -sk $kernelpath | cut -f1`))
[1885]1646 echo "Free space left on image = $free_space KB" >> $LOGFILE
1647 echo "Max kernel size on $BOOT_SIZE KB image (est'd) = $max_kernel_size K" >> $LOGFILE
[1794]1648 # make it bootable
[1998]1649 [ "$mountpoint" != "" ] && rm -f $mountpoint/zero
[963]1650 [ -e "$MINDI_LIB/memdisk" ] && cp -f $MINDI_LIB/memdisk $mountpoint 2>> $LOGFILE
[1983]1651 if [ "$KERN_DISK_MADE" ] ; then
[925]1652 echo "Not running LILO. It's not that kind of disk." >> $LOGFILE
[747]1653 fi
[925]1654
[1983]1655 cp `dirname $kernelpath`/*.efi $mountpoint 2>> $LOGFILE
[747]1656 umount $mountpoint || Die "Cannot unmount mountpoint ($mountpoint)"
1657 echo -en "..."
[963]1658 rmdir $mountpoint || LogIt "Cannot rmdir (PBDI)"
[747]1659 if [ "$retval" -eq "0" ] ; then
[1885]1660 echo -en "...$DONE\n"
[747]1661 if [ "$KERN_DISK_MADE" ] ; then
[1885]1662 LogIt "$BOOT_SIZE KB boot disks were created OK\n"
[747]1663 fi
1664 else
[1885]1665 echo -en "...failed\n"
1666 LogIt $BOOT_SIZE"KB boot disk was NOT created\n"
[1998]1667 [ "$imagefile" != "" ] && rm -f $imagefile
[747]1668 fi
[963]1669 [ "$retval" -ne "0" ] && LogIt "PrepareBootDiskImage() is returning nonzero"
[747]1670 return $retval
1671}
1672
1673
1674PrepareBootDiskImage_SYSLINUX() {
[1983]1675 local imagesdir dev imagefile mountpoint fname i kernelpath cfg_file testpath options retval outstr old_pwd ooo max_kernel_size bootimage
1676 imagesdir=$MINDI_CACHE
1677 kernelpath=$1
[747]1678 do_boot_root_thingy=""
1679 local retval old_pwd
1680 retval=0
[925]1681
[747]1682 [ ! -e "$kernelpath" ] && Die "PBDI - cannot find $kernelpath kernel"
[1885]1683 echo -en "Making "$BOOT_SIZE"KB boot disk..."
[1983]1684 TurnTgzIntoRdz $MINDI_LIB/rootfs $MINDI_TMP/initrd.img `du -sk $kernelpath | cut -f1` || Die "Could not turn rootfs into initrd.img; are you SURE your kernel supports loopfs?"
[747]1685 echo -en "..."
[1885]1686 imagefile=$imagesdir/mindi-bootroot.$BOOT_SIZE.img
[940]1687 mountpoint=$MINDI_TMP/mountpoint.$$
[747]1688 mkdir -p $mountpoint
[1885]1689 dd if=/dev/zero of=$imagefile bs=1k count=$BOOT_SIZE &> /dev/null || Die "Cannot dd blank file"
1690 echo "Creating vfat filesystem on $imagefile" >> $LOGFILE
1691 mkfs.vfat $imagefile >> $LOGFILE 2>> $LOGFILE
1692 syslinux $imagefile >> $LOGFILE 2>> $LOGFILE
1693
[963]1694 mount -t vfat -o loop $imagefile $mountpoint || LogIt "Cannot mount (PBDI)"
[925]1695
1696 # copy Mindi's skeleton fs & lilo/syslinux/whatever stuff into it
[1983]1697 MakeMessageFile > $mountpoint/message.txt
1698 MakeBootConfFile syslinux > $mountpoint/syslinux.cfg
1699 echo "Copying $MINDI_TMP/initrd.img to $mountpoint/initrd.img..." >> $LOGFILE
1700 cp -f $MINDI_TMP/initrd.img $mountpoint/initrd.img 2>> $LOGFILE
[747]1701 if [ "$?" -ne "0" ] ; then
[1983]1702 LogIt "Failed to copy $MINDI_TMP/initrd.img to $mountpoint"
[940]1703 cat $MINDI_TMP/mtpt.$$ >> $LOGFILE
[963]1704 LogIt "Please unload some of your modules and try again."
[940]1705 rm -f $MINDI_TMP/mtpt.$$
[1983]1706 LogIt "Cannot incorporate initrd.img in bootdisk (kernel / modules too big?)"
[747]1707 retval=$(($retval+1))
1708 fi
1709
1710 mkdir -p $mountpoint/tmp
[1983]1711 if [ -f "$MINDI_TMP/mondo-restore.cfg" ]; then
1712 cp -f $MINDI_TMP/mondo-restore.cfg $mountpoint/tmp
1713 fi
[747]1714
[925]1715 # copy the kernel across
[1230]1716 [ "$mountpoint" != "" ] && rm -Rf $mountpoint/lost+found
[747]1717 dd if=/dev/zero of=$mountpoint/zero bs=1k count=16 &> /dev/null
[1796]1718 free_space=`df -k -P $mountpoint | tail -n1 | tr -s ' ' '\t' | cut -f4`
[747]1719 cp -f $kernelpath $mountpoint/vmlinuz &> /dev/null
[1885]1720 if [ "$?" -ne "0" ] ; then
[747]1721 echo "Files at mountpoint ($mountpoint) :-" >> $LOGFILE
1722 du -sk $mountpoint/* >> $LOGFILE
1723 echo "--- end of list of files ---" >> $LOGFILE
1724 echo -en "Kernel size = `du -sk $kernelpath | cut -f1` K\nRamdisk free = $free_space K\n\
[1885]1725Sorry, your kernel is too big for your image.\n" >> $LOGFILE
[1998]1726 [ "$mountpoint" != "" ] && rm -f $mountpoint/vmlinuz
[747]1727 cd $old_pwd
1728 umount $mountpoint || Die "Cannot unmount mountpoint ($mountpoint)"
[963]1729 rmdir $mountpoint || LogIt "Cannot rmdir (PBDI)"
[747]1730
[1998]1731 [ "$imagefile" != "" ] && rm -f $imagefile
[1885]1732 return 0
[747]1733 fi
[1796]1734 free_space=`df -k -P $mountpoint | tail -n1 | tr -s ' ' '\t' | cut -f4`
[747]1735 max_kernel_size=$(($free_space+`du -sk $kernelpath | cut -f1`))
[1885]1736 echo "Free space left on image = $free_space KB" >> $LOGFILE
1737 echo "Max kernel size on $BOOT_SIZE KB image (est'd) = $max_kernel_size K" >> $LOGFILE
[925]1738
1739 # make it bootable
[1998]1740 [ "$mountpoint" != "" ] && rm -f $mountpoint/zero
[747]1741 mkdir -p $mountpoint/etc
[963]1742 [ -e "$MINDI_LIB/memdisk" ] && cp -f $MINDI_LIB/memdisk $mountpoint 2>> $LOGFILE
[747]1743 umount $mountpoint || Die "Cannot unmount mountpoint ($mountpoint)"
1744 echo -en "..."
[963]1745 rmdir $mountpoint || LogIt "Cannot rmdir (PBDI)"
[747]1746
1747 if [ "$retval" -eq "0" ] ; then
[1885]1748 echo -en "...$DONE\n"
[747]1749 if [ "$KERN_DISK_MADE" ] ; then
[1998]1750 [ "$imagefile" != "" ] && rm -f $imagefile
[1885]1751 LogIt "$BOOT_SIZE KB boot disks were created OK\n"
[747]1752 fi
1753 else
[1885]1754 echo -en "...failed\n"
1755 LogIt $BOOT_SIZE"KB boot disk was NOT created\n"
[1998]1756 [ "$imagefile" != "" ] && rm -f $imagefile
[747]1757 fi
[963]1758 [ "$retval" -ne "0" ] && LogIt "PrepareBootDiskImage() is returning nonzero"
[747]1759 return $retval
1760}
1761
1762
[2006]1763ParseModprobeForIncludes() {
1764local MODPROBE_CONF mpincfile includes include
1765
1766MODPROBE_CONF=/etc/modprobe.conf
1767mpincfile=$1
1768touch $mpincfile
1769if [ -a $MODPROBE_CONF ]; then
1770 includes=$(awk '/^[ \t]*include[ \t]+/ {if(NF>=2){print $2}}' $MODPROBE_CONF|sort|uniq)
1771 if [ -n "$includes" ]; then
1772 for include in $includes
1773 do
1774 if [ -a "$include" ]; then
1775 echo $include >> $mpincfile
1776 fi
1777 done
1778 fi
1779fi
1780}
1781
1782
[747]1783PrepareDataDiskImages() {
[2006]1784 local needlist bigdir diskdir imagesdir res i j k old_pwd lines lfiles includefile
[747]1785
[1983]1786 imagesdir=$MINDI_CACHE
[1902]1787 rm -f $imagesdir/mindi.iso
[940]1788 needlist=$MINDI_TMP/what-we-need.txt
1789 bigdir=$MINDI_TMP/bigdir
[747]1790 mkdir -p $bigdir/usr/bin
[1983]1791 mkdir -p $bigdir/usr/sbin
[2006]1792 includefile=$MINDI_TMP/$$.includefile.txt
[747]1793
[1885]1794 lfiles="$DEPLIST_FILE"
1795 lines=`grep -vx " *#.*" $lfiles | grep -vx "" | wc -l`
[2006]1796 ParseModprobeForIncludes $includefile
[2019]1797 lines=$(($lines+`cat $includefile | wc -l`))
[2006]1798 cat $lfiles $includefile | GenerateGiantDependencyList $needlist $lines
[747]1799 res=$?
[2006]1800 rm -f $includefile
[747]1801 if [ "$YOUR_KERNEL_SUCKS" ]; then
[925]1802 pwd=`pwd`
[940]1803 cd $MINDI_TMP
[747]1804 for i in `ListKernelModulePaths | HackPathsToFailsafe` ; do
[1914]1805 tar cf - ./$i 2>> $LOGFILE | (cd $bigdir ; tar xf -) || Die "PDDI can't copy $i->$bigdir"
[747]1806 done
[925]1807 for i in $EXTRA_MODS ; do
[1810]1808 j=`find lib/modules/$FAILSAFE_KVER -name $i.*o.gz 2> /dev/null`
1809 [ ! "$j" ] && echo "WARNING - cannot find failsafe module $i.o.gz" >> $LOGFILE
[925]1810 for k in $j ; do
[1989]1811 tar cf - $k 2>> $LOGFILE | (cd $bigdir ; tar xf -)
[925]1812 echo "Added failsafe module $k to ramdisk" >> $LOGFILE
1813 done
1814 done
1815 cd $pwd
[747]1816 else
[925]1817 ListKernelModulePaths >> $needlist
[747]1818 fi
1819 if [ "$res" -ne "0" ] ; then
[1902]1820 Die "You have $res files present in dependency list\nbut absent from filesystem."
[747]1821 fi
1822 FindAndAddUserKeyboardMappingFile
1823 mkdir -p $bigdir/tmp
[1885]1824 if [ _"$MONDO_SHARE" != _"" ]; then
[940]1825 MakeMondoConfigFile $MINDI_TMP/mondo-restore.cfg
1826 cp -f $MINDI_TMP/mondo-restore.cfg $bigdir/tmp &> /dev/null
[747]1827 fi
1828 [ -d "/mnt/.boot.d" ] && echo "Oh Jebus" > $bigdir/tmp/DUMBASS-GENTOO
1829 DropOptimizedLibraries $needlist $bigdir
1830 echo -en "Assembling dependency files"
1831 CopyDependenciesToDirectory < $needlist $bigdir
1832
[925]1833 # also copy io.sys and msdos.sys, if we can find them
[747]1834 for i in `mount | cut -d' ' -f3` ; do
[925]1835 for j in io.sys msdos.sys ; do
[963]1836 [ -e "$i/$j" ] && cp -f $i/$j $bigdir 2>> $LOGFILE
[925]1837 done
[747]1838 done
1839
[925]1840 # master boot record, too
[940]1841 i=`cat $MINDI_TMP/BOOTLOADER.DEVICE 2> /dev/null`
[747]1842 if [ "$i" ] ; then
[963]1843 LogIt "Backing up $i's MBR"
[925]1844 dd if=$i of=$bigdir/BOOTLOADER.MBR bs=446 count=1 >> $LOGFILE 2>> $LOGFILE
1845 sleep 1
1846 sync
1847 j=$i
1848 [ -h "$j" ] && j=`readlink -f $j`
[963]1849 LogIt "Creating /dev/boot_device ($j)"
[925]1850 mkdir -p $bigdir/dev
[953]1851 cp -pRdf $j $bigdir/dev/boot_device 2> /dev/null || Die "Unable to create /dev/boot_device on ramdisk"
[747]1852 fi
1853
1854 old_pwd=`pwd`
1855 cd $bigdir
1856
[1983]1857 # Get terminfo content
1858 ti="usr/share/terminfo/l"
1859 if [ -d /$ti ]; then
1860 mkdir -p $ti
1861 cp -Rdf /$ti/* $ti 2>> $LOGFILE || LogIt "WARNING - error occurred while copying terminfo"
[747]1862 fi
[1764]1863 if [ -e "$MONDO_SHARE/restore-scripts" ]; then
[747]1864 cp -Rdf $MONDO_SHARE/restore-scripts/* . 2>> $LOGFILE
[1335]1865 [ "$?" -ne "0" ] && [ _"$MONDO_SHARE" != _"" ] && Die "Cannot find/install $MONDO_SHARE/restore-scripts"
[747]1866 fi
[1914]1867 [ -d "/lib/dev-state" ] && tar cf - /lib/dev-state 2>> $LOGFILE | tar xf -
[747]1868 cd $old_pwd
1869 echo -e "$DONE"
1870 TOTAL_BIGDIR_SIZE=`du -sk $bigdir | cut -f1`
[940]1871 MakeMountlist $MINDI_TMP/mountlist.txt
[1902]1872 mkdir -p $bigdir/tmp
1873 cp -f $MINDI_TMP/mountlist.txt $bigdir/tmp/mountlist.txt 2> /dev/null || Die "Cannot copy mountlist.txt from $MINDI_TMP to data disk"
[1885]1874 if [ _"$MONDO_SHARE" != _"" ]; then
[1902]1875 cp -f $bigdir/tmp/mountlist.txt $MINDI_TMP/. 2>> $LOGFILE
[1885]1876 fi
[2032]1877 if [ $LVM != "false" ]; then
1878 $MINDI_LIB/analyze-my-lvm > $bigdir/tmp/i-want-my-lvm
1879 if [ "$?" -ne "0" ]; then
1880 LVM="false"
1881 rm -f $bigdir/tmp/i-want-my-lvm
1882 fi
1883 fi
[1902]1884 cat $bigdir/tmp/mountlist.txt >> $LOGFILE
1885 echo -en "$FILES_IN_FILELIST" > $bigdir/FILES-IN-FILELIST 2> /dev/null
1886 echo -en "$LAST_FILELIST_NUMBER" > $bigdir/LAST-FILELIST-NUMBER 2> /dev/null
1887 if [ _"$MONDO_SHARE" != _"" ]; then
1888 for q in filelist.full.gz biggielist.txt ; do
1889 [ ! -e "$MINDI_TMP/$q" ] && Die "Cannot find $MINDI_TMP/$q"
1890 cp -pRdf $MINDI_TMP/$q $bigdir/tmp 2>> $LOGFILE
1891 done
1892 fi
1893
1894 echo -en "Tarring and zipping the data content..."
1895 size_of_all_tools=`du -sk $bigdir | cut -f1`
1896 (cd $bigdir ; tar -b 4096 -cf - . 2> /dev/null | gzip -9 > $imagesdir/all.tar.gz)
1897 du -sk $imagesdir/*gz >> $LOGFILE
1898 echo -e "$DONE"
1899
[747]1900 FRIENDLY_OUTSTRING="Boot and data disk images were created."
[1902]1901 rm -rf $bigdir
[747]1902 rm -f $needlist
1903}
1904
1905
1906ProcessLDD() {
[1784]1907 local incoming f d nd bd bnd
[747]1908 read incoming
[1784]1909 while [ "$incoming" != "" ]; do
[859]1910 # We take the full path name of the dyn. lib. we want
[1526]1911 incoming=`echo "$incoming" | awk '{if (match($1,/\//)) {print $1} else {if (match($3,/\//)) print $3} fi}'`
1912 for f in $incoming ; do
[1784]1913 # echo modified file name if one of the parent dir is a link
1914 # by replacing the original dirname by the destination of the link
1915 d="`dirname $f`"
1916 found="false"
1917 while [ "$d" != "/" ]; do
1918 if [ -h "$d" ]; then
1919 nd=`readlink -f $d`
1920 bd=`basename $d`
1921 bnd=`basename $nd`
1922 f=`echo $f | sed "s~/$bd/~/$bnd/~"`
1923 echo $d
1924 fi
1925 d="`dirname $d`"
1926 done
1927
[1721]1928 echo "$f"
1929 echo "`ReadAllLink $f`"
[747]1930 done
1931 read incoming
1932 done
1933}
1934
1935
1936Prompt() {
1937 echo -en "$1"
1938 read line
1939}
1940
1941
1942ReadLine() {
1943 local i incoming
1944 read incoming
1945 i=0
1946 while [ "$i" -le "32" ] && [ "$incoming" = "" ] ; do
[925]1947 i=$(($i+1))
1948 read incoming
[747]1949 done
1950 echo "$incoming"
1951}
1952
1953
1954SizeOfPartition() {
1955 local devpath drive res stub
1956 device=$1
1957 if [ "`echo "$device" | grep -F "/dev/md"`" != "" ] ; then
[925]1958 res=`SizeOfRaidPartition $device`
1959 [ "$res" = "" ] && Die "Cannot find $device's size - is your /etc/raidtab sane?"
1960 echo "$res"
1961 return 0
[747]1962 fi
[925]1963 # patch from Bill <bill@iwizard.biz> - 2003/08/25
[960]1964 res=`$FDISK -s $device 2>> $LOGFILE`
[925]1965 # end patch
[1796]1966 [ "$res" = "" ] && res=`df -k -P -x supermount | tr -s '\t' ' ' | grep -F "$device " | cut -d' ' -f2`
[747]1967 [ "$res" = "" ] && res="-1"
1968 echo $res
1969 return 0
1970}
1971
1972
1973SizeOfRaidPartition() {
1974 local real_dev smallest_size silly tmp
1975
1976 silly=999999999
1977 smallest_size=$silly
1978
1979 for real_dev in `GetRaidDevMembers $1` ; do
[925]1980 tmp=`SizeOfPartition $real_dev`
1981 [ "$tmp" -lt "$smallest_size" ] && smallest_size=$tmp
[747]1982 done
1983
1984 if [ "$smallest_size" = "$silly" ] ; then
[925]1985 echo "-1"
1986 return 1
[747]1987 else
[925]1988 echo "$smallest_size"
1989 return 0
[747]1990 fi
1991}
1992
1993
1994StripComments()
1995{
1996 local tempfile
[925]1997
[940]1998 tempfile=$MINDI_TMP/$$.strip.txt
[963]1999 cp -f $1 $tempfile 2>> $LOGFILE
[747]2000 $AWK '{if (substr($0,0,1)!="#" || substr($0,0,3)=="#!/") {print $0;};}' $tempfile > $1
2001 rm -f $tempfile
2002 echo "Stripped comments from $2" >> $LOGFILE
2003}
2004
2005
[925]2006
[747]2007StripExecutable()
2008{
2009 local tmpfile
[925]2010
[940]2011 tmpfile=$MINDI_TMP/stripped.$$.dat
[747]2012 [ -d "$1" ] || [ -h "$1" ] && return
[963]2013 cp -f $1 $tmpfile 2>> $LOGFILE
[747]2014 strip $tmpfile 2> /dev/null
2015 if [ "$?" -eq "0" ] ; then
[963]2016 cp -f $tmpfile $1 2>> $LOGFILE
[925]2017 echo "Stripped binary $2" >> $LOGFILE
[747]2018 fi
2019 rm -f $tmpfile
2020}
2021
2022
2023TryToFindKernelPath() {
2024 local fname incoming res fkern_ver we_want_version possible_kernels noof_kernels kernelpath kdate duff_kernels
[925]2025
[747]2026 we_want_version=`uname -r`
2027 possible_kernels=""
2028 duff_kernels=""
2029
2030 if [ "$ARCH" = "ia64" ] ; then
2031 root="/boot/efi/efi"
2032 else
2033 root="/"
2034 fi
[1466]2035 for fname in `find $root -maxdepth 2 -type f | grep -E 'lin|kern' | grep -Ev '^/proc/|^/net/'` ; do
[925]2036 [ ! -e "$fname" ] && continue
[747]2037 [ "$fname" = "/boot/vmlinuz.shipped" ] && [ -f "/boot/vmlinuz" ] && continue; # ignore SuSE's extra kernel
[925]2038 file $fname | grep -q gzip
2039 if [ "$?" -eq "0" ] ; then
2040 # Used by ia64
[747]2041 fkern_ver=`gzip -cd $fname | strings 2> /dev/null | grep "[2-9]+*[.][0-9]+*[.][0-9]+*[^\@]*@"`
[925]2042 else
[747]2043 fkern_ver=`strings $fname 2> /dev/null | grep "[2-9]+*[.][0-9]+*[.][0-9]+*[^\@]*@"`
[925]2044 fi
[747]2045 [ "$fkern_ver" = "" ] && continue
2046 [ "`echo "$fkern_ver" |grep -F "$we_want_version "`" = "" ] && continue
[925]2047 [ -f "$fname" ] || continue
2048 [ -h "$fname" ] && continue
2049 kdate=`uname -v | $AWK '{for(i=1;i<NF;i++){if(index($i,":")){print $i;};};}' | $AWK '{print $NF;}'`
2050 file $fname | grep -q gzip
2051 if [ "$?" -eq "0" ] ; then
2052 # Used by ia64
2053 if [ "`gzip -cd $fname | strings 2> /dev/null | grep -F "$kdate"`" = "" ] ; then
[963]2054 LogIt "Have you recompiled your kernel \"$fname\" w/o rebooting? Naughty but I'll allow it..."
[925]2055 duff_kernels="$fname $duff_kernels"
2056 else
[747]2057 [ "`echo "$fname" | grep -F "vmlinux"`" ] && continue
2058 possible_kernels="$fname $possible_kernels"
[925]2059 fi
[747]2060 else
[925]2061 if [ "`strings $fname 2> /dev/null | grep -F "$kdate"`" = "" ] ; then
[963]2062 LogIt "Have you recompiled your kernel \"$fname\" w/o rebooting?\n Naughty but I'll allow it..."
[925]2063 duff_kernels="$fname $duff_kernels"
2064 else
[747]2065 [ "`echo "$fname" | grep -F "vmlinux"`" ] && continue
2066 possible_kernels="$fname $possible_kernels"
[925]2067 fi
[747]2068 fi
2069 done
2070 if [ ! "$possible_kernels" ] && uname -a | grep Knoppix > /dev/null ; then
[925]2071 possible_kernels=`find /boot/vmlinuz-2.* | tail -n1`
[747]2072 fi
2073 if [ ! "$possible_kernels" ] ; then
[963]2074 LogIt "No kernel matches exactly. Are there any duff kernels?"
[747]2075 possible_kernels="$duff_kernels"
2076 if [ ! "$possible_kernels" ] ; then
[963]2077 LogIt "Sorry, no duff kernels either"
[747]2078 else
[963]2079 LogIt "I bet you're running Debian or Gentoo, aren't you?"
2080 LogIt "Your kernel doesn't have a sane builddate. Oh well..."
[747]2081 fi
2082 fi
2083 possible_kernels=`echo "$possible_kernels" | tr -s ' ' '\n' | sort -u | tr '\n' ' '`
2084 noof_kernels=`CountItemsIn "$possible_kernels"`
2085 if [ "$noof_kernels" -eq "0" ] ; then
[963]2086 LogIt "Could not find your kernel."
[925]2087 if [ -e "/boot/vmlinuz" ] ; then
[963]2088 LogIt "Using /boot/vmlinuz as a last resort."
[925]2089 output=/boot/vmlinuz
[747]2090 else
[925]2091 output=""
2092 fi
[747]2093 elif [ "$noof_kernels" -eq "1" ] ; then
2094 kernelpath=`echo "$possible_kernels" | sed s/' '//`
2095 echo "Your kernel is $kernelpath (v`uname -r`)" >> $LOGFILE
2096 output="$kernelpath"
2097 else
2098 for i in $possible_kernels ; do
2099 if echo $i | grep "`uname -r`" ; then
[925]2100 LogIt "OK, I used my initiative and found that "
[963]2101 LogIt "$i is probably your kernel. "
[925]2102 output="$i"
2103 return
2104 fi
[747]2105 done
[925]2106 if echo " $possible_kernels " | grep -F "/boot/vmlinuz " &> /dev/null ; then
2107 output=/boot/vmlinuz
2108 echo "Schlomo, this one's for you." >> $LOGFILE
2109 else
[963]2110 LogIt "Two or more possible kernels found. You may specify any one of them and the "
2111 LogIt "boot disks will still work, probably. If one does not work, try another."
2112 LogIt "$possible_kernels"
[747]2113 echo ""
[925]2114 fi
[747]2115 fi
2116 echo "$output" | tr -s ' ' '\n' | sort -u | tr '\n' ' '
2117}
2118
2119
2120TurnTgzIntoRdz() {
[1983]2121 local tgz_dir_fname rdz_fname tempfile mountpoint old_pwd nodes kernelsize maxsize res currsize not_copied j k s w needed_modules_path
[925]2122
[747]2123 tgz_dir_fname=$1
2124 rdz_fname=$2
[1983]2125 kernelsize=$3
[1885]2126 maxsize=$(($BOOT_SIZE-$kernelsize))
[747]2127 maxsize=$(($maxsize*2)); # to allow for compression of 50%
[940]2128 tempfile=$MINDI_TMP/temp.rd
2129 mountpoint=$MINDI_TMP/mnt1
[747]2130 res=0
2131 echo -en "..."
2132 dd if=/dev/zero of=$tempfile bs=1k count=$ramdisk_size &> /dev/null || Die "Not enough room for temporary ramdisk (TurnTgzIntoRdz)"
2133 echo -en "..."
[1764]2134 echo "Creating ext2 filesystem on $tempfile" >> $LOGFILE
2135 mke2fs -b 1024 -m 1 -i 2048 -F $tempfile >> $LOGFILE 2>> $LOGFILE || Die "Unable to create an ext2 file system on $tempfile"
[747]2136 echo -en "..."
2137 mkdir -p $mountpoint
2138 mount -t ext2 -o loop $tempfile $mountpoint || Die "Cannot loopmount $tempfile to $mountpoint! The reason may be missing support for loopfs or ext2 (or both) in the running kernel."
2139 echo -en "..."
2140 old_pwd=`pwd`
2141 cd $mountpoint
[2034]2142
2143 # AL04Oct08: Check whether /lib64 is a link and if so explicitly create one in rootfs
[2042]2144 if [ -h "/lib64" ]; then
2145 mkdir -p lib || LogIt "Unable to create lib in $mountpoint."
2146 ln -s lib lib64 || LogIt "/lib64 is a symbolic link, but I couldn't create it in $mountpoint."
2147 fi
[2034]2148
[959]2149 cp -Rdf $tgz_dir_fname/* . 2>&1 >> $LOGFILE
[747]2150 tar -zxf symlinks.tgz || Die "Cannot untar symlinks.tgz"
[1914]2151
[747]2152 cd dev || Die "Can't cd to dev"
2153 tar -zxf dev-entries.tgz || Die "Cannot untar dev-entries.tgz"
2154 rm -f dev-entries.tgz
2155 cd ..
2156
2157 for w in insmod.static insmod.static.old ; do
[925]2158 s=`which $w 2> /dev/null`
2159 if [ -e "$s" ] ; then
[1913]2160 tar cf - $s 2> /dev/null | tar xf -
[925]2161 fi
[747]2162 done
2163
2164 [ -e "/dev/.devfsd" ] && echo "/dev/.devfsd found" > tmp/USE-DEVFS
[1724]2165
[1882]2166 # Handle the case where busybox and mount are dynamically linked
[1786]2167 file $MINDI_LIB/rootfs/bin/busybox 2>&1 | grep -q "dynamically"
2168 if [ $? -eq 0 ]; then
[1927]2169 # We want to use the real mount and all the supported variants (nfs, cifs, ...)
2170 rm -f bin/mount $MINDI_TMP/busy.lis
2171 mountlis=`grep mount $DEPLIST_FILE`
2172 for f in $MINDI_LIB/rootfs/bin/busybox $mountlis ; do
2173 if [ -f $f ]; then
2174 LocateDeps $f >> $MINDI_TMP/busy.lis
2175 fi
2176 done
2177 tar cf - $mountlis `sort -u $MINDI_TMP/busy.lis` 2> /dev/null | tar xf -
[1786]2178 rm -f $MINDI_TMP/busy.lis
2179 fi
2180
[2039]2181 # Copy of files mandatory for ld.so
[2042]2182 cp -rp /etc/ld.so.c* $mountpoint/etc
[2039]2183
[1914]2184 mkdir -p $mountpoint/tmp
[1724]2185 # Management of udev (which includes modprobe in rules)
[1759]2186 ps auxww | grep -v grep | grep -qw udevd
[1716]2187 if [ $? -eq 0 ]; then
[1914]2188 echo "udev device manager found" > $mountpoint/tmp/USE-UDEV
[1759]2189 LogIt "udev device manager found"
[1913]2190 tar cf - /etc/udev 2> /dev/null | tar xf -
[1790]2191 # This avoids NIC remapping if on another machine at restore time on Debian at least
2192 rm -f ./etc/udev/rules.d/z25_persistent-net.rules
[1913]2193 tar cf - /lib*/udev 2> /dev/null | tar xf -
[1720]2194 if [ -x /sbin/udevd ]; then
[1781]2195 lis2=`grep -Ev '^#' $MINDI_CONF/udev.files`
2196 lis=""
2197 # Get only the files which exist in that list
[1815]2198 # and potentially their symlink structure
[1781]2199 for i in $lis2; do
[1815]2200 if [ -h $i ]; then
2201 j=$i
2202 while [ -h $j ]; do
2203 lis="$lis $j"
2204 j=`readlink $j`
2205 done
2206 lis="$lis $j"
2207 elif [ -f $i ]; then
[1781]2208 lis="$lis $i"
2209 fi
2210 done
2211 # And their deps
[1759]2212 LocateDeps $lis > $MINDI_TMP/udev.lis
2213 for i in $lis; do
2214 if [ "`echo $i | cut -c1`" = "/" ]; then
2215 j=`echo $i | cut -c2-`
[1998]2216 [ "$j" != "" ] && rm -f $j
[1759]2217 fi
2218 done
[1913]2219 tar cf - $lis `sort -u $MINDI_TMP/udev.lis` 2> /dev/null | tar xf -
[1721]2220 rm -f $MINDI_TMP/udev.lis
[1720]2221 else
2222 echo "udevd daemon not in standard place (/sbin)" 2>&1 | tee -a $LOGFILE
[1724]2223 echo "mindi will use static devices which may cause problems" 2>&1 | tee -a $LOGFILE
[1914]2224 rm -f $mountpoint/tmp/USE-UDEV
[1720]2225 fi
[1716]2226 fi
[1786]2227
[1761]2228 # Management of potential HW info (Proliant only at the moment)
[1880]2229 rm -rf $MINDI_CACHE/bkphw
2230 mindi-bkphw $MINDI_CACHE $MINDI_CONF | tee -a $LOGFILE
2231 if [ -d $MINDI_CACHE/bkphw ]; then
[1761]2232 LogIt "Hardware Information found and saved ..."
[1880]2233 cp -rp $MINDI_CACHE/bkphw .
2234 if [ -f $MINDI_CACHE/tools.files ]; then
2235 lis=`grep -Ev '^#' $MINDI_CACHE/tools.files`
[1863]2236 LocateDeps $lis > $MINDI_TMP/tools.lis
[1913]2237 tar cf - $lis `sort -u $MINDI_TMP/tools.lis` 2> /dev/null | tar xf -
[1863]2238 fi
[1880]2239 if [ -f $MINDI_CACHE/mindi-rsthw ]; then
2240 mv -f $MINDI_CACHE/mindi-rsthw .
[1761]2241 chmod 755 ./mindi-rsthw
2242 fi
[1880]2243 rm -f $MINDI_TMP/tools.lis $MINDI_CACHE/tools.files
[1761]2244 fi
2245
[1885]2246 for w in cdrom groovy-stuff ; do
[747]2247 mkdir -p mnt/$w
2248 done
2249
[1913]2250 tar cf - /dev/fd0*[1,2][4,7,8]* 2> /dev/null | tar xf -
[1721]2251
[747]2252 cd $old_pwd
2253 echo -en "..."
2254 old_pwd=`pwd`
2255 if [ "$YOUR_KERNEL_SUCKS" ] ; then
[940]2256 cd $MINDI_TMP
[1885]2257 needed_modules_path=lib/modules/$FAILSAFE_KVER
[747]2258 else
2259 cd /
2260 if [ "${kernelname}" != "" ]
2261 then
[1885]2262 needed_modules_path=lib/modules/${kernelname}
[747]2263 else
[1885]2264 needed_modules_path=lib/modules/`uname -r`
[747]2265 fi
2266 fi
[1885]2267
2268 needed_modules=""
[1993]2269 list_of_groovy_mods="$CDROM_MODS $FORCE_MODS"
[1885]2270
[940]2271 if [ -e "$MINDI_TMP/NFS-DEV" ] ; then
[747]2272 # For PXE boot
2273 list_of_groovy_mods="$list_of_groovy_mods $NET_MODS"
2274 fi
[1715]2275 if [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ] && [ "$USBDEVICE" != "" ]; then
2276 list_of_groovy_mods="$list_of_groovy_mods $EXTRA_MODS"
2277 fi
[1727]2278 for i in $DENY_MODS; do
2279 echo "Removing $i from the list of modules to load" >> $LOGFILE
2280 list_of_groovy_mods=`echo ${list_of_groovy_mods} | tr ' ' '\n' | grep -Ev "^${i}$" | tr '\n' ' '`
2281 done
2282
[1885]2283 [ -e "$needed_modules_path" ] || LogIt "path $needed_modules_path does not exist.\n If you're not using a modular kernel then you're NUTS."
[747]2284 for i in $list_of_groovy_mods ; do
[1885]2285 needed_modules="$needed_modules `FindSpecificModuleInPath $needed_modules_path $i`"
[747]2286 done
[1914]2287
[1885]2288 for i in $needed_modules ; do
[747]2289 [ -e "$i" ] && s=`du -sk $i | cut -f1` || s=""
[940]2290 [ "$YOUR_KERNEL_SUCKS" ] && i=$MINDI_TMP/$i
[747]2291 echo "Adding $i ($s KB) to the rootfs" >> $LOGFILE
[1913]2292 tar cf - $i 2>/dev/null | (cd $mountpoint ; tar xf -) || LogIt "Unable to copy $i to $mountpoint"
[1914]2293 # Uncompress modules if not using udev and native modprobe
[1815]2294 if [ ! -f $mountpoint/tmp/USE-UDEV ]; then
2295 if [ "`echo "$i" | grep -F ".gz"`" ]; then
[1914]2296 echo "Uncompressing $i" >> $LOGFILE
[1727]2297 gunzip -f $mountpoint/$i
[1815]2298 fi
[1727]2299 fi
[747]2300 done
[1815]2301
2302 # Also copy modules.dep in case of udev so that normal modprobe works
[1913]2303 tar cf - /$needed_modules_path/modules.dep 2>/dev/null | (cd $mountpoint ; tar xf -) || LogIt "Unable to copy modules.dep to $mountpoint"
[1815]2304
[1885]2305 if [ ! -e "/sbin/devfsd" ] || [ "$kernelpath" = "$MINDI_LIB/vmlinuz" ] ; then
[747]2306 echo "Deleting devfsd daemon from ramdisk" >> $LOGFILE
2307 [ ! -e "/sbin/devfsd" ] && echo "...because /sbin/devfsd not found" >> $LOGFILE
2308 [ "$kernelpath" = "$MINDI_LIB/vmlinuz" ] && echo "...because kernel is failsafe" >> $LOGFILE
2309 rm -f $mountpoint/sbin/devfsd
2310 fi
2311 cd $old_pwd
2312 [ "$TAPEDEV" ] && echo -en "$TAPEDEV" > $mountpoint/tmp/TAPEDEV-LIVES-HERE
2313 dd if=/dev/zero of=$mountpoint/zero &> /dev/null
2314 rm -f $mountpoint/zero
[1885]2315 if [ _"$MONDO_SHARE" != _"" ]; then
[747]2316 MakeMondoConfigFile $mountpoint/tmp/mondo-restore.cfg
[940]2317 cp -f $mountpoint/tmp/mondo-restore.cfg $MINDI_TMP &> /dev/null
[953]2318 cp -f $MINDI_TMP/mountlist.txt $mountpoint/tmp/ 2>/dev/null || Die "Cannot copy mountlist to ramdisk"
[747]2319 echo -en "$FILES_IN_FILELIST" > $mountpoint/tmp/FILES-IN-FILELIST
2320 echo -en "$LAST_FILELIST_NUMBER" > $mountpoint/tmp/LAST-FILELIST-NUMBER
2321 [ "$USE_LZO" = "yes" ] && echo -en "Pras 4 Pres 2004" >> $mountpoint/tmp/USING-LZO
[998]2322 [ "$USE_GZIP" = "yes" ] && echo -en "YES" >> $mountpoint/tmp/USING-GZIP
[747]2323 [ "$USE_COMP" = "yes" ] && echo -en "Compression, yep" >> $mountpoint/tmp/USING-COMP
2324 [ "$USE_STAR" = "yes" ] && echo -en "Using star. Hooray." >> $mountpoint/tmp/USING-STAR
2325 fi
2326 mkdir -p $mountpoint/proc
[1885]2327 echo "$BOOT_SIZE" > $mountpoint/tmp/$BOOT_SIZE.siz
[1230]2328 # Determine what filesystem to use for initrd image
2329 echo "Call GetInitrdFilesystemToUse() with parameter ${kernelpath} to get filesystem to use for initrd." >> $LOGFILE
2330 gvFileSystem=`GetInitrdFilesystemToUse ${kernelpath}`
2331 [ -z gvFileSystem ] && Die "GetFilesystemToUse() failed. Terminating."
2332 case "$gvFileSystem" in
2333 "ext2fs")
2334 # say what will be used
[1821]2335 echo "Creating an ext2 initrd image..." >> $LOGFILE
[1230]2336 # kernel expects linuxrc in ext2 filesystem
2337 ( cd $mountpoint && ln -sf sbin/init linuxrc )
2338 # unmount loop filesystem and create image file using the standard approach
2339 umount $mountpoint || Die "Cannot unmount $tempfile"
[1764]2340 dd if=$tempfile bs=1k 2> /dev/null > ${rdz_fname}.tmp 2> /dev/null
[1794]2341 bs=`tune2fs -l ${rdz_fname}.tmp | grep -E '^Block size:' | cut -d: -f2 | sed 's/^ *//'`
[1764]2342 ADDITIONAL_BOOT_PARAMS="$ADDITIONAL_BOOT_PARAMS ramdisk_blocksize=$bs"
[1799]2343 gzip -c9 ${rdz_fname}.tmp > $rdz_fname
[1764]2344 rm -f ${rdz_fname}.tmp
[1230]2345 # log that we are done
[1821]2346 echo "...done." >> $LOGFILE
[1230]2347 ;;
2348 "initramfs")
2349 # say what will be used
[1821]2350 echo "Creating a gzip'ed cpio (AKA initramfs) initrd image..." >> $LOGFILE
[1230]2351 # make sure that cpio is there
2352 which cpio &> /dev/null; [ $? -eq 0 ] || Die "cpio not found. Please install package cpio and try again."
2353 # go into filesystem
2354 cd $mountpoint
2355 # kernel expects init in cpio filesystem
2356 ln -sf sbin/init init
2357 # create cpio image file and unmount loop filesystem
[1929]2358 find . -print | cpio -o -H newc | gzip -9 > $rdz_fname 2> /dev/null
[1230]2359 cd $old_pwd
2360 umount $mountpoint || Die "Cannot unmount $tempfile"
2361 # log that we are done
2362 echo "...done." >> $LOGFILE
2363 ;;
2364 *)
2365 Die "Filesystem $gvFileSystem not supported for initrd image. Terminating."
2366 ;;
2367 esac
[747]2368 if [ "$res" -eq "0" ] ; then
2369 echo -en "..."
2370 else
2371 echo -en "\rMade an rdz WITH ERRORS. \n"
2372 fi
2373 return 0
2374}
2375
2376
2377##############################################################################
[1021]2378#----------------------------------- Main -----------------------------------#
[747]2379##############################################################################
2380
[1885]2381# Now we can create what we need
2382mkdir -p $MINDI_TMP
[747]2383
[1885]2384# Purge from potential old run
2385if [ _"$MINDI_CACHE" = _"" ]; then
2386 Die "MINDI_CACHE undefined"
2387fi
2388rm -rf $MINDI_CACHE/* 2> /dev/null
2389mkdir -p $MINDI_CACHE
2390
2391if [ "$1" = "--printvar" ] ; then
2392 shift
2393 if [ _"$1" != _"" ] ; then
2394 set | grep -Ew "^$1" | cut -d= -f2
2395 fi
2396 MindiExit 0
2397fi
2398
[747]2399> $LOGFILE
2400echo "mindi v$MINDI_VERSION" >> $LOGFILE
2401echo "$ARCH architecture detected" >> $LOGFILE
2402echo "mindi called with the following arguments:" >> $LOGFILE
2403echo "$@" >> $LOGFILE
[800]2404echo "Start date : `date`" >> $LOGFILE
[1684]2405echo "-----------------------------" >> $LOGFILE
[747]2406
2407[ -e "/sbin/mkdosfs" ] && [ ! -e "/sbin/mkfs.vfat" ] && ln -sf /sbin/mkdosfs /sbin/mkfs.vfat
2408
[1010]2409# Log some capital variables
2410[ "$MINDI_PREFIX" = "XXX" ] && Die "Mindi has not been installed correctly."
[1885]2411echo "MONDO_SHARE = $MONDO_SHARE" >> $LOGFILE
[1010]2412echo "MINDI_LIB = $MINDI_LIB" >> $LOGFILE
2413echo "MINDI_SBIN = $MINDI_SBIN" >> $LOGFILE
2414[ "$MINDI_CONF" = "YYY" ] && Die "Mindi has not been installed correctly."
2415echo "MINDI_CONF = $MINDI_CONF" >> $LOGFILE
[1885]2416if [ -f $MINDI_CONFIG ]; then
2417 echo "-----------------------------" >> $LOGFILE
2418 echo " Mindi configuration file " >> $LOGFILE
2419 echo "-----------------------------" >> $LOGFILE
2420 grep -Ev '^#' $MINDI_CONFIG >> $LOGFILE
2421 echo "-----------------------------" >> $LOGFILE
2422fi
[1010]2423
[1885]2424
[747]2425trap AbortHere SIGTERM SIGHUP SIGQUIT SIGKILL SIGABRT SIGINT
[1010]2426
2427# Sanity checks
2428which which > /dev/null 2> /dev/null || Die "Please install 'which'."
2429which strings > /dev/null 2> /dev/null || Die "Please install binutils and libbinutils; you have no 'strings' executable."
2430which gawk > /dev/null 2> /dev/null || Die "Gawk is missing from your computer. Please install gawk. You may find the package on Debian's website. How did I know you're running Debian? Because only Debian would be stupid enough not to include gawk in your distribution."
2431which gawk > /dev/null 2> /dev/null && AWK=`which gawk 2>/dev/null` || AWK="`which awk 2>/dev/null`"
2432if which awk &> /dev/null ; then
2433 if ! which gawk &> /dev/null ; then
2434 LogIt "You have awk but not gawk.\nPlease note that mindi works fine with a _sane_ awk binary.\nIf your awk binary misbehaves then please contact your vendor\nor distribution's mailing list for technical support.\n"
2435 fi
2436fi
2437which mke2fs > /dev/null 2> /dev/null || Die "Please put mke2fs in system path"
2438[ ! -e "$FDISK" ] && Die "Cannot find (s)fdisk"
2439
[747]2440[ "`uname -r | grep "2.4.[0-6]" | grep -v "2.4.[0-9][0-9]"`" != "" ] && echo "WARNING! Your kernel may have buggy loopfs code. Consider upgrading to 2.4.7"
[1010]2441
2442# Update the PATH variable if incomplete
2443if [ -e "/sbin/mkfs" ] && ! which mkfs &> /dev/null ; then
2444 PATH=$PATH:/sbin:/usr/sbin
2445 export PATH
2446 echo "Your PATH did not include /sbin or /usr/sbin. I have fixed that, temporarily." >> $LOGFILE
2447 echo "However, you may wish to ask your vendor to provide a permanent fix..." >> $LOGFILE
2448 echo " Or you might like to call 'su -' instead of 'su', for example." >> $LOGFILE
2449fi
2450
[1885]2451# If we have a distribution-specific script for finding a FAILSAFE kernel, use it.
2452if [ -f "$MINDI_LIB/FindDistroFailsafe" ] && [ ! "$1" = "--makemountlist" ] && [ "$kernelpath" = "FAILSAFE" ]; then
2453 source $MINDI_LIB/FindDistroFailsafe
2454 # Log kernel image
2455 LogIt "FAILSAFE kernel image to be used is: $FAILSAFE_KBIN ($FAILSAFE_KVER)"
2456else
2457 [ -f "$MINDI_LIB/vmlinuz" ] && FAILSAFE_KVER=`strings $MINDI_LIB/vmlinuz 2> /dev/null | grep -E "2\.[46]" | cut -d' ' -f1`
2458fi
[1010]2459
[1737]2460if ! which mkfs.vfat 1> /dev/null 2> /dev/null ; then
[1010]2461 Die "mkfs.vfat missing from your filesystem - please install your dosfstools RPM or DEB package. Perhaps your PATH environmental variable is broken, too?"
2462fi
2463
[925]2464### BERLIOS
[747]2465### Fix as it's not mandatory on ia64
2466if [ "$ARCH" = "ia64" ] ; then
[1010]2467 if which elilo &> /dev/null ; then
2468 LILO_EXE=elilo
2469 else
[2024]2470 LILO_EXE=`which false 2> /dev/null`
[1010]2471 fi
[747]2472else
2473 FindIsolinuxBinary
2474fi
2475trap "Aborted" SIGTERM
2476DONE="\r\t\t\t\t\t\t\t\tDone. "
2477kernelpath=""
[1010]2478MONDO_ROOT=/var/cache/mondo
[747]2479mkdir -p $MONDO_ROOT
2480
2481if [ -d "/proc/lvm" ]; then
2482 # LVM v1
2483 LVMCMD=""
2484 LVM="v1"
2485elif [ -d "/dev/mapper" ]; then
2486 # LVM v2
2487 LVMCMD="lvm"
2488 LVM="v2"
2489else
2490 LVM="false"
2491fi
[1021]2492echo "LVM set to $LVM" >> $LOGFILE
2493echo "----------" >> $LOGFILE
[1230]2494echo "mount result:" >> $LOGFILE
2495echo "-------------" >> $LOGFILE
2496mount >> $LOGFILE
2497echo "-------------" >> $LOGFILE
[1315]2498if [ -e /etc/raidtab ]; then
2499 echo "-------------" >> $LOGFILE
2500 echo "/etc/raidtab content:" >> $LOGFILE
2501 echo "-------------" >> $LOGFILE
2502 cat /etc/raidtab >> $LOGFILE
2503fi
2504echo "-------------" >> $LOGFILE
[1418]2505echo "cat /proc/cmdline:" >> $LOGFILE
2506echo "-------------" >> $LOGFILE
2507cat /proc/cmdline >> $LOGFILE
2508echo "-------------" >> $LOGFILE
[2014]2509echo "cat /proc/swaps:" >> $LOGFILE
2510echo "-------------" >> $LOGFILE
2511cat /proc/swaps >> $LOGFILE
2512echo "-------------" >> $LOGFILE
[2015]2513echo "cat /proc/partitions:" >> $LOGFILE
2514echo "-------------" >> $LOGFILE
2515cat /proc/partitions >> $LOGFILE
2516echo "-------------" >> $LOGFILE
2517echo "cat /proc/filesystems:" >> $LOGFILE
2518echo "-------------" >> $LOGFILE
2519cat /proc/filesystems >> $LOGFILE
2520echo "-------------" >> $LOGFILE
[1021]2521echo "lsmod result:" >> $LOGFILE
2522echo "-------------" >> $LOGFILE
2523lsmod >> $LOGFILE
[1399]2524MODULES="`cat /proc/modules | awk '{print $1}'`"
[1531]2525if [ -x /usr/sbin/esxcfg-module ]; then
[1797]2526 echo "-------------" >> $LOGFILE
[1497]2527 echo "VMWare ESX server detected - Enabling dedicated support" >> $LOGFILE
2528 echo "-------------" >> $LOGFILE
2529 echo "VMWare modules" >> $LOGFILE
2530 echo "-------------" >> $LOGFILE
[1531]2531 /usr/sbin/esxcfg-module -l >> $LOGFILE
[1764]2532 MODULES="$MODULES `/usr/sbin/esxcfg-module -l | awk '{print $1}'`"
[1497]2533fi
[1851]2534echo "FORCE_MODS:" >> $LOGFILE
[1021]2535echo "-------------" >> $LOGFILE
[1851]2536echo $FORCE_MODS >> $LOGFILE
[1882]2537echo "-------------" >> $LOGFILE
[1851]2538echo "DENY_MODS:" >> $LOGFILE
2539echo "-------------" >> $LOGFILE
2540echo $DENY_MODS >> $LOGFILE
2541echo "-------------" >> $LOGFILE
[1796]2542echo "df result:" >> $LOGFILE
[1785]2543echo "----------" >> $LOGFILE
[1796]2544df -T >> $LOGFILE
[1785]2545echo "-------------" >> $LOGFILE
[1230]2546echo "Liste of extra modules is:" >> $LOGFILE
2547echo "$EXTRA_MODS" >> $LOGFILE
2548echo "-------------" >> $LOGFILE
[747]2549
[1723]2550# Compute libata version
[1797]2551laver=`modinfo libata | grep -Ei '^Version:' | cut -d: -f2 | cut -d. -f1 | sed 's/ *//g' 2> /dev/null`
[1723]2552# If libata v2 is used then remove ide-generic as it will perturbate boot
[1726]2553if [ "`echo $MODULES | grep libata`" ]; then
[1727]2554 if [ "$laver" = "2" ]; then
[1726]2555 DENY_MODS="$DENY_MODS ide-generic"
[1727]2556 echo "ide-generic removed from module list as your system uses libata v2+" >> $LOGFILE
[1726]2557 echo "-------------" >> $LOGFILE
2558 fi
[1723]2559fi
2560
[747]2561FLOPPY_WAS_MOUNTED=""
2562for mtpt in /media/floppy /mnt/floppy /floppy ; do
2563 if mount | grep -w $mtpt &> /dev/null ; then
2564 FLOPPY_WAS_MOUNTED="$FLOPPY_WAS_MOUNTED $mtpt"
2565 umount $mtpt
2566 fi
2567done
2568
[1684]2569#
2570# If we have a USB device we need to store info
2571# and remove it from the parameters line
2572#
[747]2573if [ "$#" -ne "0" ] ; then
[1684]2574 if [ "$1" = "--usb" ] ; then
2575 shift
2576 USBDEVICE=$1
2577 if [ _"$USBDEVICE" = _"" ]; then
2578 Die "No USB device specified"
2579 fi
2580 shift
2581 fi
2582fi
2583
2584if [ "$#" -ne "0" ] ; then
[747]2585 if [ "$1" = "--findkernel" ] ; then
2586 res=`TryToFindKernelPath`
[1336]2587 # Avoids logfile content for mondo
2588 export MONDO_SHARE=""
[747]2589 if [ "$res" = "" ] ; then
[925]2590 MindiExit -1
[747]2591 else
2592 echo "$res"
[925]2593 MindiExit 0
[747]2594 fi
[1720]2595 elif [ "$1" = "--locatedeps" ] ; then
2596 [ ! "$2" ] && Die "Please specify the binary to look at"
2597 LocateDeps $2
2598 # Avoids logfile content for mondo
2599 export MONDO_SHARE=""
2600 MindiExit $?
[1815]2601 elif [ "$1" = "--readalllink" ] ; then
2602 [ ! "$2" ] && Die "Please specify the binary to look at"
2603 ReadAllLink $2
2604 # Avoids logfile content for mondo
2605 export MONDO_SHARE=""
2606 MindiExit $?
[747]2607 elif [ "$1" = "--makemountlist" ] ; then
2608 [ ! "$2" ] && Die "Please specify the output file"
2609 MakeMountlist $2
[1336]2610 # Avoids logfile content for mondo
2611 export MONDO_SHARE=""
[925]2612 MindiExit $?
2613 elif [ "$1" = "-V" ] || [ "$1" = "-v" ] || [ "$1" = "--version" ] || [ "$1" = "-version" ] ; then
2614 echo "Mindi v$MINDI_VERSION"
[1336]2615 # Avoids logfile content for mondo
2616 export MONDO_SHARE=""
[925]2617 MindiExit 0
[747]2618 elif [ "$#" -ge "9" ] && [ "$1" = "--custom" ] ; then
[940]2619 MONDO_TMP=$2
2620 # Change MINDI_TMP for the one provided by mondo
2621 # So that it can get back the built files
[1010]2622 mv $MINDI_TMP/* $MINDI_TMP/.??* $MONDO_TMP 2> /dev/null
2623 rmdir $MINDI_TMP
[1486]2624 export MINDI_TMP=$MONDO_TMP
[953]2625 mkdir -p $MINDI_TMP
[1696]2626 # This is the scratch dir in mondo - subdir images
[1880]2627 MINDI_CACHE=$3
2628 if [ _"$MINDI_CACHE" != _"" ]; then
2629 mkdir -p $MINDI_CACHE
[938]2630 fi
[925]2631 kernelpath=$4; [ "$kernelpath" = "(null)" ] && kernelpath=""
[747]2632###
2633### Sq-Modification...
2634### Attempt to locate kernel specific module path
2635### if module path is found then use it other wise use uname -r to set it...
2636###
2637 kernelname=`echo $kernelpath | cut -d'-' -f2-`
[963]2638 LogIt "kernelname = $kernelname"
2639 LogIt "kernelpath = $kernelpath"
[747]2640 if [ ! -d "/lib/modules/$kernelname" ] && [ "$kernelpath" != "FAILSAFE" ]
2641 then
[963]2642 LogIt "Module path for ${kernelpath} not found..."
2643 LogIt "using running kernel\'s modules."
[747]2644 kernelname=`uname -r`
2645 else
[963]2646 LogIt "Using modules for kernel: ${kernelname}"
[747]2647 fi
2648###
2649### end of Sq-Modification
2650###
[925]2651 TAPEDEV=$5
2652 TAPESIZE=$6
2653 FILES_IN_FILELIST=$7
2654 USE_LZO=$8
2655 CDRECOVERY=$9
[747]2656 if [ "${10}" = "(null)" ] || [ "${10}" = "" ] ; then
2657 IMAGE_DEVS=""
2658 else
2659 IMAGE_DEVS="`echo "${10}" | tr '|' ' '`"
2660 fi
[925]2661 if [ "${11}" ] ; then
2662 LILO_OPTIONS=""
2663 # LogIt "LILO will use conservative settings, to be compatible with older BIOSes."
2664 fi
2665 LAST_FILELIST_NUMBER=${12}
[747]2666 ESTIMATED_TOTAL_NOOF_SLICES=${13}
2667 EXCLUDE_DEVS="${14}"
2668 USE_COMP="${15}"
2669 USE_LILO="${16}"
[925]2670 USE_STAR="${17}"
2671 INTERNAL_TAPE_BLOCK_SIZE="${18}"
[747]2672 DIFFERENTIAL="${19}"
[998]2673 USE_GZIP="${20}"
2674 NOT_BOOT="${21}"
[747]2675 [ "$USE_COMP" = "" ] && USE_COMP=yes
[998]2676 [ "$USE_GZIP" = "" ] && USE_GZIP=no
[747]2677 [ "$NOT_BOOT" = "" ] && NOT_BOOT=no
[963]2678 [ "$TAPEDEV" ] && LogIt "This is a tape-based backup. Fine."
[925]2679 [ "$kernelpath" = "" ] && kernelpath=`TryToFindKernelPath`
[747]2680 kernelname=`echo $kernelpath | cut -d'-' -f2-`
2681 if [ ! -d "/lib/modules/$kernelname" ] && [ "$kernelpath" != "FAILSAFE" ]
2682 then
[963]2683 LogIt "Module path for ${kernelpath} not found..."
2684 LogIt "using running kernel\'s modules."
[747]2685 kernelname=`uname -r`
2686 else
[963]2687 LogIt "Using modules for kernel: ${kernelname}"
[747]2688 fi
[925]2689 [ "$CDRECOVERY" = "yes" ] && [ "$TAPEDEV" != "" ] && Die "Sorry, you can't use --cd-recovery and --write-tapes at the same time"
[1696]2690 # MONDO_ROOT is the real scratchdir
[1880]2691 MONDO_ROOT=`echo $MINDI_CACHE | sed 's/\(.*\)\/.*/\1/'`
[938]2692 if [ _"$MONDO_ROOT" != _"" ]; then
2693 mkdir -p $MONDO_ROOT
2694 else
2695 Die "MONDO_ROOT is undefined"
2696 fi
[747]2697 else
[925]2698 echo "Syntax: mindi (--custom ....)" >> /dev/stderr
2699 MindiExit -1
[747]2700 fi
2701fi
2702[ "$CDRECOVERY" = "yes" ] || CDRECOVERY=no
2703
[1684]2704if [ _"$MONDO_SHARE" = _"" ]; then
[963]2705 LogIt "Mindi Linux mini-distro generator v$MINDI_VERSION"
2706 LogIt "Latest Mindi is available from http://www.mondorescue.org"
2707 LogIt "BusyBox sources are available from http://www.busybox.net"
[747]2708 LogIt "------------------------------------------------------------------------------"
2709else
[1315]2710 echo "You are using Mindi-Linux v$MINDI_VERSION to make boot+data disks" >> $LOGFILE
[747]2711fi
[1005]2712if [ -f $MINDI_LIB/rootfs/bin/busybox ]; then
2713 LogIt "Mindi-`$MINDI_LIB/rootfs/bin/busybox 2>&1 | head -1`"
2714else
2715 LogIt "Unable to find mindi-busybox, please install it"
2716 MindiExit -1
2717fi
[747]2718
2719# for Mandrake 9.2, which comes with two aes.o.gz modules :-/
2720insmod /lib/modules/`uname -r`/*/*/misc/aes.*o.gz >> $LOGFILE 2>> $LOGFILE
2721for i in loop cdrom ide-cd isofs linear raid0 raid1 raid5 ; do
2722 insmod $i >> $LOGFILE 2>> $LOGFILE
2723done
2724
2725KERN_DISK_MADE=""
2726
2727echo "DIFFERENTIAL = $DIFFERENTIAL" >> $LOGFILE
2728echo "INTERNAL TAPE BLOCK SIZE = $INTERNAL_TAPE_BLOCK_SIZE" >> $LOGFILE
2729echo "NOT_BOOT = '$NOT_BOOT'" >> $LOGFILE
2730if [ "$NOT_BOOT" != "" ] && [ "$NOT_BOOT" != "0" ] && [ "$NOT_BOOT" != "no" ] ; then
[963]2731 LogIt "Just creating mondo-restore.cfg and a small all.tar.gz for Mondo. Nothing else."
[940]2732 MakeMondoConfigFile $MINDI_TMP/mondo-restore.cfg
2733 MakeMountlist $MINDI_TMP/mountlist.txt
2734 mkdir -p $MINDI_TMP/small-all/tmp
2735 cd $MINDI_TMP/small-all
[953]2736 cp -f $MINDI_TMP/{mountlist.txt,mondo-restore.cfg,filelist.full.gz,biggielist.txt} tmp 2>/dev/null || Die "Cannot copy small all.tar.gz"
[1913]2737 tar -cv ./tmp | gzip -9 > $MINDI_TMP/all.tar.gz || Die "Cannot make small all.tar.gz"
[747]2738 sleep 2
[963]2739 LogIt "Done. Exiting."
[925]2740 MindiExit 0
[747]2741fi
2742
[1690]2743if [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ] && [ "$USBDEVICE" != "" ]; then
[1684]2744 LogIt "Including the generation of a Bootable USB device on $USBDEVICE"
2745fi
2746
[747]2747if [ "$kernelpath" = "" ] ; then
[1335]2748 [ _"$MONDO_SHARE" != _"" ] && Die "Please use -k <path> to specify kernel."
[966]2749 echo -en "Do you want to use your own kernel to build the boot disk ([y]/n) ?"
2750 read ch
2751 if [ "$ch" != "n" ] && [ "$ch" != "N" ] ; then
2752 USE_OWN_KERNEL="yes"
[1809]2753 else
2754 USE_OWN_KERNEL="no"
[747]2755 fi
2756 if [ "$USE_OWN_KERNEL" = "yes" ]; then
[925]2757 YOUR_KERNEL_SUCKS=""
2758 kernelpath=`TryToFindKernelPath`
2759 if [ "$kernelpath" = "" ] ; then
2760 echo -n "Please enter kernel path : "
2761 read kernelpath
2762 fi
[747]2763 else
[925]2764 YOUR_KERNEL_SUCKS="That's why you're using mine, dude. :-)"
[747]2765 fi
2766fi
2767if [ "$YOUR_KERNEL_SUCKS" != "" ] || [ "$kernelpath" = "" ] || [ "$kernelpath" = "SUCKS" ] || [ "$kernelpath" = "FAILSAFE" ] ; then
[1885]2768 # If we have a distribution-specific script for finding a FAILSAFE kernel, use it.
2769 if [ -f "$MINDI_LIB/FindDistroFailsafe" ] && [ ! "$1" = "--makemountlist" ]; then
2770 source $MINDI_LIB/FindDistroFailsafe
2771 # Log kernel image
2772 LogIt "FAILSAFE kernel image to be used is: $FAILSAFE_KBIN ($FAILSAFE_KVER)"
2773 kernelpath="$FAILSAFE_KBIN"
2774 LogIt "I shall include a failsafe kernel, not your kernel, in the boot disks.\n"
2775 LogIt "The failsafe kernel is $kernelpath.\n"
2776 LogIt "However, you are still running your kernel. If Mindi fails to create your\n"
2777 LogIt "disks then it may still be a result of a problem with your kernel.\n"
2778 pwd=`pwd`
2779 cd $MINDI_TMP
2780 mkdir -p lib/modules
2781 cp -a "/lib/modules/$FAILSAFE_KVER" "lib/modules/$FAILSAFE_KVER" || Die "Cannot copy kernel modules."
2782 cd $pwd
2783 else
2784 kernelpath=$MINDI_LIB/vmlinuz
2785 LogIt "I shall include Mindi's failsafe kernel, not your kernel, in the boot disks."
2786 LogIt "However, you are still running your kernel. If Mindi fails to create your"
2787 LogIt "disks then it may still be a result of a problem with your kernel."
2788 pwd=`pwd`
2789 cd $MINDI_TMP
2790 bzip2 -dc $MINDI_LIB/lib.tar.bz2 | tar -x || Die "Cannot unzip lib.tar.bz2"
2791 cd $pwd
2792 fi
[747]2793 YOUR_KERNEL_SUCKS="Your kernel sucks"
2794fi
[1880]2795echo -e "Mindi's temp dir = $MINDI_TMP \nMindi's output dir=$MINDI_CACHE" >> $LOGFILE
[963]2796[ "$(($RANDOM%64))" -eq "0" ] && LogIt "Dude, I've looked inside your computer and it's really dusty..."
[747]2797
[965]2798[ "$YOUR_KERNEL_SUCKS" ] && [ ! "$FAILSAFE_KVER" ] && Die "Please install mindi-kernel package. You need it.\nGo to http://www.mondorescue.org and download it, then install it."
[747]2799
[1983]2800PrepareDataDiskImages
2801
[747]2802ramdisk_size=$(($size_of_all_tools+$EXTRA_SPACE))
2803rds=$(($ramdisk_size-$((ramdisk_size%4096))))
[1983]2804export ramdisk_size=$rds
[747]2805
2806echo "Ramdisk will be $ramdisk_size KB" >> $LOGFILE
[1567]2807if [ "$ARCH" = "ia64" ] ; then
[1983]2808 PrepareBootDiskImage_LILO $kernelpath || Die "Failed to create ia64 image disk image."
[1567]2809else
[1983]2810 PrepareBootDiskImage_SYSLINUX $kernelpath || Die "Failed to create $ramdisk_size MB disk image."
[747]2811fi
2812
2813[ -e "$MINDI_LIB/memtest.img" ] && BOOT_MEDIA_MESSAGE="$BOOT_MEDIA_MESSAGE\n\
2814...Or type 'memtest' to test your PC's RAM thoroughly.\n"
2815
[1684]2816if [ _"$MONDO_SHARE" = _"" ]; then
[1983]2817 ListImagesForUser
2818 OfferToMakeBootableISO
[1684]2819 if [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ]; then
[1983]2820 OfferToMakeBootableUSB
[1684]2821 fi
[963]2822 LogIt "Finished."
[747]2823elif [ "$TAPEDEV" ] ; then
[1901]2824 rm -f $MINDI_CACHE/{*img,*iso}
[1898]2825 if [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ] && [ "$USBDEVICE" != "" ]; then
[1983]2826 OfferToMakeBootableUSB
[1898]2827 fi
[1983]2828 OfferToMakeBootableISO
[1880]2829 if [ -e "$MINDI_CACHE/all.tar.gz" ] ; then
2830 cp -f $MINDI_CACHE/all.tar.gz $MINDI_TMP/ 2>> $LOGFILE
[747]2831 else
[925]2832 Die "Cannot find all.tar.gz, to be written to tape"
[747]2833 fi
[1695]2834elif [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ] && [ "$USBDEVICE" != "" ]; then
[1983]2835 OfferToMakeBootableUSB
[747]2836else
[1983]2837 OfferToMakeBootableISO
[747]2838fi
2839# cleanup
[963]2840LogIt "$FRIENDLY_OUTSTRING"
[747]2841for mtpt in $FLOPPY_WAS_MOUNTED ; do
2842 mount $mtpt
2843done
[925]2844MindiExit 0
Note: See TracBrowser for help on using the repository browser.