From 6b5bb447b11a31fc0961c20485505a633c9ab4eb Mon Sep 17 00:00:00 2001
From: Mystery Man <unknown@mandriva.org>
Date: Wed, 31 Jul 2002 23:10:55 +0000
Subject: This commit was manufactured by cvs2svn to create tag 'V1_1_8_16mdk'.

---
 tools/ppc/mkINSTALLCD | 78 ---------------------------------------------------
 1 file changed, 78 deletions(-)
 delete mode 100755 tools/ppc/mkINSTALLCD

(limited to 'tools/ppc/mkINSTALLCD')

diff --git a/tools/ppc/mkINSTALLCD b/tools/ppc/mkINSTALLCD
deleted file mode 100755
index e05ec8b54..000000000
--- a/tools/ppc/mkINSTALLCD
+++ /dev/null
@@ -1,78 +0,0 @@
-#
-# quick script to make bootable HFS CD for linux
-#
-#
-#!/bin/sh
-#
-#mkCD1 <CD tree> <output image name>
-#Parameters:
-
-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: mkCD1 <CD tree> <output image name>'
-	exit 1
-fi
-
-if [ ! -d $1 ] ; then
-	echo 'CD tree $1 is not a directory!'
-	echo 'usage: mkCD1 <CD tree> <output image name>'
-	exit 1
-fi
-
-# select the appropriate mkhybrid binary depending on if
-# we are on x86 or ppc
-
-ARCH=`uname -m | sed -e 's/i.86/i386/' -e 's/sparc.*/sparc/'`
-
-if [ "$ARCH" == "ppc" ]; then
-    MKHYBRID=mkhybrid-1.12b5.4
-else
-    if [ "$ARCH" == "i386" ]; then
-	MKHYBRID=mkhybrid-1.12b5.4-x86
-    else 
-	echo "Sorry, no mkhybrid binary for $ARCH..."
-	exit
-    fi
-fi
-
-#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`
-
-$curPwd/$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' \
--pad \
--o $2 \
-$1 
-
-#Bless boot folder so yaboot can boot
-hmount $2
-hattrib -b boot
-hcd boot
-hattrib -t tbxi yaboot
-humount
-- 
cgit v1.2.1