NOTE: This was unintentionally squashed so some details were lost * Major updates to build_linux to support the current archiso scripts * Most customize_airootfs.sh code has been moved elsewhere * Using static files or links where possible * Generating other files as needed in build_linux * Syslinux configuration has been simplified * Dropped i3 * Dropped rxvt-unicode in favor of termite * Font rendering broke one too many times * Dropped NetworkManager in favor of iwd/systemd-networkd
19 lines
357 B
Bash
Executable file
19 lines
357 B
Bash
Executable file
#!/bin/env bash
|
|
#
|
|
# Warning: customize_airootfs.sh is deprecated! Support for it will be removed in a future archiso version.
|
|
|
|
set -o errexit
|
|
set -o errtrace
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
|
|
sed -i 's/#\(en_US\.UTF-8\)/\1/' /etc/locale.gen
|
|
locale-gen
|
|
|
|
# Sudo
|
|
echo '%wheel ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers
|
|
|
|
# SSH
|
|
#rm /root/.ssh/id*
|
|
#rm /root/.zlogin
|