diff options
author | raj <raj@FreeBSD.org> | 2010-06-13 13:30:26 +0000 |
---|---|---|
committer | raj <raj@FreeBSD.org> | 2010-06-13 13:30:26 +0000 |
commit | 98ef42faa8ab64ebb0e40f4ba466f8cad0aaf3d7 (patch) | |
tree | 8d1e5b387cb2f580f0a5c4a69faf07c31f2384df | |
parent | 48f2ce50e598284d7c79d1111c68cc0e0f7c281d (diff) | |
download | FreeBSD-src-98ef42faa8ab64ebb0e40f4ba466f8cad0aaf3d7.zip FreeBSD-src-98ef42faa8ab64ebb0e40f4ba466f8cad0aaf3d7.tar.gz |
Enable ofwdump(8) on ARM as this is a useful tool to inspect a flattened
device tree.
-rw-r--r-- | usr.sbin/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile index 045cb05..4d492c5 100644 --- a/usr.sbin/Makefile +++ b/usr.sbin/Makefile @@ -498,6 +498,10 @@ _spkrtest= spkrtest _zzz= zzz .endif +.if ${MACHINE_ARCH} == "arm" +_ofwdump= ofwdump +.endif + .if ${MACHINE_ARCH} == "ia64" .if ${MK_ACPI} != "no" _acpi= acpi |