blob: 1bdc029336f5588627e9139e59cc11a324645a5f (
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
|
DESCRIPTION = "Miscellaneous files for the base system."
SECTION = "base"
PRIORITY = "required"
PR = "r14"
SRC_URI = " \
file://etc/nsswitch.conf \
file://etc/motd \
file://etc/inputrc \
file://etc/host.conf \
file://profile \
file://fstab \
file://issue.net \
file://issue \
file://usbd \
file://share/dot.bashrc \
file://share/dot.profile \
file://share/info.dir \
file://share/motd.md5sums \
file://debian/FAQ \
file://debian/directory-list \
file://debian/control \
file://debian/1777-dirs \
file://debian/rules \
file://debian/conffiles \
file://debian/changelog \
file://debian/copyright.in \
file://debian/postinst \
file://debian/README.FHS \
file://debian/2775-dirs \
file://debian/preinst.in \
file://debian/remove-base \
file://debian/README.base \
file://debian/current-md5sums \
file://licenses/BSD \
file://licenses/GPL-2 \
file://licenses/LGPL-2 \
file://licenses/LGPL-2.1 \
file://licenses/Artistic"
S = "${WORKDIR}"
docdir_append = "/${P}"
do_install () {
install -d ${D}/${docdir}
install -d ${D}${datadir}/${PN}
install -m 644 debian/changelog debian/FAQ debian/README.FHS debian/README.base ${D}/${docdir}/
cat ${S}/debian/copyright.in | sed -e "s&#OSNAME#&${TARGET_OS}&g" > ${D}/${docdir}/copyright
install -m 755 debian/remove-base ${D}/${docdir}
( cd ${D} && install -d `cat ${S}/debian/directory-list` )
install -d ${D}/sys
install -p -m 644 share/* ${D}${datadir}/base-files
install -p -m 644 licenses/* ${D}${datadir}/common-licenses
ln -s LGPL-2.1 ${D}${datadir}/common-licenses/LGPL
ln -s GPL-2 ${D}${datadir}/common-licenses/GPL
cat share/info.dir | sed -e "s&#OSNAME#&${TARGET_OS}&g" > ${D}${datadir}/base-files/info.dir
gzip -9 ${D}/${docdir}/changelog
cd ${D} && chmod 755 `find . -type d`
cd ${D} && chmod 1777 `cat ${S}/debian/1777-dirs`
cd ${D} && chmod 2775 `cat ${S}/debian/2775-dirs`
install -d ${D}/${sysconfdir}/default
install -m 0644 ${WORKDIR}/fstab ${D}/${sysconfdir}/fstab
install -m 0644 ${WORKDIR}/usbd ${D}/${sysconfdir}/default/usbd
[ -z "${MACHINE}" ] && echo "openembedded" >${D}/${sysconfdir}/hostname || echo ${MACHINE} >${D}/${sysconfdir}/hostname
install -m 0644 ${WORKDIR}/profile ${D}/${sysconfdir}/profile
install -m 0644 ${WORKDIR}/issue ${D}/${sysconfdir}/issue
install -m 0644 ${WORKDIR}/issue.net ${D}/${sysconfdir}/issue.net
cat ${WORKDIR}/etc/motd | sed -e "s&#OSNAME#&${TARGET_OS}&g" > ${D}${datadir}/base-files/motd
for f in inputrc nsswitch.conf host.conf
do
install -m 0644 ${WORKDIR}/etc/$f ${D}/${sysconfdir}/
done
install -m 0755 ${D}/usr/share/base-files/dot.profile ${D}/root/.profile
# debian ships these, but they are useless to us
rmdir ${D}/var/lib/dpkg \
${D}/var/lib/misc \
${D}/var/backups \
${D}/usr/src \
${D}/usr/info \
${D}/usr/games \
${D}/usr/doc \
${D}/usr/include \
${D}/usr/share/dict
rm -r ${D}/usr/share/base-files
if grep -q "^\(tmpfs\|ramfs\)\W\+/var" ${D}/etc/fstab; then
# /var is in a ramdisk
install -d ${D}/etc/init.d ${D}/etc/rcS.d
for d in `(cd ${D}/var; ls)`; do
mode=`stat -c %a ${D}/var/$d`
echo "mkdir -p /var/$d" >> ${D}/etc/init.d/populate-var.sh
echo "chmod $mode /var/$d" >> ${D}/etc/init.d/populate-var.sh
done
echo "mkdir -p /var/lock/subsys" >> ${D}/etc/init.d/populate-var.sh
echo "chmod 755 /var/lock/subsys" >> ${D}/etc/init.d/populate-var.sh
echo ">/var/run/utmp" >> ${D}/etc/init.d/populate-var.sh
echo "touch /var/log/wtmp" >> ${D}/etc/init.d/populate-var.sh
echo "chmod 0664 /var/run/utmp /var/log/wtmp" >> ${D}/etc/init.d/populate-var.sh
echo "rm -f /var/run/utmpx" >> ${D}/etc/init.d/populate-var.sh
rmdir ${D}/var/*
chmod a+x ${D}/etc/init.d/populate-var.sh
ln -s ../init.d/populate-var.sh ${D}/etc/rcS.d/S37populate-var.sh
ln -s /var/run/resolv.conf ${D}/etc/resolv.conf
ln -s /var/run/ld.so.cache ${D}/etc/ld.so.cache
ln -s /proc/mounts ${D}/etc/mtab
fi
#
# populate some common mountpoints
#
install -m 0755 -d ${D}/mnt
install -m 0755 -d ${D}/mnt/card
install -m 0755 -d ${D}/mnt/cf
install -m 0755 -d ${D}/mnt/net
install -m 0755 -d ${D}/mnt/ram
}
do_install_append_ramses () {
echo "MNCI" >${D}/${sysconfdir}/hostname
rmdir ${D}/tmp
mkdir -p ${D}/var/tmp
ln -s var/tmp ${D}/tmp
}
PACKAGES = "${PN}-doc ${PN}"
FILES_${PN} = "/"
FILES_${PN}-doc = "/usr/share/doc /usr/share/common-licenses"
|