diff options
author | imp <imp@FreeBSD.org> | 2015-02-09 16:04:01 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2015-02-09 16:04:01 +0000 |
commit | 29c46f5621fcfb92c423c01a238bc6f2efb72458 (patch) | |
tree | c879f07f290df8bf84b9a4b0e540eb9f7ca36d1c /sys/conf | |
parent | d85c2669788ad8ce81e751519419446e0027efc2 (diff) | |
download | FreeBSD-src-29c46f5621fcfb92c423c01a238bc6f2efb72458.zip FreeBSD-src-29c46f5621fcfb92c423c01a238bc6f2efb72458.tar.gz |
Make sure that we define DTB{OWN,GRP,MODE} so install works.
Submitted by: Guy Yur
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/dtb.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/conf/dtb.mk b/sys/conf/dtb.mk index 9ba22cd..52b1b23 100644 --- a/sys/conf/dtb.mk +++ b/sys/conf/dtb.mk @@ -46,6 +46,9 @@ SYSDIR= ${_dir} .PATH: ${SYSDIR}/gnu/dts/${MACHINE} ${SYSDIR}/boot/fdt/dts/${MACHINE} DTBDIR?=/boot/dtb +DTBOWN?=root +DTBGRP?=wheel +DTBMODE?=444 DTB=${DTS:R:S/$/.dtb/} all: ${DTB} |