blob: b491058f66d61daba90aab3984bfd3fe8ded37eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
ROOT=/
SUPERUSER=root
SUPERGROUP=root
VERSION := $(shell awk '/Version:/ { print $$2 }' initscripts.spec)
RELEASE := $(shell awk '/Release:/ { print $$2 }' initscripts.spec)
TAG=initscripts-$(VERSION)-$(RELEASE)
mandir=/usr/share/man
all:
make -C src
make -C po
install:
mkdir -p $(ROOT)/etc/profile.d $(ROOT)/sbin $(ROOT)/usr/sbin
mkdir -p $(ROOT)$(mandir)/man{5,8}
mkdir -p $(ROOT)/etc/rwtab.d $(ROOT)/etc/statetab.d
mkdir -p $(ROOT)/var/lib/stateless/writable
mkdir -p $(ROOT)/var/lib/stateless/state
install -m644 adjtime $(ROOT)/etc
install -m644 inittab $(ROOT)/etc/inittab.sysv
if uname -m | grep -q s390 ; then \
install -m644 inittab.s390 $(ROOT)/etc/inittab.sysv ; \
fi
install -m644 inittab.upstart $(ROOT)/etc/inittab.upstart
install -m644 rwtab statetab networks $(ROOT)/etc
install -m755 service setsysfont $(ROOT)/sbin
install -m644 lang.csh lang.sh $(ROOT)/etc/profile.d
install -m644 debug.csh debug.sh $(ROOT)/etc/profile.d
install -m755 sys-unconfig $(ROOT)/usr/sbin
install -m644 crypttab.5 $(ROOT)$(mandir)/man5
install -m644 service.8 sys-unconfig.8 $(ROOT)$(mandir)/man8
install -m644 sysctl.conf $(ROOT)/etc/sysctl.conf
if uname -m | grep -q sparc ; then \
install -m644 sysctl.conf.sparc $(ROOT)/etc/sysctl.conf ; fi
if uname -m | grep -q s390 ; then \
install -m644 sysctl.conf.s390 $(ROOT)/etc/sysctl.conf ; fi
mkdir -p $(ROOT)/etc/X11
install -m755 prefdm $(ROOT)/etc/X11/prefdm
install -m755 -d $(ROOT)/etc/rc.d $(ROOT)/etc/sysconfig
install -m755 rc.d/rc rc.d/rc.local rc.d/rc.sysinit $(ROOT)/etc/rc.d/
cp -af rc.d/init.d $(ROOT)/etc/rc.d/
install -m755 sysconfig/debug sysconfig/init sysconfig/netconsole sysconfig/readonly-root $(ROOT)/etc/sysconfig/
cp -af sysconfig/network-scripts $(ROOT)/etc/sysconfig/
cp -af ppp udev NetworkManager event.d $(ROOT)/etc
mkdir -p $(ROOT)/etc/ppp/peers
chmod 755 $(ROOT)/etc/rc.d/* $(ROOT)/etc/rc.d/init.d/*
chmod 755 $(ROOT)/etc/ppp/peers
chmod 755 $(ROOT)/etc/ppp/ip*
chmod 755 $(ROOT)/etc/sysconfig/network-scripts/ifup-*
chmod 755 $(ROOT)/etc/sysconfig/network-scripts/ifdown-*
chmod 755 $(ROOT)/etc/sysconfig/network-scripts/init*
chmod 755 $(ROOT)/etc/sysconfig/network-scripts/net.hotplug
chmod 755 $(ROOT)/etc/NetworkManager/dispatcher.d/00-netreport
chmod 644 $(ROOT)/etc/event.d/*
mkdir -p $(ROOT)/etc/sysconfig/modules
mkdir -p $(ROOT)/etc/sysconfig/networking/devices
mkdir -p $(ROOT)/etc/sysconfig/networking/profiles/default
#mv $(ROOT)/etc/sysconfig/network-scripts/ifcfg-lo \
# $(ROOT)/etc/sysconfig/networking/devices
#ln -s ../networking/devices/ifcfg-lo \
# $(ROOT)/etc/sysconfig/network-scripts/ifcfg-lo
#ln -s ../networking/devices/ifcfg-lo \
# $(ROOT)/etc/sysconfig/networking/profiles/default/ifcfg-lo
mkdir -p $(ROOT)/etc/sysconfig/console
if uname -m | grep -q s390 ; then \
install -m644 sysconfig/init.s390 $(ROOT)/etc/sysconfig/init ; \
fi
mv $(ROOT)/etc/sysconfig/network-scripts/ifup $(ROOT)/sbin
mv $(ROOT)/etc/sysconfig/network-scripts/ifdown $(ROOT)/sbin
(cd $(ROOT)/etc/sysconfig/network-scripts; \
ln -sf ifup-ippp ifup-isdn ; \
ln -sf ifdown-ippp ifdown-isdn ; \
ln -sf ../../../sbin/ifup . ; \
ln -sf ../../../sbin/ifdown . )
make install ROOT=$(ROOT) mandir=$(mandir) -C src
make install PREFIX=$(ROOT) -C po
mkdir -p $(ROOT)/var/run/netreport $(ROOT)/var/log
chown $(SUPERUSER):$(SUPERGROUP) $(ROOT)/var/run/netreport
chmod u=rwx,g=rwx,o=rx $(ROOT)/var/run/netreport
touch $(ROOT)/var/run/utmp
touch $(ROOT)/var/log/wtmp
touch $(ROOT)/var/log/btmp
for i in 0 1 2 3 4 5 6 ; do \
dir=$(ROOT)/etc/rc.d/rc$$i.d; \
mkdir $$dir; \
chmod u=rwx,g=rx,o=rx $$dir; \
done
# Can't store symlinks in a CVS archive
ln -s ../init.d/killall $(ROOT)/etc/rc.d/rc0.d/S00killall
ln -s ../init.d/killall $(ROOT)/etc/rc.d/rc6.d/S00killall
ln -s ../init.d/halt $(ROOT)/etc/rc.d/rc0.d/S01halt
ln -s ../init.d/halt $(ROOT)/etc/rc.d/rc6.d/S01reboot
ln -s ../init.d/single $(ROOT)/etc/rc.d/rc1.d/S99single
ln -s ../rc.local $(ROOT)/etc/rc.d/rc2.d/S99local
ln -s ../rc.local $(ROOT)/etc/rc.d/rc3.d/S99local
ln -s ../rc.local $(ROOT)/etc/rc.d/rc4.d/S99local
ln -s ../rc.local $(ROOT)/etc/rc.d/rc5.d/S99local
# These are LSB compatibility symlinks. At some point in the future
# the actual files will be here instead of symlinks
for i in 0 1 2 3 4 5 6 ; do \
ln -s rc.d/rc$$i.d $(ROOT)/etc/rc$$i.d; \
done
for i in rc rc.sysinit rc.local ; do \
ln -s rc.d/$$i $(ROOT)/etc/$$i; \
done
check:
for afile in `find . -type f -perm +111|grep -v \.csh | grep -v po/ ` ; do \
if ! file $$afile | grep -s ELF >/dev/null; then \
bash -n $$afile || { echo $$afile ; exit 1 ; } ; \
fi ;\
done
changelog:
@rm -f ChangeLog
git-log --stat > ChangeLog
clean:
make clean -C src
make clean -C po
@rm -fv *~ changenew ChangeLog.old *gz
tag:
@git tag -a -m "Tag as $(TAG)" $(TAG)
@echo "Tagged as $(TAG)"
archive: clean check tag changelog
@git-archive --format=tar --prefix=initscripts-$(VERSION)/ HEAD > initscripts-$(VERSION).tar
@mkdir -p initscripts-$(VERSION)/
@cp ChangeLog initscripts-$(VERSION)/
@tar --append -f initscripts-$(VERSION).tar initscripts-$(VERSION)
@bzip2 -f initscripts-$(VERSION).tar
@rm -rf initscripts-$(VERSION)
@echo "The archive is at initscripts-$(VERSION).tar.bz2"
|