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