-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmake-bootloader.in
executable file
·167 lines (132 loc) · 3.2 KB
/
make-bootloader.in
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#!/bin/sh -eu
. shell-error
. shell-args
PROJECT=bootloader
MIBOOT_DIR="/lib/$PROJECT"
KERNEL_DIR="$MIBOOT_DIR"
show_help()
{
cat <<-EOF
Usage: $PROG [options]
Options:
-b, --bootdir=DIR specifies boot directory (default: /boot);
-q, --quiet try to be more quiet;
-v, --verbose print a message for each action;
-V, --version print program version and exit;
-h, --help show this text and exit.
Report bugs to authors.
EOF
exit
}
print_version()
{
cat <<-EOF
$PROG version @VERSION@
Written by Alexey Gladkov.
Copyright (C) 2020 Alexey Gladkov <[email protected]>
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
EOF
exit
}
bootloader_build_image()
{
verbose "Building bootloader runtime image"
export KERNEL="$(cat "$KERNEL_DIR/boot/version")"
export KERNEL_CONFIG="$KERNEL_DIR/boot/config"
export KERNEL_MODULES_DIR="/lib/modules/$KERNEL"
make-initrd -k "$KERNEL" -b "$KERNEL_DIR/boot" -c "/etc/$PROJECT.mk"
}
bootloader_copy()
{
! cmp -s -- "$@" ||
return 0
mkdir $verbose -p -- "$bootdir/efi/EFI/LINUX"
cp $verbose -f -- "$@"
}
bootloader_update_config()
{
verbose "Updating bootloader configuration"
. shell-git-config
conf="$bootdir/$PROJECT.conf"
if [ ! -f "$conf" ]; then
root="$(findmnt -n -o UUID -T "$bootdir")"
{
printf '[global]\n'
printf '\t%s\n' \
"timeout = 10" \
"cmdline = ro root=UUID=$root"
} > "$conf"
fi
labels=' '
git_config_get_subsections_handler()
{
labels="$labels\"$1\" "
}
print_entry()
{
local kver label kernel initrd initrd_name suf
for kernel; do
[ -f "$kernel" ] ||
return 0
kver="${kernel##*/vmlinuz}"
kver="${kver#-}"
label="${kver:+Kernel ($kver)}"
label="${label:-Default}"
if [ -z "${labels##* \"$label\" *}" ]; then
verbose "Skip $label"
continue
fi
initrd=
for initrd_name in initrd initramfs; do
for suf in '' '.img'; do
if [ -f "$bootdir/$initrd_name${kver:+-$kver}$suf" ]; then
initrd="$bootdir/$initrd_name${kver:+-$kver}$suf"
break 2
fi
done
done
verbose "Adding new entry for '$label'"
{
printf '\n'
printf '[boot "%s"]\n' "$label"
printf '\tkernel = %s\n' "$kernel"
[ -z "$initrd" ] ||
printf '\tinitrd = %s\n' "$initrd"
}
done
}
git_config_env "$conf"
git_config_get_subsections 'boot'
{
print_entry "$bootdir"/vmlinuz
print_entry "$bootdir"/vmlinuz-[A-Za-z]*
print_entry "$bootdir"/vmlinuz-[0-9]*
} >> "$conf"
}
TEMP=`getopt -n "$PROG" -o "b:,$getopt_common_opts" -l "boot:,$getopt_common_longopts" -- "$@"` ||
show_usage
eval set -- "$TEMP"
bootdir=/boot
while :; do
case "$1" in
-b|--boot-dir)
bootdir="$(opt_check_dir "$1" "$2")"
;;
-h|--help) show_help
;;
-q|--quiet) quiet=-q; verbose=
;;
-v|--verbose) verbose=-v; quiet=
;;
-V|--version) print_version "$PROG"
;;
--) shift; break
;;
esac
shift
done
bootloader_build_image
bootloader_copy "$KERNEL_DIR/boot/vmlinuz" "$bootdir/efi/EFI/LINUX/$PROJECT.efi"
bootloader_copy "$KERNEL_DIR/boot/bootloader.img" "$bootdir/efi/EFI/LINUX/$PROJECT.img"
bootloader_update_config