aboutsummaryrefslogtreecommitdiff
path: root/machine/machine.ac
diff options
context:
space:
mode:
authorYan <892930505@qq.com>2020-10-30 05:27:39 +0800
committerGitHub <noreply@github.com>2020-10-29 14:27:39 -0700
commita161e6f3ef31004e47a5b94b85c2e84b764f8637 (patch)
tree1a28b326a3caffd63091e079e4f00f0680c2ce0e /machine/machine.ac
parentf7df78365f9aca4102a6d7136ea58b91f51c13cb (diff)
downloadpk-a161e6f3ef31004e47a5b94b85c2e84b764f8637.zip
pk-a161e6f3ef31004e47a5b94b85c2e84b764f8637.tar.gz
pk-a161e6f3ef31004e47a5b94b85c2e84b764f8637.tar.bz2
Disable device tree filter when load a dts from file (#217)
* add device tree in elf, using --with-dts to add the absolute path of device tree * Disable device tree filter
Diffstat (limited to 'machine/machine.ac')
-rw-r--r--machine/machine.ac4
1 files changed, 4 insertions, 0 deletions
diff --git a/machine/machine.ac b/machine/machine.ac
index a787113..e3033b2 100644
--- a/machine/machine.ac
+++ b/machine/machine.ac
@@ -4,3 +4,7 @@ AC_ARG_ENABLE([fp-emulation], AS_HELP_STRING([--disable-fp-emulation], [Disable
AS_IF([test "x$enable_fp_emulation" != "xno"], [
AC_DEFINE([PK_ENABLE_FP_EMULATION],,[Define if floating-point emulation is enabled])
])
+
+AC_ARG_WITH([dts], AS_HELP_STRING([--with-dts], [Support a machine dts]),
+ [AC_SUBST([MACHINE_DTS], $with_dts, [machine dts])]
+)