projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix hostap build when target arch != mipsel
[openwrt.git]
/
openwrt
/
target
/
linux
/
imagebuilder
/
Makefile
diff --git
a/openwrt/target/linux/imagebuilder/Makefile
b/openwrt/target/linux/imagebuilder/Makefile
index
8da50bd
..
c70fb11
100644
(file)
--- a/
openwrt/target/linux/imagebuilder/Makefile
+++ b/
openwrt/target/linux/imagebuilder/Makefile
@@
-39,4
+39,10
@@
build:
for package in `cat lists/$(LIST).$(BOARD)-$(KERNEL)`; do \
$(IPKG_KERNEL) install `ls packages/$${package}_*`; \
done
for package in `cat lists/$(LIST).$(BOARD)-$(KERNEL)`; do \
$(IPKG_KERNEL) install `ls packages/$${package}_*`; \
done
+ if [ -d ./files ]; then \
+ cp -a --remove-destination ./files/* $(LINUX_BUILD_DIR)/root; \
+ fi
+ if [ -d ./files.$(LIST) ]; then \
+ cp -a --remove-destination ./files.$(LIST)/* $(LINUX_BUILD_DIR)/root; \
+ fi
$(MAKE) -S -C image KERNEL="$(KERNEL)" BOARD="$(BOARD)" BIN_DIR="$(BIN_DIR)/$(LIST)" install
$(MAKE) -S -C image KERNEL="$(KERNEL)" BOARD="$(BOARD)" BIN_DIR="$(BIN_DIR)/$(LIST)" install
This page took
0.019365 seconds
and
4
git commands to generate.