projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix i2c-gpio
[openwrt.git]
/
target
/
imagebuilder
/
files
/
Makefile
diff --git
a/target/imagebuilder/files/Makefile
b/target/imagebuilder/files/Makefile
index
d4bcdf5
..
2e309ae
100644
(file)
--- a/
target/imagebuilder/files/Makefile
+++ b/
target/imagebuilder/files/Makefile
@@
-20,6
+20,7
@@
ifeq ($(KBUILD_VERBOSE),99)
MAKE:=3>/dev/null $(MAKE)
endif
export IS_TTY=$(shell tty -s && echo 1 || echo 0)
MAKE:=3>/dev/null $(MAKE)
endif
export IS_TTY=$(shell tty -s && echo 1 || echo 0)
+export IMAGEBUILDER=1
# override variables from rules.mk
PACKAGE_DIR:=$(TOPDIR)/packages
# override variables from rules.mk
PACKAGE_DIR:=$(TOPDIR)/packages
@@
-34,10
+35,11
@@
IPKG:= \
define Profile/Default
ID:=
NAME:=
define Profile/Default
ID:=
NAME:=
+ KCONFIG:=
PACKAGES:=
endef
PACKAGES:=
endef
-define Profile
+define
Add
Profile
$(eval $(call Profile/Default))
$(eval $(call Profile/$(1)))
ifneq ($(ID),)
$(eval $(call Profile/Default))
$(eval $(call Profile/$(1)))
ifneq ($(ID),)
@@
-46,8
+48,10
@@
define Profile
endif
$(ID)_NAME:=$(NAME)
$(ID)_PACKAGES:=$(PACKAGES)
endif
$(ID)_NAME:=$(NAME)
$(ID)_PACKAGES:=$(PACKAGES)
- PROFILE_LIST += \
- echo '$(ID):'; echo ' $(NAME)';
+ ifeq ($(KCONFIG),)
+ PROFILE_LIST += \
+ echo '$(ID):'; [ -z '$(NAME)' ] || echo ' $(NAME)'; echo ' Packages: $(PACKAGES)';
+ endif
endif
endef
endif
endef
@@
-87,6
+91,8
@@
$(TOPDIR)/tmp/ipkg.conf: FORCE
BUILD_PACKAGES:=$(sort $(DEFAULT_PACKAGES) $(PACKAGES) $($(PROFILE)_PACKAGES) kernel)
BUILD_PACKAGES:=$(patsubst base-files,base-files-$(BOARD)-$(KERNEL),$(BUILD_PACKAGES))
BUILD_PACKAGES:=$(sort $(DEFAULT_PACKAGES) $(PACKAGES) $($(PROFILE)_PACKAGES) kernel)
BUILD_PACKAGES:=$(patsubst base-files,base-files-$(BOARD)-$(KERNEL),$(BUILD_PACKAGES))
+# "-pkgname" in the package list means remove "pkgname" from the package list
+BUILD_PACKAGES:=$(filter-out $(filter -%,$(BUILD_PACKAGES)) $(patsubst -%,%,$(filter -%,$(BUILD_PACKAGES))),$(BUILD_PACKAGES))
image:
if [ -z "$($(PROFILE)_NAME)" ]; then \
image:
if [ -z "$($(PROFILE)_NAME)" ]; then \
@@
-131,7
+137,7
@@
package_postinst: FORCE
for script in ./etc/init.d/*; do \
grep '#!/bin/sh /etc/rc.common' $$script >/dev/null || continue; \
IPKG_INSTROOT=$(BUILD_DIR)/root $(which bash) ./etc/rc.common $$script enable; \
for script in ./etc/init.d/*; do \
grep '#!/bin/sh /etc/rc.common' $$script >/dev/null || continue; \
IPKG_INSTROOT=$(BUILD_DIR)/root $(which bash) ./etc/rc.common $$script enable; \
- done; \
+ done
|| true
; \
)
build_image: FORCE
)
build_image: FORCE
@@
-140,7
+146,7
@@
build_image: FORCE
$(NO_TRACE_MAKE) -C target/linux/$(BOARD)-$(KERNEL)/image install IB=1
clean:
$(NO_TRACE_MAKE) -C target/linux/$(BOARD)-$(KERNEL)/image install IB=1
clean:
- rm -rf tmp $(TARGET_DIR)
+ rm -rf tmp $(TARGET_DIR)
$(BIN_DIR)
.PHONY: FORCE
.SILENT: help info image
.PHONY: FORCE
.SILENT: help info image
This page took
0.031161 seconds
and
4
git commands to generate.