]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/initscripts
kernel: add config for aarch64
[ipfire-2.x.git] / lfs / initscripts
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2016 IPFire Team <info@ipfire.org> #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20
21 ###############################################################################
22 # Definitions
23 ###############################################################################
24
25 include Config
26
27 VER = ipfire
28
29 THISAPP = initscripts
30 DIR_APP = $(DIR_SRC)/$(THISAPP)
31 TARGET = $(DIR_INFO)/$(THISAPP)
32
33 ###############################################################################
34 # Top-level Rules
35 ###############################################################################
36
37 install : $(TARGET)
38
39 check :
40
41 download :
42
43 md5 :
44
45 ###############################################################################
46 # Installation Details
47 ###############################################################################
48
49 $(TARGET) :
50 @$(PREBUILD)
51 install -d -m 755 /etc/rc.d/rc0.d
52 install -d -m 755 /etc/rc.d/rc3.d
53 install -d -m 755 /etc/rc.d/rc6.d
54 install -d -m 755 /etc/rc.d/rcsysinit.d
55 install -d -m 755 /etc/rc.d/init.d
56 install -d -m 755 /etc/rc.d/init.d/networking
57 install -d -m 755 /etc/rc.d/init.d/networking/red.up
58 install -d -m 755 /etc/rc.d/init.d/networking/red.down
59 install -d -m 755 /etc/rc.d/helper
60 install -d -m 755 /etc/sysconfig
61 -rm -rf /etc/init.d
62 ln -svf rc.d/init.d /etc/init.d
63
64 # Create default ramdisk configuration
65 echo "RAMDISK_MODE=0" > /etc/sysconfig/ramdisk
66
67 for i in $(DIR_SRC)/src/initscripts/system/*; do \
68 install -v -m 754 $$i /etc/rc.d/init.d/; \
69 done
70 chmod 644 /etc/rc.d/init.d/functions
71
72 for i in $(DIR_SRC)/src/initscripts/networking/*; do \
73 if [ -f $$i ]; then \
74 install -v -m 754 $$i /etc/rc.d/init.d/networking/; \
75 fi; \
76 done
77
78 for i in $(DIR_SRC)/src/initscripts/networking/red.up/*; do \
79 install -v -m 754 $$i /etc/rc.d/init.d/networking/red.up/; \
80 done
81
82 for i in $(DIR_SRC)/src/initscripts/networking/red.down/*; do \
83 install -v -m 754 $$i /etc/rc.d/init.d/networking/red.down/; \
84 done
85
86 for i in $(DIR_SRC)/src/initscripts/sysconfig/*; do \
87 install -v -m 644 $$i /etc/sysconfig/; \
88 done
89 chmod -v 755 /etc/sysconfig/{firewall,rc}.local
90
91 for i in $(DIR_SRC)/src/initscripts/helper/*; do \
92 install -v -m 755 $$i /etc/rc.d/helper/; \
93 done
94
95 ln -sf ../init.d/sysklogd /etc/rc.d/rc0.d/K90sysklogd
96 ln -sf ../init.d/sendsignals /etc/rc.d/rc0.d/S60sendsignals
97 ln -sf ../init.d/localnet /etc/rc.d/rc0.d/S70localnet
98 ln -sf ../init.d/mountfs /etc/rc.d/rc0.d/S80mountfs
99 ln -sf ../init.d/swap /etc/rc.d/rc0.d/S90swap
100 ln -sf ../init.d/halt /etc/rc.d/rc0.d/S99halt
101 ln -sf ../init.d/sysklogd /etc/rc.d/rc3.d/S10sysklogd
102 ln -sf ../init.d/smartenabler /etc/rc.d/rc3.d/S19smartenabler
103 ln -sf ../init.d/messagebus /etc/rc.d/rc3.d/S15messagebus
104 ln -sf ../init.d/messagebus /etc/rc.d/rc0.d/K85messagebus
105 ln -sf ../init.d/messagebus /etc/rc.d/rc6.d/K85messagebus
106 ln -sf ../init.d/bluetooth /etc/rc.d/rc3.d/S16bluetooth
107 ln -sf ../init.d/bluetooth /etc/rc.d/rc0.d/K84bluetooth
108 ln -sf ../init.d/bluetooth /etc/rc.d/rc6.d/K84bluetooth
109 ln -sf ../init.d/cpufreq /etc/rc.d/rc3.d/S18cpufreq
110 ln -sf ../init.d/sysklogd /etc/rc.d/rc6.d/K90sysklogd
111 ln -sf ../init.d/sendsignals /etc/rc.d/rc6.d/S60sendsignals
112 ln -sf ../init.d/mountfs /etc/rc.d/rc6.d/S70mountfs
113 ln -sf ../init.d/swap /etc/rc.d/rc6.d/S80swap
114 ln -sf ../init.d/localnet /etc/rc.d/rc6.d/S90localnet
115 ln -sf ../init.d/reboot /etc/rc.d/rc6.d/S99reboot
116 ln -sf ../init.d/sshd /etc/rc.d/rc0.d/K30sshd
117 ln -sf ../init.d/sshd /etc/rc.d/rc3.d/S30sshd
118 ln -sf ../init.d/sshd /etc/rc.d/rc6.d/K30sshd
119 ln -sf ../init.d/apache /etc/rc.d/rc0.d/K28apache
120 ln -sf ../init.d/apache /etc/rc.d/rc3.d/S32apache
121 ln -sf ../init.d/apache /etc/rc.d/rc6.d/K28apache
122 ln -sf ../init.d/fcron /etc/rc.d/rc0.d/K08fcron
123 ln -sf ../init.d/fcron /etc/rc.d/rc3.d/S40fcron
124 ln -sf ../init.d/fcron /etc/rc.d/rc6.d/K08fcron
125 ln -sf ../init.d/snort /etc/rc.d/rc0.d/K78snort
126 ln -sf ../init.d/snort /etc/rc.d/rc6.d/K78snort
127 ln -sf ../init.d/network /etc/rc.d/rc0.d/K80network
128 ln -sf ../init.d/network /etc/rc.d/rc3.d/S20network
129 ln -sf ../init.d/network /etc/rc.d/rc6.d/K80network
130 ln -sf ../init.d/unbound /etc/rc.d/rc0.d/K79unbound
131 ln -sf ../init.d/unbound /etc/rc.d/rc3.d/S11unbound
132 ln -sf ../init.d/unbound /etc/rc.d/rc6.d/K79unbound
133 ln -sf ../init.d/random /etc/rc.d/rc0.d/K45random
134 ln -sf ../init.d/random /etc/rc.d/rc3.d/S25random
135 ln -sf ../init.d/random /etc/rc.d/rc6.d/K45random
136 ln -sf ../../sysconfig/rc.local /etc/rc.d/rc3.d/S98rc.local
137 ln -sf ../init.d/client175 /etc/rc.d/rc0.d/K34client175
138 ln -sf ../init.d/client175 /etc/rc.d/rc3.d/S66client175
139 ln -sf ../init.d/client175 /etc/rc.d/rc6.d/K34client175
140 ln -sf ../init.d/sslh /etc/rc.d/rc3.d/S98sslh
141 ln -sf ../init.d/sslh /etc/rc.d/rc0.d/K02sslh
142 ln -sf ../init.d/sslh /etc/rc.d/rc6.d/K02sslh
143 ln -sf ../init.d/vdradmin /etc/rc.d/rc3.d/S99vdradmin
144 ln -sf ../init.d/vdradmin /etc/rc.d/rc0.d/K01vdradmin
145 ln -sf ../init.d/vdradmin /etc/rc.d/rc6.d/K01vdradmin
146 ln -sf ../init.d/motion /etc/rc.d/rc3.d/S99motion
147 ln -sf ../init.d/motion /etc/rc.d/rc0.d/K01motion
148 ln -sf ../init.d/motion /etc/rc.d/rc6.d/K01motion
149 ln -sf ../init.d/imspetor /etc/rc.d/rc3.d/S99imspetor
150 ln -sf ../init.d/imspetor /etc/rc.d/rc0.d/K01imspetor
151 ln -sf ../init.d/imspetor /etc/rc.d/rc6.d/K01imspetor
152 ln -sf ../init.d/cyrus-sasl /etc/rc.d/rc0.d/K49cyrus-sasl
153 ln -sf ../init.d/cyrus-sasl /etc/rc.d/rc3.d/S24cyrus-sasl
154 ln -sf ../init.d/cyrus-sasl /etc/rc.d/rc6.d/K49cyrus-sasl
155 ln -sf ../init.d/leds /etc/rc.d/rc0.d/K79leds
156 ln -sf ../init.d/leds /etc/rc.d/rc3.d/S21leds
157 ln -sf ../init.d/leds /etc/rc.d/rc6.d/K79leds
158 ln -sf ../init.d/fireinfo /etc/rc.d/rc3.d/S15fireinfo
159 ln -sf ../init.d/mountkernfs /etc/rc.d/rcsysinit.d/S00mountkernfs
160 ln -sf ../init.d/sysctl /etc/rc.d/rcsysinit.d/S01sysctl
161 ln -sf ../init.d/modules /etc/rc.d/rcsysinit.d/S05modules
162 ln -sf ../init.d/udev /etc/rc.d/rcsysinit.d/S10udev
163 ln -sf ../init.d/waitdrives /etc/rc.d/rcsysinit.d/S19waitdrives
164 ln -sf ../init.d/swap /etc/rc.d/rcsysinit.d/S20swap
165 ln -sf ../init.d/partresize /etc/rc.d/rcsysinit.d/S25partresize
166 ln -sf ../init.d/checkfs /etc/rc.d/rcsysinit.d/S30checkfs
167 ln -sf ../init.d/mountfs /etc/rc.d/rcsysinit.d/S40mountfs
168 ln -sf ../init.d/fsresize /etc/rc.d/rcsysinit.d/S42fsresize
169 ln -sf ../init.d/mounttmpfs /etc/rc.d/rcsysinit.d/S43mounttmpfs
170 ln -sf ../init.d/udev_retry /etc/rc.d/rcsysinit.d/S45udev_retry
171 ln -sf ../init.d/cleanfs /etc/rc.d/rcsysinit.d/S50cleanfs
172 ln -sf ../init.d/setclock /etc/rc.d/rcsysinit.d/S60setclock
173 ln -sf ../init.d/setclock /etc/rc.d/rc0.d/K47setclock
174 ln -sf ../init.d/setclock /etc/rc.d/rc6.d/K47setclock
175 ln -sf ../init.d/console /etc/rc.d/rcsysinit.d/S70console
176 ln -sf ../init.d/firstsetup /etc/rc.d/rcsysinit.d/S75firstsetup
177 ln -sf ../init.d/localnet /etc/rc.d/rcsysinit.d/S80localnet
178 ln -sf ../init.d/pakfire /etc/rc.d/rcsysinit.d/S81pakfire
179 ln -sf ../init.d/firewall /etc/rc.d/rcsysinit.d/S85firewall
180 ln -sf ../init.d/network-trigger /etc/rc.d/rcsysinit.d/S90network-trigger
181 ln -sf ../init.d/rngd /etc/rc.d/rcsysinit.d/S92rngd
182 ln -sf ../init.d/vnstat /etc/rc.d/rc3.d/S01vnstat
183 ln -sf ../init.d/vnstat /etc/rc.d/rc0.d/K51vnstat
184 ln -sf ../init.d/vnstat /etc/rc.d/rc6.d/K51vnstat
185 ln -sf ../init.d/wlanclient /etc/rc.d/rc0.d/K82wlanclient
186 ln -sf ../init.d/wlanclient /etc/rc.d/rc3.d/S19wlanclient
187 ln -sf ../init.d/wlanclient /etc/rc.d/rc6.d/K82wlanclient
188
189 ln -sf ../../../../../usr/local/bin/snortctrl \
190 /etc/rc.d/init.d/networking/red.up/23-RS-snort
191 ln -sf ../../../../../usr/local/bin/qosctrl \
192 /etc/rc.d/init.d/networking/red.up/24-RS-qos
193 ln -sf ../../squid /etc/rc.d/init.d/networking/red.up/27-RS-squid
194
195 for i in green blue orange; do \
196 ln -sf any /etc/rc.d/init.d/networking/$$i; \
197 done
198
199 # intel intel no swconfig
200 ifeq "$(BUILD_PLATFORM)" "arm"
201 ln -sf ../init.d/swconfig /etc/rc.d/rcsysinit.d/S73swconfig
202 else
203 rm -vf /etc/rc.d/init.d/swconfig
204 endif
205 ln -sf ../init.d/acpid /etc/rc.d/rc3.d/S12acpid
206 ln -sf ../init.d/acpid /etc/rc.d/rc0.d/K87acpid
207 ln -sf ../init.d/acpid /etc/rc.d/rc6.d/K87acpid
208 @$(POSTBUILD)