mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-26 02:20:51 +01:00
031beb4e23
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
8 lines
169 B
Bash
Executable File
8 lines
169 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
|
|
# 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
|