diff options
| author | Christian Marangi | 2024-02-08 22:04:55 +0000 |
|---|---|---|
| committer | Christian Marangi | 2024-02-10 12:29:43 +0000 |
| commit | fbe86d0e91b26a9526ff7f55e3ac5ed4543914c2 (patch) | |
| tree | 4b12aaefc1fcf1860b5c6a02106a5cdf6910fece | |
| parent | 183c0d530de3480917dafcffc1e5223ecff27935 (diff) | |
| download | openwrt-fbe86d0e91b26a9526ff7f55e3ac5ed4543914c2.tar.gz | |
linux: add dtb makefile target to targets list
Add dtb makefile target to targets list to permit correct working of
make target/linux/dtb
Fixes: c47532b1ea7f ("kernel-buildOnmk: add support for compiling only DTS")
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
(cherry picked from commit c4910e9cb37c626ab9f4a47579bc8ec8981cdf4a)
| -rw-r--r-- | target/linux/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/Makefile b/target/linux/Makefile index 8eea40ee18..eaf3198222 100644 --- a/target/linux/Makefile +++ b/target/linux/Makefile @@ -7,5 +7,5 @@ include $(INCLUDE_DIR)/target.mk export TARGET_BUILD=1 -prereq clean download prepare compile install oldconfig menuconfig nconfig xconfig update refresh: FORCE +prereq clean download prepare compile install oldconfig menuconfig nconfig xconfig update refresh dtb: FORCE @+$(NO_TRACE_MAKE) -C $(firstword $(wildcard feeds/$(BOARD) $(BOARD))) $@ |