mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-10-29 22:43:48 +00:00
32 lines
876 B
Diff
32 lines
876 B
Diff
|
From b297035577d01cfdffa8d19079fc8c971af5c8da Mon Sep 17 00:00:00 2001
|
||
|
From: Kevin Mihelich <kevin@archlinuxarm.org>
|
||
|
Date: Mon, 16 Oct 2017 08:00:32 -0600
|
||
|
Subject: [PATCH] enable dtc 1.4.5 flags
|
||
|
|
||
|
---
|
||
|
Makefile | 8 ++++----
|
||
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
||
|
|
||
|
diff --git a/Makefile b/Makefile
|
||
|
index c723aa7..a3eec98 100644
|
||
|
--- a/Makefile
|
||
|
+++ b/Makefile
|
||
|
@@ -34,10 +34,10 @@ endif
|
||
|
|
||
|
DTC_FLAGS += -Wno-unit_address_vs_reg
|
||
|
#New DTC Flags for v1.4.5 (Debian 9.x (Buster))
|
||
|
-#DTC_FLAGS += -Wno-dmas_property
|
||
|
-#DTC_FLAGS += -Wno-gpios_property
|
||
|
-#DTC_FLAGS += -Wno-pwms_property
|
||
|
-#DTC_FLAGS += -Wno-interrupts_property
|
||
|
+DTC_FLAGS += -Wno-dmas_property
|
||
|
+DTC_FLAGS += -Wno-gpios_property
|
||
|
+DTC_FLAGS += -Wno-pwms_property
|
||
|
+DTC_FLAGS += -Wno-interrupts_property
|
||
|
|
||
|
# Beautify output
|
||
|
# ---------------------------------------------------------------------------
|
||
|
--
|
||
|
2.14.1
|
||
|
|