diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-05-17 17:04:30 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-05-17 17:04:30 +0000 |
commit | 3a070d405256a4bc550131cac65c4e5f68a4e2f2 (patch) | |
tree | ad8706884e6d9c852709d6122e6a3453fab0ef5a /distrib/amd64/ramdisk_cd/Makefile | |
parent | 71c1251d069316abdb33549d89b70dfd45f2f437 (diff) |
Change install images called *.fs to *.img. These are UFS filesystem images,
but additionally have a bootblock in the first 8K (since UFS does not use that
space). There are some UEFI direct-from-internet bootloaders that require
the name *.img. So this makes things more convenient for those, while keeping
it consistant in all architectures.
ok kettenis beck kn
Diffstat (limited to 'distrib/amd64/ramdisk_cd/Makefile')
-rw-r--r-- | distrib/amd64/ramdisk_cd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/amd64/ramdisk_cd/Makefile b/distrib/amd64/ramdisk_cd/Makefile index aad730de7f5..84cb5853ca3 100644 --- a/distrib/amd64/ramdisk_cd/Makefile +++ b/distrib/amd64/ramdisk_cd/Makefile @@ -1,6 +1,6 @@ -# $OpenBSD: Makefile,v 1.20 2019/06/07 14:39:56 deraadt Exp $ +# $OpenBSD: Makefile,v 1.21 2020/05/17 17:04:27 deraadt Exp $ -FS= miniroot${OSrev}.fs +FS= miniroot${OSrev}.img FSSIZE= 9600 FSDISKTYPE= mini34 CDROM= cd${OSrev}.iso @@ -107,7 +107,7 @@ install: clean cleandir: rm -f *.core mr.fs instbin instbin.mk instbin*.cache \ - *.o *.lo *.c bsd bsd.rd bsd.gz bsd.strip floppy*.fs \ + *.o *.lo *.c bsd bsd.rd bsd.gz bsd.strip floppy*.img \ lib*.a lib*.olist instbin.map boot instbin.conf ${FS} rm -rf mr.fs.d rm -f ${CDROM} |