diff options
author | Ed Maste <emaste@FreeBSD.org> | 2017-09-11 14:33:04 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2017-09-11 14:33:04 +0000 |
commit | e9346a94d12bef37f57e958dfafb7e2a9f1211a8 (patch) | |
tree | 7639a1ffb96fbe7d4776dbb448960bbba278cc96 /sys/boot/efi | |
parent | 970165f1903ea9757b1434ca826ba86a1fe98039 (diff) |
boot1: remove BOOT1_MAXSIZE default value
This Makefile relies on Makefile.fat providing the correct value for
BOOT1_MAXSIZE and BOOT1_OFFSET. Since BOOT1_OFFSET had no default value
here the build would already fail if Makefile.fat did not provide
correct values.
Sponsored by: The FreeBSD Foundation
Notes
Notes:
svn path=/head/; revision=323436
Diffstat (limited to 'sys/boot/efi')
-rw-r--r-- | sys/boot/efi/boot1/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/boot/efi/boot1/Makefile b/sys/boot/efi/boot1/Makefile index 598f4275ac77..1d23d9b96721 100644 --- a/sys/boot/efi/boot1/Makefile +++ b/sys/boot/efi/boot1/Makefile @@ -126,7 +126,6 @@ boot1.o: ${.CURDIR}/../../common/ufsread.c # created by generate-fat.sh .include "${.CURDIR}/Makefile.fat" -BOOT1_MAXSIZE?= 131072 boot1.efifat: boot1.efi @set -- `ls -l ${.ALLSRC}`; \ |