aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAurelien Jarno <aurelien@aurel32.net>2019-10-03 22:50:07 +0200
committerAurelien Jarno <aurelien@aurel32.net>2019-10-03 22:50:07 +0200
commitc4f9022225c566eddeca7f180bb1464d4b2f167b (patch)
tree8f845b8811fb1710d0798d4dca87eafa0481c87f
parent263ffea1717c37378581c991a43278de085a9033 (diff)
downloadkernel_replicant_linux-c4f9022225c566eddeca7f180bb1464d4b2f167b.tar.gz
kernel_replicant_linux-c4f9022225c566eddeca7f180bb1464d4b2f167b.tar.bz2
kernel_replicant_linux-c4f9022225c566eddeca7f180bb1464d4b2f167b.zip
[riscv64] Install DTBS using dtbs_install target.
-rw-r--r--debian/changelog1
-rw-r--r--debian/rules.real2
2 files changed, 2 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 1c7ef7008e36..5e5cdc83b876 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,7 @@ linux (5.3.2-1~exp2) UNRELEASED; urgency=medium
* [riscv64] Enable SOC_SIFIVE. Do not select CLK_SIFIVE,
CLK_SIFIVE_FU540_PRCI, SIFIVE_PLIC, SERIAL_SIFIVE and
SERIAL_SIFIVE_CONSOLE as they are selected by SOC_SIFIVE.
+ * [riscv64] Install DTBS using dtbs_install target.
-- Aurelien Jarno <aurel32@debian.org> Thu, 03 Oct 2019 22:27:24 +0200
diff --git a/debian/rules.real b/debian/rules.real
index 1b9871980614..b3c1f0ecfc5f 100644
--- a/debian/rules.real
+++ b/debian/rules.real
@@ -463,7 +463,7 @@ endif
install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_dt: DT_INSTALL_DIR = $(PACKAGE_DIR)/usr/lib/linux-image-$(REAL_VERSION)
install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_dt:
-ifneq ($(filter arm64 armel armhf mipsr6 mipsr6el mips64r6 mips64r6el,$(ARCH)),)
+ifneq ($(filter arm64 armel armhf mipsr6 mipsr6el mips64r6 mips64r6el riscv64,$(ARCH)),)
+$(MAKE_CLEAN) -C $(DIR) dtbs
+$(MAKE_CLEAN) -C $(DIR) dtbs_install INSTALL_DTBS_PATH=$(CURDIR)/$(DT_INSTALL_DIR)
endif