-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathstage3-resume-failed.sh
More file actions
executable file
·104 lines (104 loc) · 4.39 KB
/
Copy pathstage3-resume-failed.sh
File metadata and controls
executable file
·104 lines (104 loc) · 4.39 KB
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
#!/bin/bash
#
# shellcheck disable=SC2035,SC2046,SC2086
#
# Resume from a failure in the stage 3 (desktop environment) build process.
set -e
# Ensure we're running as root.
if [ $EUID -ne 0 ]; then
echo "Error: Must be run as root." >&2
exit 1
fi
# Setup the environment.
export MASSOS="$PWD"/massos-rootfs
# Ensure stage1 has been run first.
if [ ! -d "$MASSOS" ]; then
echo "Error: You must run stage1.sh and stage2.sh first!" >&2
exit 1
fi
# Ensure the specified desktop environment is valid.
if [ -z "$1" ]; then
echo "Error: Specify the desktop environment ('stage3/README' for info)." >&2
exit 1
fi
if [ ! -d "stage3/$1" ]; then
echo "Error: '$1' is not a valid or supported desktop environment." >&2
echo "The desktop environment must have a directory in 'stage3/'." >&2
echo "Alternatively, pass 'nodesktop' if you want a core only build." >&2
echo "See 'stage3/README' for more information." >&2
exit 1
fi
if [ ! -e "stage3/$1/stage3-$1.sh" ]; then
echo "Stage 3 directory for '$1' was found, but there is no Stage 3" >&2
echo "build script inside it." >&2
exit 1
fi
# Important verification message.
if [ "$2" != "CONFIRM_STAGE3_RESUME=YES" ]; then
echo "Please edit 'massos-rootfs/sources/build-stage3.sh' as root and" >&2
echo "remove lines 13 up to where your build failed. Otherwise, it will" >&2
echo "try to rebuild the whole system from the start, which WILL cause" >&2
echo "issues and inconsistencies if the system is already part-built." >&2
echo -e "\nOnce you've done that, re-run this script like this:" >&2
echo -e "\n$(basename $0) $1 CONFIRM_STAGE3_RESUME=YES" >&2
exit 1
fi
# Put Stage 3 files into the system.
echo "Trying to resume Stage 3 build for '$1'..."
# Re-enter the chroot and continue the build.
utils/programs/mass-chroot "$MASSOS" /root/mbs/build-stage3.sh
# Put in finalize.sh and finish the build.
echo "Finalizing the build..."
cp finalize.sh "$MASSOS"/root/mbs
utils/programs/mass-chroot "$MASSOS" /root/mbs/finalize.sh
# Mark the stage 3 variant.
echo "$1" > "$MASSOS"/usr/share/massos/.variant
# Install preupgrade, postupgrade and upgrade-exclude.
cp utils/{{pre,post}upgrade{,_ng},etc-force-replace,upgrade-exclude} "$MASSOS"/tmp
# Install Live CD cleanup script for osinstallgui.
install -t "$MASSOS"/tmp -m755 utils/livecd-cleanup.sh
# Strip executables and libraries to free up space.
# Use --strip-unneeded on binaries and shared libraries.
# Use --strip-debug on object files and static libraries.
# Do NOT strip .efi executables as it will remove their secure boot signature!
printf "Stripping binaries and libraries... "
find "$MASSOS"/usr/{bin,lib,libexec,sbin} -type f ! -name \*.a ! -name \*.o ! -name \*.mod ! -name \*.module ! -name \*.ko\* ! -name \*.efi\* -exec strip --strip-unneeded {} ';' &>/dev/null || true
find "$MASSOS"/usr/lib -type f \( -name \*.a -o -name \*.o -o -name \*.mod -o -name \*.module \) -exec strip --strip-debug {} ';' &>/dev/null || true
echo "Done!"
# Generate list of distribution-provided files, for 'upgrade-massos' utility.
find "$MASSOS"/{boot,etc,usr,var} -type d,f,l -printf "%y:%p\n" | sed "s|$MASSOS||" | sort > "$MASSOS"/usr/share/massos/.distfiles
# Finish the MassOS system.
sync
outfile="massos-$(cat "$MASSOS"/etc/massos-release)-rootfs-$(uname -m)-$1.tar"
printf "Creating %s... " "$outfile"
cd "$MASSOS"
tar -cpf ../"$outfile" *
cd ..
echo "Done!"
sync
echo "Compressing $outfile with ZSTD (using $(nproc) threads)... "
zstd --ultra -22 -T$(nproc) --rm "$outfile"
echo "Successfully created $outfile.zst."
b2sum "$outfile.zst" > "$outfile.zst.b2"
echo "Wrote Blake-2 checksum to $outfile.zst.b2."
# Change ownership of rootfs to top-level directory owner if possible.
chown -v "$(stat -c "%U:%G" .)" "$outfile.zst" "$outfile.zst.b2" || true
# Clean up.
rm -rf "$MASSOS"
sync
# Finishing message.
echo
echo "We know it took time, but the build has finally finished successfully!"
echo "You can produce a detached GPG signature for your build by running:"
echo
echo " gpg --detach-sign --armor '$outfile.zst'"
echo
echo "The detached signature will be written to '$outfile.zst.asc'."
echo
echo "If you wish to create a Live CD ISO image for your build, run:"
echo
echo " ./create-livecd.sh '$outfile.zst'"
# Send a notification to the system if supported.
if notify-send --version &>/dev/null; then
notify-send -i "$PWD"/logo/massos-logo-circlecropped.png "MassOS Build System" "The Stage 3 build has finished successfully." &>/dev/null || true
fi