blob: e9b88acb376253c896e235563b652c1c6e6f8e98 (
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
|
SECTION = "base"
PR = "r9"
DEPENDS = "nslu2-linksys-libs"
SRC_URI = "http://nslu.sf.net/downloads/nslu2-linksys-ramdisk-2.3r63-2.tar.bz2 \
file://README \
file://NOTES \
file://ipkg-fl \
file://motd-fl \
file://motd-un \
file://unsling \
file://resling \
file://slingover \
file://linuxrc \
file://unslung.gif \
file://nsswitch.conf \
file://rc.optware-start \
file://rc.optware-stop \
file://rc-diversion.patch;patch=1 \
file://rc.1-diversion.patch;patch=1 \
file://rc.crond-diversion.patch;patch=1 \
file://rc.halt-diversion.patch;patch=1 \
file://rc.local-diversion.patch;patch=1 \
file://rc.modules-diversion.patch;patch=1 \
file://rc.network-diversion.patch;patch=1 \
file://rc.quickset-diversion.patch;patch=1 \
file://rc.quota-diversion.patch;patch=1 \
file://rc.reboot-diversion.patch;patch=1 \
file://rc.reset_usrgrpshare-diversion.patch;patch=1 \
file://rc.rstimezone-diversion.patch;patch=1 \
file://rc.samba-diversion.patch;patch=1 \
file://rc.sysinit-diversion.patch;patch=1 \
file://rc.thttpd-diversion.patch;patch=1 \
file://rc.xinetd-diversion.patch;patch=1 \
file://root-passwd.patch;patch=1 \
file://tmp-handling.patch;patch=1 \
file://create-ramdisks.patch;patch=1 \
file://remount-noatime.patch;patch=1 \
file://initialise-mtab.patch;patch=1 \
file://wait-for-quotacheck.patch;patch=1 \
file://mount_usbdevfs.patch;patch=1 \
file://security-fixes.patch;patch=1 \
file://upgrade.htm \
file://upgrade.cgi \
file://telnet.htm \
file://rc.bootbin \
"
S = "${WORKDIR}/nslu2-linksys-ramdisk-2.3r63"
python () {
# Don't build unslung images unless we're targeting an nslu2
mach = bb.data.getVar("MACHINE", d, 1)
if mach != 'nslu2':
raise bb.parse.SkipPackage("Unslung only builds for the Linksys NSLU2")
}
do_compile () {
echo "V2.3R63-uNSLUng-${DISTRO_VERSION}" > ${S}/.unslung
install -m 644 ${WORKDIR}/unslung.gif ${S}/home/httpd/html/linksys.gif
install -m 644 ${WORKDIR}/telnet.htm ${S}/home/httpd/html/Management/telnet.htm
sed -i -e 's/@version#</@version#-uNSLUng-'${DISTRO_VERSION}'</' ${S}/home/httpd/html/home.htm
sed -i -e s/@ds_sw_version#/@ds_sw_version#-uNSLUng-${DISTRO_VERSION}/ \
${S}/home/httpd/html/Management/upgrade.htm
install -m 755 ${WORKDIR}/ipkg-fl ${S}/usr/bin/ipkg-fl
install -m 644 ${WORKDIR}/motd-fl ${S}/etc/motd-fl
sed -i -e s/@v@/V2.3R63-uNSLUng-${DISTRO_VERSION}/ ${S}/etc/motd-fl
install -m 644 ${WORKDIR}/motd-un ${S}/etc/motd-un
sed -i -e s/@v@/V2.3R63-uNSLUng-${DISTRO_VERSION}/ ${S}/etc/motd-un
rm -f ${S}/etc/motd
ln -s motd-fl ${S}/etc/motd
sed -i -e 's+@public_2#</td>+@public_2# <span class="divider"> | </span><a href="Management/telnet.cgi" class="submenu">\ Manage Telnet</a></td>+' \
${S}/home/httpd/html/home.htm
sed -i -e 's+<td bgcolor="#6666cc" align="right" height="33" valign="middle"> </td>+<td bgcolor="#6666cc" fgcolor="#ffffff" align="right" height="33" valign="middle"><center><span class=mainmenu>uNSLUng status: \ Running from Internal Flash</span></center></td>+' \
${S}/home/httpd/html/home.htm
sed -i -e 's|> <|><a href="Unslung" class="mainmenu" target="_top">Unslung Doco</a><|' \
${S}/home/httpd/html/manhead.htm
install -d ${S}/opt/doc
install -m 755 ${WORKDIR}/README ${S}/opt/doc/README
install -m 755 ${WORKDIR}/NOTES ${S}/opt/doc/NOTES
rm -f ${S}/home/httpd/html/Unslung
ln -s /opt/doc ${S}/home/httpd/html/Unslung
install -m 755 ${WORKDIR}/linuxrc ${S}/linuxrc
# Allow rc.bootbin to be diverted.
mv ${S}/etc/rc.d/rc.bootbin ${S}/sbin/rc.bootbin
install -m 755 ${WORKDIR}/rc.bootbin ${S}/etc/rc.d/rc.bootbin
install -d ${S}/initrd
install -m 755 ${WORKDIR}/unsling ${S}/sbin/unsling
install -m 755 ${WORKDIR}/resling ${S}/sbin/resling
install -m 755 ${WORKDIR}/slingover ${S}/sbin/slingover
install -m 755 ${WORKDIR}/rc.optware-start ${S}/etc/rc.d/rc.optware-start
install -m 755 ${WORKDIR}/rc.optware-stop ${S}/etc/rc.d/rc.optware-stop
install -m 644 ${WORKDIR}/nsswitch.conf ${S}/etc/nsswitch.conf
# Add the diversion script directory
install -d ${S}/unslung
# Remove the libraries, because they are in nslu2-linksys-libs now
rm -rf ${S}/lib
}
do_install () {
( cd ${S} ; tar -c -v -f - --exclude '.pc' . ) | ( cd ${D} ; tar xvf - )
}
PACKAGES = "${PN}"
FILES_${PN} = "/"
RDEPENDS_${PN} = "nslu2-linksys-libs"
|