Add files needed for PPC release ISOs. These are built with the

HFS/ISO9660 extensions to be bootable on Power Macs.

 boot.tbxi - the CHRP script executed by Open Firmware when auto-booting
             CDs
 hfs.map - map Unix files to HFS creator/type fields

Reviewed by:    ru
Submitted by:   ssouhlal
This commit is contained in:
Peter Grehan 2004-08-18 11:08:19 +00:00
parent 0e7e4e5fd6
commit 3f11b7d156
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=133950
4 changed files with 104 additions and 0 deletions

15
release/powerpc/boot.tbxi Normal file
View File

@ -0,0 +1,15 @@
<CHRP-BOOT>
<LICENSE>
$FreeBSD$
</LICENSE>
<COMPATIBLE>
MacRISC MacRISC3 MacRISC4
</COMPATIBLE>
<DESCRIPTION>
FreeBSD/PPC bootloader
</DESCRIPTION>
<BOOT-SCRIPT>
" screen" output
boot cd:,\boot\loader cd:0
</BOOT-SCRIPT>
</CHRP-BOOT>

View File

@ -0,0 +1,29 @@
# $FreeBSD$
buildopts -DRELEASE_CRUNCH -Dlint
srcdirs /usr/src/bin
progs hostname pwd rm sh test
ln sh -sh
ln test [
srcdirs /usr/src/gnu/usr.bin
progs cpio
srcdirs /usr/src/sbin
progs dhclient fsck_ffs ifconfig
progs mount_msdosfs mount_nfs newfs newfs_msdos route rtsol
progs slattach tunefs camcontrol
srcdirs /usr/src/usr.bin
progs find minigzip sed
ln minigzip gzip
ln minigzip gunzip
ln minigzip zcat
srcdirs /usr/src/usr.sbin
progs arp ppp
progs sysinstall usbd usbdevs
libs -ll -ledit -lutil -lkvm -lmd -lcrypt -lftpio -lz -lnetgraph
libs -ldialog -lncurses -ldisk -lcam -lkiconv -lsbuf -lufs

3
release/powerpc/hfs.map Normal file
View File

@ -0,0 +1,3 @@
# $FreeBSD$
.tbxi - 'chrp' 'tbxi' "bootstrap"
* - 'fbsd' 'TEXT' "FreeBSD file"

View File

@ -0,0 +1,57 @@
#!/bin/sh
#
# Module: mkisoimages.sh
# Author: Jordan K Hubbard
# Date: 22 June 2001
#
# $FreeBSD$
#
# This script is used by release/Makefile to build the (optional) ISO images
# for a FreeBSD release. It is considered architecture dependent since each
# platform has a slightly unique way of making bootable CDs. This script
# is also allowed to generate any number of images since that is more of
# publishing decision than anything else.
#
# Usage:
#
# mkisoimages.sh [-b] image-label image-name base-bits-dir [extra-bits-dir]
#
# Where -b is passed if the ISO image should be made "bootable" by
# whatever standards this architecture supports (may be unsupported),
# image-label is the ISO image label, image-name is the filename of the
# resulting ISO image, base-bits-dir contains the image contents and
# extra-bits-dir, if provided, contains additional files to be merged
# into base-bits-dir as part of making the image.
if [ "x$1" = "x-b" ]; then
cp /usr/src/release/powerpc/boot.tbxi ${4}/boot
bootable="-hfs-bless ${4}/boot -map /usr/src/release/powerpc/hfs.map"
shift
else
bootable=""
fi
if [ $# -lt 3 ]; then
echo Usage: $0 '[-b] image-label image-name base-bits-dir [extra-bits-dir]'
rm -f ${IMG}
exit 1
fi
type mkisofs 2>&1 | grep " is " >/dev/null
if [ $? -ne 0 ]; then
echo The cdrtools port is not installed. Trying to get it now.
if [ -f /usr/ports/sysutils/cdrtools/Makefile ]; then
cd /usr/ports/sysutils/cdrtools && make install BATCH=yes && make clean
else
if ! pkg_add -r cdrtools; then
echo "Could not get it via pkg_add - please go install this"
echo "from the ports collection and run this script again."
exit 2
fi
fi
fi
LABEL=$1; shift
NAME=$1; shift
mkisofs $bootable -r -hfs -part -no-desktop -hfs-volid $LABEL -l -J -L -o $NAME $*