blob: a45f2964dbcf9aa0d4a1cd52ff94a3464ab956f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh -e
output="$1"
s6-hiercopy layout/rootfs $output/rootfs
chown -R 0:0 $output/rootfs
find "$output/rootfs" -type f -name .empty -size 0c -exec s6-rmrf {} \;
buildtime=$(s6-clock)
hostarch=$(s6-echo $TRIPLE | cut -f1 -d-)
sed -i -e "s/%%HOSTNAME%%/lh-$hostarch/g" $output/rootfs/etc/motd $output/rootfs/etc/issue.net $output/rootfs/root/.execline-shell
while read file user group perms ; do
if s6-test -n "$file" -a "$file" != "#" ; then
$output/build-build/command/s6-chown -u $user -g $group -- $output/$file
$output/build-build/command/s6-chmod $perms $output/$file
fi
done < sub/layout/permissions
|