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/armv7 | |
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/armv7')
-rw-r--r-- | distrib/armv7/miniroot/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/armv7/miniroot/Makefile.inc b/distrib/armv7/miniroot/Makefile.inc index bd6e132572f..c454c20dd8c 100644 --- a/distrib/armv7/miniroot/Makefile.inc +++ b/distrib/armv7/miniroot/Makefile.inc @@ -1,6 +1,6 @@ -# $OpenBSD: Makefile.inc,v 1.25 2019/10/31 00:37:25 jsg Exp $ +# $OpenBSD: Makefile.inc,v 1.26 2020/05/17 17:04:27 deraadt Exp $ -FS= miniroot-${BOARD}-${OSrev}.fs +FS= miniroot-${BOARD}-${OSrev}.img FSSIZE= 67584 # ffs+msdos, actually MOUNT_POINT= /mnt |