summaryrefslogtreecommitdiff
path: root/hooks/casper
blob: 7229612953848565a02b8ab1c511ae38d6787359 (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
#!/bin/sh -e
# initramfs hook for casper

PREREQS=""

# Output pre-requisites
prereqs()
{
       echo "$PREREQ"
}

case "$1" in
    prereqs)
       prereqs
       exit 0
       ;;
esac

. /usr/share/initramfs-tools/hook-functions


manual_add_modules unionfs

# Needed for devmapper
if [ -e /sbin/dmsetup ]; then
	manual_add_modules cloop
	copy_exec /sbin/blockdev /sbin
	copy_exec /sbin/dmsetup /sbin
	manual_add_modules dm-snapshot
fi

# We need losetup
copy_exec /sbin/losetup /sbin

# Casper hooks
mkdir -p ${DESTDIR}/lib/casper
copy_exec /usr/share/casper/casper-reconfigure /bin
copy_exec /usr/share/casper/casper-preseed /bin

# Ubuntu or Debian test
if [ -x /sbin/udevplug ]; then
	mkdir -p ${DESTDIR}/lib/udev
	copy_exec /lib/udev/cdrom_id /lib/udev
	copy_exec /lib/udev/vol_id /lib/udev
	copy_exec /lib/udev/path_id /lib/udev
else
	copy_exec /sbin/udevtrigger /sbin
fi

copy_exec /usr/bin/udevinfo /bin

# cifs boot 
if [ -x /sbin/mount.cifs ]; then
	copy_exec /sbin/mount.cifs /sbin
	for x in cifs; do
		manual_add_modules ${x}
	done
fi

# squashfs
manual_add_modules squashfs
manual_add_modules loop

# random file system modules
manual_add_modules vfat
manual_add_modules ext3
# needed for vfat. :-/
manual_add_modules nls_cp437
manual_add_modules nls_utf8
manual_add_modules nls_iso8859-1

# cdrom modules
manual_add_modules sr_mod
manual_add_modules ide-cd
manual_add_modules sbp2
manual_add_modules ohci1394

# integrity check
copy_exec /usr/lib/casper/casper-md5check /bin

auto_add_modules net