20 lines
539 B
Bash
Executable file
20 lines
539 B
Bash
Executable file
#!/bin/bash
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
. /etc/profile
|
|
|
|
if [ "$(cat /storage/.config/boot.hint 2>/dev/null)" = "UPDATE" ] || [ ! -e "/storage/.configured" ]
|
|
then
|
|
if [ -e "/usr/share/post-update" ]
|
|
then
|
|
show_splash intro
|
|
echo -ne "\033[100H\033[2K==> Preparing system.." >/dev/console
|
|
/usr/share/post-update
|
|
fi
|
|
rm /storage/.config/boot.hint
|
|
touch /storage/.configured
|
|
fi
|
|
|
|
clear >/dev/console
|
|
/usr/bin/show_splash intro 2>&1 >>${BOOTLOG}
|