WizardKit/setup/linux/profile/airootfs/etc/skel/.zlogin
2Shirt c235926930
Remove Linux Minimal build
- Merge archiso profiles
- Merge package lists
- Merge full/minimal sections in build_linux
- Remove minimal boot entries
- Remove minimal from build-ufd config and scripts
- Update Linux README.md

Addresses #207
2022-12-17 23:07:35 -08:00

21 lines
585 B
Bash

setterm -blank 0 -powerdown 0 2>/dev/null
if [ "$(fgconsole 2>/dev/null)" -eq "1" ]; then
# Set up teststation details
$HOME/.setup_teststation
# Start X or HW-diags
if ! grep -Fq "nox" /proc/cmdline; then
# Show freeze warning
echo ""
echo "NOTE: Not all GPUs/displays are supported."
echo " If the system is frozen on this screen"
echo " please restart and try CLI mode instead"
echo ""
# Start x
echo "Starting X..."
startx >/dev/null 2>&1
else
hw-diags --cli
fi
fi