projects
/
openwrt
/
staging
/
hauke.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ee62912
)
imagebuilder: fix broken image generation with external targets
author
Petr Štetiar
<
[email protected]
>
Thu, 24 Mar 2022 05:52:37 +0000
(06:52 +0100)
committer
Petr Štetiar
<
[email protected]
>
Tue, 5 Apr 2022 20:06:41 +0000
(22:06 +0200)
When using external targets there is a symlink being created for the
target under target/linux which then becomes dangling under Image
Builder. Fix it by dereferencing the possible symlink.
Tested on IB with external target, ipq40xx and mvebu.
Signed-off-by: Petr Štetiar <
[email protected]
>
(cherry picked from commit
621f39d1f438bf95dbae667c575926fa16a6d797
)
(cherry picked from commit
ec9af870f3278f75549836b469baefa260e2ed41
)
target/imagebuilder/Makefile
patch
|
blob
|
history
diff --git
a/target/imagebuilder/Makefile
b/target/imagebuilder/Makefile
index 8607a2d7094c6bd63e12b65f44ce717d32bcc768..3bbadc7204d1e8859cbf363ae3101b753b08422f 100644
(file)
--- a/
target/imagebuilder/Makefile
+++ b/
target/imagebuilder/Makefile
@@
-78,7
+78,7
@@
ifneq ($(CONFIG_SIGNATURE_CHECK),)
$(CP) -L $(STAGING_DIR_ROOT)/usr/sbin/opkg-key $(PKG_BUILD_DIR)/scripts/
endif
- $(CP) $(TOPDIR)/target/linux $(PKG_BUILD_DIR)/target/
+ $(CP)
-L
$(TOPDIR)/target/linux $(PKG_BUILD_DIR)/target/
if [ -d $(TOPDIR)/staging_dir/host/lib/grub ]; then \
$(CP) $(TOPDIR)/staging_dir/host/lib/grub/ $(PKG_BUILD_DIR)/staging_dir/host/lib; \
fi