blob: 3341d938a4aa4c7dbe95b4eab65bc4edfc67abf4 (
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
|
#!/bin/sh
set -e
OUT="$(readlink -f "$1")"
shift
cd "$(dirname "$(readlink -f "$0")")"
INIT="./init.plain"
while [ $# -gt 0 ]; do
case "$1" in
encrypted)
INIT="./init.enc"
;;
esac
shift
done
LIST="$(mktemp)"
# Base list
cp baselist "$LIST"
# Init script
echo "file /init $INIT 755 0 0" >> "$LIST"
echo >> "$LIST"
# Executables
while read EXE; do
P="$(which "$EXE")"
echo "# $EXE" >> "$LIST"
echo "file $P $P 755 0 0" >> "$LIST"
ldd "$P" | awk '{ print $3 }' | sed -n '/^[^ ]\+$/p' | while read LIB; do
echo "file $LIB $LIB 755 0 0" >> "$LIST"
done
done <exelist
# Print current list
cat "$LIST"
# Buld initramfs
CPIO="$(mktemp)"
gen_init_cpio "$LIST" > "$CPIO"
gzip "$CPIO"
mv "$CPIO.gz" "$OUT"
# Cleaup
rm "$LIST"
|