-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathgeninitrd.sh
More file actions
executable file
·40 lines (33 loc) · 849 Bytes
/
geninitrd.sh
File metadata and controls
executable file
·40 lines (33 loc) · 849 Bytes
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
#!/usr/bin/bash
if [ $# != 2 ]
then
echo "usage: $0 sysrootdir initrdfullpath"
exit 1
fi
if [ -z $1 ]
then
echo "please pass a non empty sysroot"
exit 1
fi
if [ -z $2 ]
then
echo "please pass a non empty initrd full path"
exit 1
fi
if [ -z "$(which fakeroot)" ]
then
echo "script requires fakeroot to run, please install it."
exit 1
fi
fakeroot << EOF
# chown to proper uids, keeping setuid bits
find $1/ ! -type l -perm -04000 -exec chown -h 0:0 {} + \
-exec chmod u+s {} +
find $1/ ! -type l ! -perm -04000 -exec chown 0:0 -h {} +
find $1/home/astral ! -type l -perm -04000 -exec chown -h 1000:1000 {} + \
-exec chmod u+s {} +
find $1/home/astral ! -type l ! -perm -04000 -exec chown -h 1000:1000 {} +
# create initrd
cd $1
tar --format=ustar -cf $2 *
EOF