/release/powerpc/mkisoimages.sh

https://bitbucket.org/freebsd/freebsd-head/ · Shell · 69 lines · 33 code · 9 blank · 27 comment · 2 complexity · 44a948bb2f410fbbf481914db8daa220 MD5 · raw file

  1. #!/bin/sh
  2. #
  3. # Module: mkisoimages.sh
  4. # Author: Jordan K Hubbard
  5. # Date: 22 June 2001
  6. #
  7. # $FreeBSD$
  8. #
  9. # This script is used by release/Makefile to build the (optional) ISO images
  10. # for a FreeBSD release. It is considered architecture dependent since each
  11. # platform has a slightly unique way of making bootable CDs. This script
  12. # is also allowed to generate any number of images since that is more of
  13. # publishing decision than anything else.
  14. #
  15. # Usage:
  16. #
  17. # mkisoimages.sh [-b] image-label image-name base-bits-dir [extra-bits-dir]
  18. #
  19. # Where -b is passed if the ISO image should be made "bootable" by
  20. # whatever standards this architecture supports (may be unsupported),
  21. # image-label is the ISO image label, image-name is the filename of the
  22. # resulting ISO image, base-bits-dir contains the image contents and
  23. # extra-bits-dir, if provided, contains additional files to be merged
  24. # into base-bits-dir as part of making the image.
  25. if [ "x$1" = "x-b" ]; then
  26. # Apple boot code
  27. uudecode -o /tmp/hfs-boot-block.bz2 `dirname $0`/hfs-boot.bz2.uu
  28. bzip2 -d /tmp/hfs-boot-block.bz2
  29. OFFSET=$(hd /tmp/hfs-boot-block | grep 'Loader START' | cut -f 1 -d ' ')
  30. OFFSET=0x$(echo 0x$OFFSET | awk '{printf("%x\n",$1/512);}')
  31. dd if=$4/boot/loader of=/tmp/hfs-boot-block seek=$OFFSET conv=notrunc
  32. bootable="-o bootimage=macppc;/tmp/hfs-boot-block -o no-emul-boot"
  33. # pSeries/PAPR boot code
  34. mkdir -p $4/ppc/chrp
  35. cp $4/boot/loader $4/ppc/chrp
  36. cat > $4/ppc/bootinfo.txt << EOF
  37. <chrp-boot>
  38. <description>FreeBSD Install</description>
  39. <os-name>FreeBSD</os-name>
  40. <boot-script>boot &device;:&partition;,\ppc\chrp\loader</boot-script>
  41. </chrp-boot>
  42. EOF
  43. bootable="$bootable -o chrp-boot"
  44. # Playstation 3 boot code
  45. echo "FreeBSD Install='/boot/loader.ps3'" > $4/etc/kboot.conf
  46. shift
  47. else
  48. bootable=""
  49. fi
  50. if [ $# -lt 3 ]; then
  51. echo Usage: $0 '[-b] image-label image-name base-bits-dir [extra-bits-dir]'
  52. exit 1
  53. fi
  54. LABEL=$1; shift
  55. NAME=$1; shift
  56. echo "/dev/iso9660/`echo $LABEL | tr '[:lower:]' '[:upper:]'` / cd9660 ro 0 0" > $1/etc/fstab
  57. makefs -t cd9660 $bootable -o rockridge -o label=$LABEL $NAME $*
  58. rm $1/etc/fstab
  59. rm /tmp/hfs-boot-block
  60. rm -rf $1/ppc