mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-24 01:07:21 +01:00
847ae21203
Reviewed by: imp Sponsored by: The FreeBSD Foundation
9 lines
181 B
Bash
Executable File
9 lines
181 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
|
|
# Script generates a $2/fdt_static_dtb.h file.
|
|
|
|
dtb_base_name=`basename $1 .dts`
|
|
echo '#define FDT_DTB_FILE "'${dtb_base_name}.dtb'"' > $2/fdt_static_dtb.h
|