blob: 7bb23a87dfa2d5da8ba541975bb148f39454e712 (
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
|
#!/bin/bash
build() {
local applet
add_binary /usr/lib/initcpio/busybox /bin/busybox
for applet in $(/usr/lib/initcpio/busybox --list); do
add_symlink "/usr/bin/$applet" busybox
done
# add kmod with applet symlinks
add_binary kmod
for applet in {dep,ins,rm,ls}mod mod{probe,info}; do
add_symlink "/usr/bin/$applet" kmod
done
add_binary blkid
add_binary mount
add_binary switch_root
add_symlink "/etc/mtab" "/proc/self/mounts"
# Add an empty fstab for mount and fsck
>"$BUILDROOT/etc/fstab"
add_file "/usr/lib/initcpio/init_functions" "/init_functions"
add_file "/usr/lib/initcpio/init" "/init"
add_file "/usr/lib/modprobe.d/usb-load-ehci-first.conf"
}
help() {
cat <<HELPEOF
This hook sets up all initial directories and installs base utilities. DO NOT
remove this one unless you know what you're doing.
HELPEOF
}
# vim: set ft=sh ts=4 sw=4 et:
|