[ImageBuilder] remove legacy 2.4-specific behavior, fixes IB on brcm-2.4
[openwrt-10.03/.git] / target / imagebuilder / files / Makefile
1 # Makefile for OpenWrt
2 #
3 # Copyright (C) 2007-2009 OpenWrt.org
4 #
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
7 #
8
9 TOPDIR:=${CURDIR}
10 LC_ALL:=C
11 LANG:=C
12 export TOPDIR LC_ALL LANG
13 export KBUILD_VERBOSE=99
14 all: help
15
16 include $(TOPDIR)/include/host.mk
17
18 ifneq ($(OPENWRT_BUILD),1)
19   override OPENWRT_BUILD=1
20   export OPENWRT_BUILD
21 endif
22
23 include rules.mk
24 include $(INCLUDE_DIR)/debug.mk
25 include $(INCLUDE_DIR)/depends.mk
26
27 define Helptext
28 Available Commands:
29         help:   This help text
30         info:   Show a list of available target profiles
31         clean:  Remove images and temporary build files
32         image:  Build an image (see below for more information).
33
34 Building images:
35         By default 'make image' will create an image with the default
36         target profile and package set. You can use the following parameters
37         to change that:
38         
39         make image PROFILE="<profilename>" # override the default target profile
40         make image PACKAGES="<pkg1> [<pkg2> [<pkg3> ...]]" # include extra packages
41         make image FILES="<path>" # include extra files from <path>
42
43 endef
44 $(eval $(call shexport,Helptext))
45
46 help: FORCE
47         echo "$$$(call shvar,Helptext)"
48
49
50 # override variables from rules.mk
51 PACKAGE_DIR:=$(TOPDIR)/packages
52 IPKG:= \
53   IPKG_TMP="$(TOPDIR)/tmp/ipkgtmp" \
54   IPKG_INSTROOT="$(TARGET_DIR)" \
55   IPKG_CONF_DIR="$(TOPDIR)/tmp" \
56   IPKG_OFFLINE_ROOT="$(TARGET_DIR)" \
57   $(SCRIPT_DIR)/ipkg -force-defaults
58
59 define Profile
60   $(eval $(call Profile/Default))
61   $(eval $(call Profile/$(1)))
62   ifeq ($(PROFILE),)
63     PROFILE:=$(1)
64   endif
65   $(1)_NAME:=$(NAME)
66   $(1)_PACKAGES:=$(PACKAGES)
67   PROFILE_LIST += \
68         echo '$(1):'; [ -z '$(NAME)' ] || echo '        $(NAME)'; echo '        Packages: $(PACKAGES)';
69 endef
70
71 include $(INCLUDE_DIR)/target.mk
72
73 info: FORCE
74         echo 'Current Target: "$(BOARD)$(if $(SUBTARGET), ($(BOARDNAME)))"'
75         echo 'Default Packages: $(DEFAULT_PACKAGES)'
76         echo 'Available Profiles:'
77         echo; $(PROFILE_LIST)
78
79 $(TOPDIR)/tmp/ipkg.conf: FORCE
80         @mkdir -p $(TOPDIR)/tmp
81         @echo 'dest root /' > $@
82         @echo 'src packages file:$(PACKAGE_DIR)' >> $@
83
84 BUILD_PACKAGES:=$(sort $(DEFAULT_PACKAGES) $($(PROFILE)_PACKAGES) kernel)
85 BUILD_PACKAGES:=$(patsubst base-files,base-files-$(BOARD),$(BUILD_PACKAGES))
86 # "-pkgname" in the package list means remove "pkgname" from the package list
87 BUILD_PACKAGES:=$(filter-out $(filter -%,$(BUILD_PACKAGES)) $(patsubst -%,%,$(filter -%,$(BUILD_PACKAGES))),$(BUILD_PACKAGES))
88
89 image:
90         if [ -z "$($(PROFILE)_NAME)" ]; then \
91                 echo Profile $(PROFILE) not found.; \
92                 echo 'Use "make info" to get a list of available target profiles'; \
93                 false; \
94         fi
95         echo 'Building images for $(BOARD) - $($(PROFILE)_NAME)'
96         echo 'Packages: $(BUILD_PACKAGES)'
97         echo
98         rm -rf $(TARGET_DIR)
99         mkdir -p $(TARGET_DIR) $(BIN_DIR) $(TMP_DIR)
100         $(MAKE) package_index
101         $(MAKE) package_install
102 ifneq ($(FILES),)
103         $(MAKE) copy_files
104 endif
105         $(MAKE) package_postinst
106         $(MAKE) build_image
107         
108 package_index: $(TOPDIR)/tmp/ipkg.conf FORCE
109         @echo
110         @echo Building package index...
111         (cd $(PACKAGE_DIR); $(SCRIPT_DIR)/ipkg-make-index.sh . > Packages && \
112                 gzip -9c Packages > Packages.gz \
113         ) >/dev/null 2>/dev/null
114         $(IPKG) update
115
116 package_install: FORCE
117         @echo
118         @echo Installing packages...
119         $(IPKG) install $(BUILD_PACKAGES)
120
121 copy_files: FORCE
122         @echo
123         @echo Copying extra files
124         $(CP) $(FILES)/* $(TARGET_DIR)/
125
126 package_postinst: FORCE
127         @echo
128         @echo Activating init scripts
129         @( \
130                 cd $(TARGET_DIR); \
131                 for script in ./etc/init.d/*; do \
132                         grep '#!/bin/sh /etc/rc.common' $$script >/dev/null || continue; \
133                         IPKG_INSTROOT=$(TARGET_DIR) $(which bash) ./etc/rc.common $$script enable; \
134                 done || true; \
135         )
136
137 build_image: FORCE
138         @echo
139         @echo Building images...
140         $(NO_TRACE_MAKE) -C target/linux/$(BOARD)/image install TARGET_BUILD=1 IB=1
141         
142 clean:
143         rm -rf tmp $(TARGET_DIR) $(BIN_DIR)
144
145
146 .SILENT: help info image
147