From 0fe86605c426e8b502553f9b43d7c053de018ae5 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 19 Apr 2005 13:09:22 +0000 Subject: - allow specifying something else than /data/box - acpi=ht by default --- rescue/make_partimage_save_rest_all | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'rescue/make_partimage_save_rest_all') diff --git a/rescue/make_partimage_save_rest_all b/rescue/make_partimage_save_rest_all index 3208b783e..e1be1ed2d 100755 --- a/rescue/make_partimage_save_rest_all +++ b/rescue/make_partimage_save_rest_all @@ -1,17 +1,20 @@ #!/bin/sh -[ $# != 1 -a $# != 2 ] && { - echo "usage: make_partimage_save_rest_all []" ; +[ $# != 1 -a $# != 2 -a $# != 3 ] && { + echo "usage: make_partimage_save_rest_all [ []]" ; exit 1 } rpm=$1 partimage_dir=$2 +local_where=$3 + where=/data/box +[ -z "$local_where" ] && local_where=$where if [ -n "$partimage_dir" ]; then - [ -d "$partimage_dir$where" ] || { - echo "can't find $partimage_dir$where" + [ -d "$partimage_dir$local_where" ] || { + echo "can't find $partimage_dir$local_where" exit 1 } fi @@ -24,7 +27,7 @@ PARTIMAGE_DIR="$where" PARTIMAGE_RPM=$rpm DISTRIB_DESCR="partimage save/restore mkdir -p .tmp/install/stage2 mv -f rescue.clp .tmp/install/stage2 -common_para="rescue automatic=method:cdrom" +common_para="rescue acpi=ht automatic=method:cdrom" # hda=4864,255,63 for action in save_all rest_all; do @@ -47,7 +50,7 @@ EOF if [ $action = rest_all ]; then mkdir -p .tmp$where - ln -s $partimage_dir$where/* .tmp$where + ln -s $partimage_dir$local_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 -- cgit v1.2.1