blob: 80e22d1924e2a5e4fb39d7848e155cbb3288ce2e (
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
|
DESCRIPTION = "A text-based bootmanager allowing a Zaurus to boot from SD or CF. \
Tested machines: Collie, Poodle, Akita, Spitz"
SECTION = "base"
PRIORITY = "optional"
MAINTAINER = "Matthias 'CoreDump' Hentges <oe@hentges.net>"
LICENSE = "GPL"
PR = "r5"
SRC_URI = "file://altboot-menu \
file://altboot.rc \
file://altboot.func \
file://init.altboot \
file://altboot.cfg"
# S = "${WORKDIR}/files"
do_install() {
install -d ${D}/sbin
install -d ${D}/etc/altboot-menu
install -d ${D}/etc/altboot-menu/Advanced
install -d ${D}/etc/altboot.rc
install -d ${D}/usr/share/doc/altboot
install -m 0644 ${WORKDIR}/altboot.cfg ${D}/etc
install -m 0644 ${WORKDIR}/altboot.func ${D}/etc
# install -m 0644 ${WORKDIR}/docs/altboot/*.txt ${D}/usr/share/doc/altboot
install -m 0755 ${WORKDIR}/init.altboot ${D}/sbin
install -m 0755 ${WORKDIR}/altboot-menu/*-* ${D}/etc/altboot-menu
install -m 0755 ${WORKDIR}/altboot-menu/Advanced/*-* ${D}/etc/altboot-menu/Advanced
}
pkg_postinst() {
update-alternatives --install /sbin/init init /sbin/init.altboot 55
}
pkg_postinst_spitz() {
# Note: Spitz support is a royal pain in the ass.
# Since Spitz pivot_roots by default, there is no real way
# a user can install an altboot.ipk into the flash FS.
# So we need to do that manually (*SIGH*)
# /l/m only exists on the HDD on spitz
if test -d /lib/modules
then
if [ -e /media/realroot/sbin/init ]; then
ROOT_MOUNT_POINT="/media/realroot"
elif [ -e /media/ROM/sbin/init ]; then
ROOT_MOUNT_POINT="/media/ROM"
fi
ROOT_MOUNT_DEVICE = `cat /proc/mounts | grep $REALROOT | grep jffs2 | cut -d " " -f 1`
mount -oremount,rw $ROOT_MOUNT_DEVICE $ROOT_MOUNT_POINT
cp -R /etc/altboot* $ROOT_MOUNT_POINT/etc
cp /sbin/init.altboot $ROOT_MOINT_POINT/sbin
mv $ROOT_MOUNT_POINT/sbin/init $ROOT_MOUNT_POINT/sbin/init.orig
ln -s /sbin/init.altboot $ROOT_MOUNT_POINT/sbin/init
fi
}
pkg_postrm() {
update-alternatives --remove init /sbin/init.altboot
}
pkg_postrm_spitz() {
# FIXME: To be written
a=a # do nothing
}
|