summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2006-03-10 11:31:09 +0000
committerPascal Rigaux <pixel@mandriva.com>2006-03-10 11:31:09 +0000
commit9b1fead52ab483870c1a09665f53b19a7c9eef6e (patch)
tree68d01e5894f460bcbc8da886707dabc5b2a6d3d6 /tools
parent1caafef0ad333675385d001e3f9175f8ef1a2db8 (diff)
downloaddrakx-backup-do-not-use-9b1fead52ab483870c1a09665f53b19a7c9eef6e.tar
drakx-backup-do-not-use-9b1fead52ab483870c1a09665f53b19a7c9eef6e.tar.gz
drakx-backup-do-not-use-9b1fead52ab483870c1a09665f53b19a7c9eef6e.tar.bz2
drakx-backup-do-not-use-9b1fead52ab483870c1a09665f53b19a7c9eef6e.tar.xz
drakx-backup-do-not-use-9b1fead52ab483870c1a09665f53b19a7c9eef6e.zip
mkcd should be used instead
Diffstat (limited to 'tools')
-rwxr-xr-xtools/ppc/mkINSTALLCD71
1 files changed, 0 insertions, 71 deletions
diff --git a/tools/ppc/mkINSTALLCD b/tools/ppc/mkINSTALLCD
deleted file mode 100755
index d7686f01d..000000000
--- a/tools/ppc/mkINSTALLCD
+++ /dev/null
@@ -1,71 +0,0 @@
-#!/bin/sh
-# shell script to build a bootable hybrid PPC CD
-
-if ! rpm -q hfsutils ; then
- echo 'You need hfsutils installed!!'
- exit 1
-fi
-
-if [ -e $2 ] ; then
- echo "Output image $2 exists, please delete"
- echo "usage: $0 <CD tree> <output image name>"
- exit 1
-fi
-
-if [ ! -d $1 ] ; then
- echo "CD tree $1 is not a directory!"
- echo "usage: $0 <CD tree> <output image name>"
- exit 1
-fi
-
-# select the appropriate mkhybrid binary depending on if
-# we are on x86 or ppc
-
-MKHYBRID=mkisofs
-
-#Change these when you build the CD..
-ApplicationID="Linux-Mandrake"
-PublisherID="Mandrakesoft"
-PreparerID="sbenedict@mandrakesoft.com"
-SystemID=PPC
-volid=ppc
-hfsVolid=Linux-Mandrake
-curPwd=`pwd`
-
-$MKHYBRID -part -hfs -r -l -J \
--A $ApplicationID \
--P $PublisherID \
--p $PreparerID \
--abstract "README" \
--sysid $SystemID \
--V $volid \
--volset "Update" \
--volset-size 2 \
--volset-seqno 1 \
--hfs-volid $hfsVolid \
--map $curPwd/mapping \
--magic $curPwd/magic \
--m "*.orig" \
--hide '*.MacOS' -hide '*.DOS' \
--hide-joliet '*.Unix' -hide-joliet '*.MacOS' \
--hide-hfs '*.Unix' -hide-hfs '*.DOS' \
--hfs-bless $1/boot \
--hfs-unlock \
--pad \
--o $2 \
-$1
-
-#Bless boot folder so yaboot can boot
-hmount $2
-hattrib -b boot
-hcd boot
-hattrib -t tbxi -c UNIX ofboot.b
-hattrib -t boot -c UNIX yaboot
-hattrib -t boot -c UNIX vmlinux
-hattrib -t boot -c UNIX vmlinux-2.4
-hattrib -t conf -c UNIX yaboot.conf
-hcd
-hcd BootX
-hrename Mandrake_Linux_Install.sit 'Mandrake Linux Install.sit'
-hattrib -t APPL -c STi0 'Mandrake Linux Install.sit'
-humount