build: rework prepare_rootfs to pass target dir via parameter
[openwrt/staging/lynxis/omap.git] / package / Makefile
1 #
2 # Copyright (C) 2006-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 curdir:=package
9
10 include $(INCLUDE_DIR)/rootfs.mk
11
12 -include $(TMP_DIR)/.packagedeps
13 $(curdir)/builddirs:=$(sort $(package-) $(package-y) $(package-m))
14 $(curdir)/builddirs-install:=.
15 $(curdir)/builddirs-default:=. $(sort $(package-y) $(package-m))
16 $(curdir)/builddirs-prereq:=. $(sort $(prereq-y) $(prereq-m))
17 ifneq ($(IGNORE_ERRORS),)
18 package-y-filter := $(package-y)
19 package-m-filter := $(filter-out $(package-y),$(package-m))
20 package-n-filter := $(filter-out $(package-y) $(package-m),$(package-))
21 package-ignore-errors := $(filter n m y,$(IGNORE_ERRORS))
22 package-ignore-errors := $(if $(package-ignore-errors),$(package-ignore-errors),n m)
23 package-ignore-subdirs := $(sort $(foreach m,$(package-ignore-errors),$(package-$(m)-filter)))
24 $(curdir)/builddirs-ignore-download := $(package-ignore-subdirs)
25 $(curdir)/builddirs-ignore-compile := $(package-ignore-subdirs)
26 $(curdir)/builddirs-ignore-host-download := $(package-ignore-subdirs)
27 $(curdir)/builddirs-ignore-host-compile := $(package-ignore-subdirs)
28 endif
29
30 PACKAGE_INSTALL_FILES:= \
31 $(foreach pkg,$(sort $(package-y)), \
32 $(foreach variant, \
33 $(if $(strip $(package/$(pkg)/variants)), \
34 $(package/$(pkg)/variants), \
35 $(if $(package/$(pkg)/default-variant), \
36 $(package/$(pkg)/default-variant), \
37 default \
38 ) \
39 ), \
40 $(PKG_INFO_DIR)/$(lastword $(subst /,$(space),$(pkg))).$(variant).install \
41 ) \
42 )
43
44 $(curdir)/cleanup: $(TMP_DIR)/.build
45 rm -rf $(STAGING_DIR_ROOT)
46
47 $(curdir)/install: $(TMP_DIR)/.build $(curdir)/system/opkg/host/install
48 - find $(STAGING_DIR_ROOT) -type d | $(XARGS) chmod 0755
49 rm -rf $(TARGET_DIR)
50 [ -d $(TARGET_DIR)/tmp ] || mkdir -p $(TARGET_DIR)/tmp
51 @echo $(wildcard $(foreach dir,$(PACKAGE_SUBDIRS),$(foreach pkg,$(shell cat $(PACKAGE_INSTALL_FILES) 2>/dev/null),$(dir)/$(pkg)_*.ipk))) | $(OPKG) install
52 @for file in $(PACKAGE_INSTALL_FILES); do \
53 [ -s $$file.flags ] || continue; \
54 for flag in `cat $$file.flags`; do \
55 $(OPKG) flag $$flag < $$file; \
56 done; \
57 done || true
58 @-$(MAKE) package/preconfig
59 $(call prepare_rootfs,$(TARGET_DIR))
60
61 PASSOPT=""
62 PASSARG=""
63 ifndef CONFIG_OPKGSMIME_PASSPHRASE
64 ifneq ($(call qstrip,$(CONFIG_OPKGSMIME_PASSFILE)),)
65 PASSOPT="-passin"
66 PASSARG="file:$(call qstrip,$(CONFIG_OPKGSMIME_PASSFILE))"
67 endif
68 endif
69
70 $(curdir)/index: FORCE
71 @echo Generating package index...
72 @for d in $(PACKAGE_SUBDIRS); do ( \
73 mkdir -p $$d; \
74 cd $$d || continue; \
75 $(SCRIPT_DIR)/ipkg-make-index.sh . 2>&1 > Packages && \
76 gzip -9nc Packages > Packages.gz; \
77 ); done
78 ifdef CONFIG_SIGNED_PACKAGES
79 @echo Signing package index...
80 @for d in $(PACKAGE_SUBDIRS); do ( \
81 [ -d $$d ] && \
82 cd $$d || continue; \
83 $(STAGING_DIR_HOST)/bin/usign -S -m Packages -s $(BUILD_KEY); \
84 ); done
85 else
86 ifeq ($(call qstrip,$(CONFIG_OPKGSMIME_KEY)),)
87 @echo Signing key has not been configured
88 else
89 ifeq ($(call qstrip,$(CONFIG_OPKGSMIME_CERT)),)
90 @echo Certificate has not been configured
91 else
92 @echo Signing package index...
93 @for d in $(PACKAGE_SUBDIRS); do ( \
94 [ -d $$d ] && \
95 cd $$d || continue; \
96 openssl smime -binary -in Packages.gz \
97 -out Packages.sig -outform PEM -sign \
98 -signer $(CONFIG_OPKGSMIME_CERT) \
99 -inkey $(CONFIG_OPKGSMIME_KEY) \
100 $(PASSOPT) $(PASSARG); \
101 ); done
102 endif
103 endif
104 endif
105
106 $(curdir)/preconfig:
107
108 $(curdir)/flags-install:= -j1
109
110 $(eval $(call stampfile,$(curdir),package,prereq,.config))
111 $(eval $(call stampfile,$(curdir),package,cleanup,$(TMP_DIR)/.build))
112 $(eval $(call stampfile,$(curdir),package,compile,$(TMP_DIR)/.build))
113 $(eval $(call stampfile,$(curdir),package,install,$(TMP_DIR)/.build))
114
115 $(eval $(call subdir,$(curdir)))