diff options
author | marcel <marcel@FreeBSD.org> | 2014-07-07 00:27:09 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2014-07-07 00:27:09 +0000 |
commit | 9f28abd980752efcf77578cd494f1015083c2a2b (patch) | |
tree | 98db2559cee662a9de7212211dd5c69176b58254 /release/ia64 | |
parent | 43f783bfcf60b349841acd57895767177114e4ae (diff) | |
download | FreeBSD-src-9f28abd980752efcf77578cd494f1015083c2a2b.zip FreeBSD-src-9f28abd980752efcf77578cd494f1015083c2a2b.tar.gz |
Remove ia64.
This includes:
o All directories named *ia64*
o All files named *ia64*
o All ia64-specific code guarded by __ia64__
o All ia64-specific makefile logic
o Mention of ia64 in comments and documentation
This excludes:
o Everything under contrib/
o Everything under crypto/
o sys/xen/interface
o sys/sys/elf_common.h
Discussed at: BSDcan
Diffstat (limited to 'release/ia64')
-rwxr-xr-x | release/ia64/make-memstick.sh | 38 | ||||
-rw-r--r-- | release/ia64/mkisoimages.sh | 85 |
2 files changed, 0 insertions, 123 deletions
diff --git a/release/ia64/make-memstick.sh b/release/ia64/make-memstick.sh deleted file mode 100755 index c9ff580..0000000 --- a/release/ia64/make-memstick.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/sh -# -# This script generates a "memstick image" (image that can be copied to a -# USB memory stick) from a directory tree. Note that the script does not -# clean up after itself very well for error conditions on purpose so the -# problem can be diagnosed (full filesystem most likely but ...). -# -# Usage: make-memstick.sh <directory tree> <image filename> -# -# $FreeBSD$ -# - -PATH=/bin:/usr/bin:/sbin:/usr/sbin -export PATH - -BLOCKSIZE=10240 - -if [ $# -ne 2 ]; then - echo "make-memstick.sh /path/to/directory /path/to/image/file" - exit 1 -fi - -if [ ! -d ${1} ]; then - echo "${1} must be a directory" - exit 1 -fi - -if [ -e ${2} ]; then - echo "won't overwrite ${2}" - exit 1 -fi - -makefs -B little ${2} ${1} -if [ $? -ne 0 ]; then - echo "makefs failed" - exit 1 -fi - diff --git a/release/ia64/mkisoimages.sh b/release/ia64/mkisoimages.sh deleted file mode 100644 index 20b0153..0000000 --- a/release/ia64/mkisoimages.sh +++ /dev/null @@ -1,85 +0,0 @@ -#!/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. - -set -e - -if [ "x$1" = "x-b" ]; then - bootable=yes - shift -else - bootable=no -fi - -if [ $# -lt 3 ]; then - echo usage: $0 '[-b] label iso-name base-dir [extra-dir]' - exit 1 -fi - -LABEL=`echo $1 | tr '[:lower:]' '[:upper:]'`; shift -NAME=$1; shift -BASE=$1; shift - -EFIPART=efipart.sys - -# To create a bootable CD under EFI, the boot image should be an EFI -# system partition. -if [ $bootable = yes ]; then - EFISZ=65536 - MNT=/mnt - dd if=/dev/zero of=$EFIPART count=$EFISZ - md=`mdconfig -a -t vnode -f $EFIPART` - newfs_msdos -F 12 -S 512 -h 4 -o 0 -s $EFISZ -u 16 $md - mount -t msdosfs /dev/$md $MNT - mkdir -p $MNT/efi/boot $MNT/boot $MNT/boot/kernel - cp -R $BASE/boot/defaults $MNT/boot - cp $BASE/boot/kernel/kernel $MNT/boot/kernel - if [ -s $BASE/boot/kernel/ispfw.ko ]; then - cp $BASE/boot/kernel/ispfw.ko $MNT/boot/kernel - fi - cp $BASE/boot/device.hints $MNT/boot - cp $BASE/boot/loader.* $MNT/boot - if [ -s $BASE/boot/mfsroot.gz ]; then - cp $BASE/boot/mfsroot.gz $MNT/boot - fi - cp $BASE/boot/color.4th $MNT/boot - cp $BASE/boot/support.4th $MNT/boot - cp $BASE/boot/check-password.4th $MNT/boot - cp $BASE/boot/screen.4th $MNT/boot - mv $MNT/boot/loader.efi $MNT/efi/boot/bootia64.efi - echo kern.cam.boot_delay=\"3000\" >> $MNT/boot/loader.conf - echo vfs.root.mountfrom=\"cd9660:iso9660/$LABEL\" >> $MNT/boot/loader.conf - umount $MNT - mdconfig -d -u $md - BOOTOPTS="-o bootimage=i386;$EFIPART -o no-emul-boot" -else - BOOTOPTS="" -fi - -publisher="The FreeBSD Project. http://www.FreeBSD.org/" -echo "/dev/iso9660/$LABEL / cd9660 ro 0 0" > $BASE/etc/fstab -makefs -t cd9660 $BOOTOPTS -o rockridge -o label=$LABEL -o publisher="$publisher" $NAME $BASE $* -rm $BASE/etc/fstab -rm -f $EFIPART -exit 0 |