#!/bin/sh [ $# != 1 -a $# != 2 ] && { echo "usage: make_partimage_save_rest_all []" ; 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 < .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