summaryrefslogtreecommitdiffstats
path: root/rescue/make_partimage_save_rest_all
blob: a513b4f3e9e9d54b1c87c0b17cec552ab8752332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/sh

[ $# != 1 -a $# != 2 ] && { 
    echo "usage: make_partimage_save_rest_all <partimage special rpm> [<partimage dir>]" ; 
    exit 1
}

rpm=$1
partimage_dir=$2
where=/data/box

if [ -n "$partimage_dir" ]; then
    [ -d "$partimage_dir$where" ] || {
	echo "can't find $partimage_dir$where"
	exit 1
    }
fi

rm -rf .tmp
mkdir -p .tmp/isolinux
cp -f /usr/lib/syslinux/isolinux.bin ../isolinux/alt0/* .tmp/isolinux

PARTIMAGE_DIR="$where" PARTIMAGE_RPM=$rpm DISTRIB_DESCR="partimage save/restore all" ./make_rescue_img
mkdir -p .tmp/install/stage2
mv -f rescue.clp .tmp/install/stage2

common_para="rescue automatic=method:cdrom"
# hda=4864,255,63

for action in save_all rest_all; do

    cat <<EOF > .tmp/isolinux/isolinux.cfg
default $action
prompt 1
timeout 150

label save_all
  kernel vmlinuz
  append initrd=all.rdz $common_para save_all
label rest_all
  kernel vmlinuz
  append initrd=all.rdz keepmounted rest_all
label rescue
  kernel vmlinuz
  append initrd=all.rdz
EOF

    if [ $action = rest_all ]; then
	mkdir -p .tmp$where
	ln -s $partimage_dir$where/* .tmp$where
    fi

    mkisofs -f -o part_$action.iso -r -J -hide-rr-moved -nobak -cache-inodes -publisher Mandrakesoft -V 'mdk part save/rest' -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table .tmp    
    mkcd --addmd5 part_$action.iso
done
 
rm -rf .tmp