blob: 907a85a97ebc9a5c7a87c2877c10c5067ea50bf1 (
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
|
#!/bin/bash
build() {
local m=
local -a md_devs mods
add_if_avail() {
local r= resolved=
# treat this as an alias, since ext3 might be aliased to ext4.
IFS=$'\n' read -rd '' -a resolved < \
<(modprobe -d "$_optmoduleroot" -S "$KERNELVERSION" -R "$1" 2>/dev/null)
for r in "${resolved[@]}"; do
_autodetect_cache["$r"]=1
done
}
if [[ ! -d /sys/devices ]]; then
error "/sys does not appear to be mounted. Unable to use autodetection"
return 1
fi
mapfile -t mods < <(auto_modules)
for m in "${mods[@]}"; do
_autodetect_cache["$m"]=1
done
# detect filesystem for root
if rootfstype=$(findmnt -uno fstype '/'); then
add_if_avail "$rootfstype"
else
error "failed to detect root filesystem"
fs_autodetect_failed=1
fi
# detect filesystem for separate /usr
if usrfstype=$(findmnt -snero fstype --tab-file '/etc/fstab' /usr); then
add_if_avail "$usrfstype"
fi
# scan for md raid devices
md_devs=(/sys/class/block/md*/md/level)
if [[ -e $md_devs ]]; then
quiet "found %d mdadm arrays to scan" "${#md_devs[*]}"
mapfile -t mods < <(awk '{ gsub(/raid[456]/, "raid456"); print; }' "${md_devs[@]}")
for m in "${mods[@]}"; do
_autodetect_cache["$m"]=1
done
fi
if (( ${#_autodetect_cache[*]} )); then
quiet "caching %d modules" "${#_autodetect_cache[*]}"
fi
}
help() {
cat <<HELPEOF
This hook shrinks your initramfs to a smaller size by autodetecting the needed
modules. Be sure to verify included modules are correct and none are missing.
This hook must be run before other subsystem hooks in order to take advantage
of auto-detection. Any hooks placed before 'autodetect' will be installed in
full.
HELPEOF
}
# vim: set ft=sh ts=4 sw=4 et:
|