Make IA64 a second port that comes with NO_FLOPPIES.

Reviewed by:	marcel
This commit is contained in:
Ruslan Ermilov 2003-07-29 18:29:44 +00:00
parent dda5f182ae
commit 0902bdbe14
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=118180
3 changed files with 16 additions and 30 deletions

View File

@ -218,12 +218,10 @@ MFSINODE= 8192
BIGBOOTLABEL= auto
MFSLABEL= auto
.elif ${TARGET_ARCH} == "ia64"
BIGBOOTLABEL= efi
BIGBOOTSIZE= 5154
BOOTINODE= 15872
MFSINODE= 8192
MFSLABEL= auto
MFSSIZE= 8192
NO_FLOPPIES=
.elif ${TARGET_ARCH} == "amd64"
MFSSIZE= 4096
MFSINODE= 8192

View File

@ -1,6 +0,0 @@
#!/bin/sh
#
# $FreeBSD$
#
sed -e 's/ident.*GENERIC/ident BOOTMFS/g'

View File

@ -73,27 +73,21 @@ EFIPART=efipart.sys
# system partition. Since we already made that on the boot floppy,
# we sneakily extract that.
if [ $bootable = yes ]; then
if [ -f $BASE/floppies/boot.flp ]; then
md=`mdconfig -a -t vnode -f $BASE/floppies/boot.flp`
dd if=/dev/${md}p1 of=$BASE/$EFIPART
mdconfig -d -u $md
else
EFISZ=20480
MNT=/mnt
dd if=/dev/zero of=$BASE/$EFIPART count=$EFISZ
md=`mdconfig -a -t vnode -f $BASE/$EFIPART`
newfs_msdos -F 12 -S 512 -h 4 -o 0 -s $EFISZ -u 16 $md
mount -t msdos /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
cp $BASE/boot/device.hints $MNT/boot
cp $BASE/boot/loader.* $MNT/boot
cp $BASE/boot/support.4th $MNT/boot
mv $MNT/boot/loader.efi $MNT/efi/boot/bootia64.efi
umount $MNT
mdconfig -d -u $md
fi
EFISZ=20480
MNT=/mnt
dd if=/dev/zero of=$BASE/$EFIPART count=$EFISZ
md=`mdconfig -a -t vnode -f $BASE/$EFIPART`
newfs_msdos -F 12 -S 512 -h 4 -o 0 -s $EFISZ -u 16 $md
mount -t msdos /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
cp $BASE/boot/device.hints $MNT/boot
cp $BASE/boot/loader.* $MNT/boot
cp $BASE/boot/support.4th $MNT/boot
mv $MNT/boot/loader.efi $MNT/efi/boot/bootia64.efi
umount $MNT
mdconfig -d -u $md
BOOTOPTS="-b $EFIPART -no-emul-boot"
fi