projects
/
openwrt
/
staging
/
lynxis.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9bf63d0
)
build: qsdk-ipq-*: include dtc in PATH before calling mkimage
author
Piotr Dymacz
<
[email protected]
>
Tue, 26 Feb 2019 12:04:54 +0000
(13:04 +0100)
committer
Piotr Dymacz
<
[email protected]
>
Tue, 26 Feb 2019 12:38:47 +0000
(13:38 +0100)
Use 'dtc' from kernel sources instead of relying on host tool.
Fixes: bf4630e5adb4 ("build: add helpers for generating QSDK sysupgrade compatible images")
Signed-off-by: Piotr Dymacz <
[email protected]
>
include/image-commands.mk
patch
|
blob
|
history
diff --git
a/include/image-commands.mk
b/include/image-commands.mk
index 47d7193434d16c39cb2fb0c87bef93dd29169a1d..ade370cc0dacec90c0ee6e0d53b89fc051e9ad4b 100644
(file)
--- a/
include/image-commands.mk
+++ b/
include/image-commands.mk
@@
-297,14
+297,14
@@
endef
define Build/qsdk-ipq-factory-nand
$(TOPDIR)/scripts/mkits-qsdk-ipq-image.sh \
[email protected]
ubi $@
- mkimage -f
[email protected]
[email protected]
+
PATH=$(LINUX_DIR)/scripts/dtc:$(PATH)
mkimage -f
[email protected]
[email protected]
@mv
[email protected]
$@
endef
define Build/qsdk-ipq-factory-nor
$(TOPDIR)/scripts/mkits-qsdk-ipq-image.sh \
[email protected]
hlos $(IMAGE_KERNEL) rootfs $(IMAGE_ROOTFS)
- mkimage -f
[email protected]
[email protected]
+
PATH=$(LINUX_DIR)/scripts/dtc:$(PATH)
mkimage -f
[email protected]
[email protected]
@mv
[email protected]
$@
endef