major target cleanup. it is now possible to have subtargets that can override many...
[openwrt-10.03/.git] / package / base-files / Makefile
1
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10 include $(INCLUDE_DIR)/kernel.mk
11
12 PKG_NAME:=base-files
13 PKG_RELEASE:=10
14
15 PKG_FILE_DEPEND:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
16
17 REV:=$(shell LANG=C svn info | awk '/^Revision:/ { print$$2 }' )
18 ifeq ($(REV),)
19   REV:=0
20 endif
21 include $(INCLUDE_DIR)/package.mk
22
23 ifneq ($(DUMP),1)
24   TARGET:=-$(BOARD)-$(KERNEL)
25   LIBGCC_VERSION:=$(GCC_VERSION)
26 else
27   UCLIBC_VERSION:=<UCLIBC_VERSION>
28   LIBGCC_VERSION:=<LIBGCC_VERSION>
29 endif
30
31 CONFIG_PACKAGE_base-files$(TARGET):=$(CONFIG_PACKAGE_base-files)
32
33 define Package/base-files$(TARGET)
34   SECTION:=base
35   CATEGORY:=Base system
36   TITLE:=Base filesystem for OpenWrt
37   URL:=http://openwrt.org/
38   VERSION:=$(PKG_RELEASE)-$(REV)
39   $(call Config,network.lan.proto,string,static,LAN Protocol)
40   $(call Config,network.lan.ipaddr,ip,192.168.1.1,LAN IP Address)
41   $(call Config,network.lan.netmask,netmask,255.255.255.0,LAN Network Mask)
42   $(call Config,network.lan.gateway,ip,,LAN Gateway)
43   $(call Config,network.lan.dns,ip,,LAN DNS server)
44 endef
45
46 define Package/base-files$(TARGET)/conffiles
47 /etc/banner
48 /etc/hosts
49 /etc/inittab
50 /etc/group
51 /etc/passwd
52 /etc/profile
53 /etc/shells
54 /etc/ipkg.conf
55 /etc/sysctl.conf
56 $(call $(TARGET)/conffiles)
57 endef
58
59 define Package/base-files$(TARGET)/description
60  This package contains a base filesystem and system scripts for OpenWrt.
61 endef
62
63 define Package/gcc/Default
64   SECTION:=libs
65   CATEGORY:=Base system
66   DEPENDS:=@!NATIVE_TOOLCHAIN
67   URL:=http://gcc.gnu.org/
68   VERSION:=$(LIBGCC_VERSION)-$(PKG_RELEASE)
69 endef
70
71 define Package/libgcc
72 $(call Package/gcc/Default)
73   TITLE:=GCC support library
74   DEPENDS:=@!TARGET_avr32 @!NATIVE_TOOLCHAIN
75 endef
76
77 define Package/libssp
78 $(call Package/gcc/Default)
79   TITLE:=GCC support library
80 endef
81
82 define Package/libstdcpp
83 $(call Package/gcc/Default)
84   NAME:=libstdc++
85   TITLE:=GNU Standard C++ Library v3
86   DEPENDS:=@!NATIVE_TOOLCHAIN&&@INSTALL_LIBSTDCPP
87 endef
88
89 define Package/uclibc/Default
90   SECTION:=libs
91   CATEGORY:=Base system
92   DEPENDS:=@!NATIVE_TOOLCHAIN
93   URL:=http://uclibc.org/
94   VERSION:=$(UCLIBC_VERSION)$(UCLIBC_PATCHVER)-$(PKG_RELEASE)
95 endef
96
97 define Package/libpthread
98 $(call Package/uclibc/Default)
99   TITLE:=POSIX thread library
100 endef
101
102 define Package/uclibc
103 $(call Package/uclibc/Default)
104   TITLE:=C library embedded systems
105 endef
106
107 define Build/Prepare
108         mkdir -p $(PKG_BUILD_DIR)
109 endef
110
111 define Build/Compile/Default
112 endef
113
114 define Build/Compile
115         $(call Build/Compile/Default)
116 endef
117
118 define Package/base-files$(TARGET)/install
119         $(CP) ./files/* $(1)/
120         if [ -d $(GENERIC_PLATFORM_DIR)/base-files/. ]; then \
121                 $(CP) $(GENERIC_PLATFORM_DIR)/base-files/* $(1)/; \
122         fi
123         if [ -d $(PLATFORM_DIR)/base-files/default/. ]; then \
124                 $(CP) $(PLATFORM_DIR)/base-files/default/* $(1)/; \
125         fi
126         $(if $(filter-out $(PLATFORM_DIR),$(PLATFORM_SUBDIR)), \
127                 if [ -d $(PLATFORM_SUBDIR)/base-files/default/. ]; then \
128                         $(CP) $(PLATFORM_SUBDIR)/base-files/default/* $(1)/; \
129                 fi \
130         )
131         if [ "$(PROFILE)" != "Default" ]; then \
132                 if [ -d $(PLATFORM_DIR)/base-files/profile-$(PROFILE)/. ]; then \
133                         $(CP) $(PLATFORM_DIR)/base-files/profile-$(PROFILE)/* $(1)/; \
134                 fi; \
135         fi
136         $(SED) 's,$$$$R,r$(REV),g' $(1)/etc/banner
137         $(SED) 's,$$$$S,$(BOARD)-$(KERNEL),g' -e 's,$$$$A,$(ARCH),g' $(1)/etc/ipkg.conf
138         mkdir -p $(1)/dev
139         mkdir -p $(1)/etc/crontabs
140         mkdir -p $(1)/jffs
141         mkdir -p $(1)/lib/firmware
142         mkdir -p $(1)/mnt
143         mkdir -p $(1)/proc
144         mkdir -p $(1)/tmp
145         mkdir -p $(1)/usr/lib
146         mkdir -p $(1)/usr/bin
147         mkdir -p $(1)/sys
148         mkdir -p $(1)/www
149         ln -sf /proc/mounts $(1)/etc/mtab
150         rm -f $(1)/var
151         ln -sf /tmp $(1)/var
152         mkdir -p $(1)/etc
153         ln -sf /tmp/resolv.conf $(1)/etc/resolv.conf
154         $(call Package/base-files/install-target,$(1))
155         for conffile in $(1)/etc/config/*; do \
156                 if [ -f "$$$$conffile" ]; then \
157                         grep "$$$$conffile" $(1)/CONTROL/conffiles || \
158                                 echo "$$$${conffile##$(1)}" >> $(1)/CONTROL/conffiles; \
159                 fi \
160         done
161 endef
162
163 define Package/libgcc/install
164         $(INSTALL_DIR) $(1)/lib
165         $(CP) $(TOOLCHAIN_DIR)/lib/libgcc_s.so.* $(1)/lib/
166 endef
167
168 ifeq ($(word 1,$(subst ., ,$(LIBGCC_VERSION))),4)
169   define Package/libssp/install
170         $(INSTALL_DIR) $(1)/lib
171         $(CP) $(TOOLCHAIN_DIR)/lib/libssp.so.* $(1)/lib/
172   endef
173 endif
174
175 define Package/libstdcpp/install
176         $(INSTALL_DIR) $(1)/lib
177         $(CP) $(TOOLCHAIN_DIR)/lib/libstdc++.so.* $(1)/lib/
178 endef
179
180 define Package/libpthread/install
181         $(INSTALL_DIR) $(1)/lib
182         $(CP) $(TOOLCHAIN_DIR)/lib/libpthread.so.* $(1)/lib/
183         $(CP) $(TOOLCHAIN_DIR)/lib/libpthread-$(UCLIBC_VERSION).so $(1)/lib/
184 endef
185
186 define Package/uclibc/install
187         $(INSTALL_DIR) $(1)/lib
188         for file in ld-uClibc libc libcrypt libdl libm libnsl libresolv librt libuClibc libutil; do \
189                 $(CP) $(TOOLCHAIN_DIR)/lib/$$$$file.so.* $(1)/lib/; \
190                 $(CP) $(TOOLCHAIN_DIR)/lib/$$$$file-$(UCLIBC_VERSION).so $(1)/lib/; \
191         done
192 endef
193
194 define Package/ldd/install
195         $(INSTALL_DIR) $(1)/bin/
196         $(CP) $(TOOLCHAIN_DIR)/utils/ldd $(1)/bin/
197 endef
198
199 define Package/ldconfig/install
200         $(INSTALL_DIR) $(1)/bin/
201         $(CP) $(TOOLCHAIN_DIR)/utils/ldconfig $(1)/bin/
202 endef
203
204 ifneq ($(DUMP),1)
205   -include $(PLATFORM_DIR)/base-files.mk
206 endif
207
208 $(eval $(call BuildPackage,base-files$(TARGET)))
209 $(eval $(call BuildPackage,libgcc))
210 $(eval $(call BuildPackage,libssp))
211 $(eval $(call BuildPackage,libstdcpp))
212 $(eval $(call BuildPackage,libpthread))
213 $(eval $(call BuildPackage,uclibc))