Root/target/imagebuilder/files/Makefile

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

Archive Download this file



interactive