Added support for /etc/default/fstab - a means of automatically mounting devices...
[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:=11
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 Package/ldd
108 $(call Package/uclibc/Default)
109   TITLE:=LDD trace utility
110 endef
111
112 define Package/ldconfig
113 $(call Package/uclibc/Default)
114   TITLE:=Shared library path configuration
115 endef
116
117 define Build/Prepare
118         mkdir -p $(PKG_BUILD_DIR)
119 endef
120
121 define Build/Compile/Default
122 endef
123
124 define Build/Compile
125         $(call Build/Compile/Default)
126 endef
127
128 define Package/base-files$(TARGET)/install
129         $(CP) ./files/* $(1)/
130         if [ -d $(GENERIC_PLATFORM_DIR)/base-files/. ]; then \
131                 $(CP) $(GENERIC_PLATFORM_DIR)/base-files/* $(1)/; \
132         fi
133         if [ -d $(PLATFORM_DIR)/base-files/default/. ]; then \
134                 $(CP) $(PLATFORM_DIR)/base-files/default/* $(1)/; \
135         fi
136         $(if $(filter-out $(PLATFORM_DIR),$(PLATFORM_SUBDIR)), \
137                 if [ -d $(PLATFORM_SUBDIR)/base-files/default/. ]; then \
138                         $(CP) $(PLATFORM_SUBDIR)/base-files/default/* $(1)/; \
139                 fi \
140         )
141         if [ "$(PROFILE)" != "Default" ]; then \
142                 if [ -d $(PLATFORM_DIR)/base-files/profile-$(PROFILE)/. ]; then \
143                         $(CP) $(PLATFORM_DIR)/base-files/profile-$(PROFILE)/* $(1)/; \
144                 fi; \
145         fi
146         $(SED) 's,$$$$R,r$(REV),g' $(1)/etc/banner
147         $(SED) 's,$$$$S,$(BOARD)-$(KERNEL),g' -e 's,$$$$A,$(ARCH),g' $(1)/etc/ipkg.conf
148         mkdir -p $(1)/dev
149         mkdir -p $(1)/etc/crontabs
150         mkdir -p $(1)/jffs
151         mkdir -p $(1)/lib/firmware
152         mkdir -p $(1)/mnt
153         mkdir -p $(1)/proc
154         mkdir -p $(1)/tmp
155         mkdir -p $(1)/usr/lib
156         mkdir -p $(1)/usr/bin
157         mkdir -p $(1)/sys
158         mkdir -p $(1)/www
159         mkdir -p $(1)/root
160         ln -sf /proc/mounts $(1)/etc/mtab
161         rm -f $(1)/var
162         ln -sf /tmp $(1)/var
163         mkdir -p $(1)/etc
164         ln -sf /tmp/resolv.conf $(1)/etc/resolv.conf
165         $(call Package/base-files/install-target,$(1))
166         for conffile in $(1)/etc/config/*; do \
167                 if [ -f "$$$$conffile" ]; then \
168                         grep "$$$$conffile" $(1)/CONTROL/conffiles || \
169                                 echo "$$$${conffile##$(1)}" >> $(1)/CONTROL/conffiles; \
170                 fi \
171         done
172 endef
173
174 define Package/libgcc/install
175         $(INSTALL_DIR) $(1)/lib
176         $(CP) $(TOOLCHAIN_DIR)/lib/libgcc_s.so.* $(1)/lib/
177 endef
178
179 ifeq ($(word 1,$(subst ., ,$(LIBGCC_VERSION))),4)
180   define Package/libssp/install
181         $(INSTALL_DIR) $(1)/lib
182         $(CP) $(TOOLCHAIN_DIR)/lib/libssp.so.* $(1)/lib/
183   endef
184 endif
185
186 define Package/libstdcpp/install
187         $(INSTALL_DIR) $(1)/lib
188         $(CP) $(TOOLCHAIN_DIR)/lib/libstdc++.so.* $(1)/lib/
189 endef
190
191 define Package/libpthread/install
192         $(INSTALL_DIR) $(1)/lib
193         $(CP) $(TOOLCHAIN_DIR)/lib/libpthread.so.* $(1)/lib/
194         $(CP) $(TOOLCHAIN_DIR)/lib/libpthread-$(UCLIBC_VERSION).so $(1)/lib/
195 endef
196
197 define Package/uclibc/install
198         $(INSTALL_DIR) $(1)/lib
199         for file in ld-uClibc libc libcrypt libdl libm libnsl libresolv librt libuClibc libutil; do \
200                 $(CP) $(TOOLCHAIN_DIR)/lib/$$$$file.so.* $(1)/lib/; \
201                 $(CP) $(TOOLCHAIN_DIR)/lib/$$$$file-$(UCLIBC_VERSION).so $(1)/lib/; \
202         done
203 endef
204
205 define Package/ldd/install
206         $(INSTALL_DIR) $(1)/bin/
207         $(CP) $(TOOLCHAIN_DIR)/target-utils/ldd $(1)/bin/
208 endef
209
210 define Package/ldconfig/install
211         $(INSTALL_DIR) $(1)/bin/
212         $(CP) $(TOOLCHAIN_DIR)/target-utils/ldconfig $(1)/bin/
213 endef
214
215 ifneq ($(DUMP),1)
216   -include $(PLATFORM_DIR)/base-files.mk
217 endif
218
219 $(eval $(call BuildPackage,base-files$(TARGET)))
220 $(eval $(call BuildPackage,libgcc))
221 $(eval $(call BuildPackage,libssp))
222 $(eval $(call BuildPackage,libstdcpp))
223 $(eval $(call BuildPackage,libpthread))
224 $(eval $(call BuildPackage,uclibc))
225 $(eval $(call BuildPackage,ldd))
226 $(eval $(call BuildPackage,ldconfig))