]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/busybox
HinzugefĆ¼gt:
[ipfire-2.x.git] / lfs / busybox
1
2 ###############################################################################
3 # This file is part of the IPCop Firewall. #
4 # #
5 # IPCop is free software; you can redistribute it and/or modify #
6 # it under the terms of the GNU General Public License as published by #
7 # the Free Software Foundation; either version 2 of the License, or #
8 # (at your option) any later version. #
9 # #
10 # IPCop is distributed in the hope that it will be useful, #
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
13 # GNU General Public License for more details. #
14 # #
15 # You should have received a copy of the GNU General Public License #
16 # along with IPCop; if not, write to the Free Software #
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
18 # #
19 # Makefiles are based on LFSMake, which is #
20 # Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com> #
21 # #
22 # Modifications by: #
23 # ??-12-2003 Mark Wormgoor < mark@wormgoor.com> #
24 # - Modified Makefile for IPCop build #
25 # #
26 # $Id: busybox,v 1.11.2.5 2005/06/22 20:00:56 rkerr Exp $
27 # #
28 ###############################################################################
29
30 ###############################################################################
31 # Definitions
32 ###############################################################################
33
34 include Config
35
36 VER = 0.60.5
37
38 THISAPP = busybox-$(VER)
39 DL_FILE = $(THISAPP).tar.gz
40 #DL_FROM = http://www.busybox.net/downloads
41 DL_FROM = http://ipcop.ath.cx
42 DIR_APP = $(DIR_SRC)/$(THISAPP)
43 TARGET = $(DIR_INFO)/$(THISAPP)
44
45 ###############################################################################
46 # Top-level Rules
47 ###############################################################################
48
49 objects = $(DL_FILE)
50
51 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
52
53 $(DL_FILE)_MD5 = 1dfe09e0b1db1aab2a5f7d03e47640a6
54
55 install : $(TARGET)
56
57 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
58
59 download :$(patsubst %,$(DIR_DL)/%,$(objects))
60
61 md5 : $(subst %,%_MD5,$(objects))
62
63 ###############################################################################
64 # Downloading, checking, md5sum
65 ###############################################################################
66
67 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
68 @$(CHECK)
69
70 $(patsubst %,$(DIR_DL)/%,$(objects)) :
71 @$(LOAD)
72
73 $(subst %,%_MD5,$(objects)) :
74 @$(MD5)
75
76 ###############################################################################
77 # Installation Details
78 ###############################################################################
79
80 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
81 @$(PREBUILD)
82 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
83 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/busybox-0.60.5-config.patch
84 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/busybox-0.60.5-gzip.patch
85 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/busybox-0.60.5-spider.patch
86 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/busybox-0.60.5-insmod_gpl_symbols.patch
87 cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/busybox-0.60.5-wget-unlink.patch
88 if [ "$(MACHINE)" = "alpha" ]; then \
89 cd $(DIR_APP) && sed -i -e 's/#define BB_INSMOD//' Config.h; \
90 cd $(DIR_APP) && sed -i -e 's/#define BB_RMMOD//' Config.h; \
91 cd $(DIR_APP) && sed -i -e 's/#define BB_MODPROBE//' Config.h; \
92 fi
93 # cd $(DIR_APP) && sed -i -e 's/enum { NAME_SIZE = 100 };/enum { NAME_SIZE = 150 };/' tar.c; \
94
95 cd $(DIR_APP) && make
96 -mkdir -p /install/initrd/bin
97 cd $(DIR_APP) && install -m 0755 busybox /install/initrd/bin
98 cd /install/initrd/bin && for i in [ ash cat chroot dd df echo gzip \
99 gunzip halt insmod ifconfig init ls mkswap modprobe mount reboot \
100 rmmod sed sh sleep swapon swapoff syslogd tar umount wget ping \
101 sync; do \
102 ln -sf busybox $$i; \
103 done
104 if [ "$(MACHINE)" = "alpha" ]; then \
105 cd /install/initrd/bin && rm -f rmmod modprobe insmod; \
106 cp /sbin/insmod.static /install/initrd/bin/insmod; \
107 cd /install/initrd/bin && ln -s insmod modprobe; \
108 cd /install/initrd/bin && ln -s insmod rmmod; \
109 fi
110 @rm -rf $(DIR_APP)
111 @$(POSTBUILD)