Skip to content
c0rnelius edited this page Oct 22, 2023 · 20 revisions

Builder profile

Users can create a profile.txt file, which make config will read as your default choices.

    1. create file
    1. copy & paste
    1. add user information
NAME=""
USERNAME=""
PASSWORD=""
VERSION=""             # Options: $LTS1: 5.15 / $LTS2: 6.1 / $STABLE: 6.x.y
CCACHE="0"             # Compiler cache
NETWORKMANAGER="1"
RTW88="1"              # Realtek wireless PCIe, SDIO and USB drivers (https://github.com/lwfinger/rtw88)
RTL88XXAU="1"          # RTL88XXAU wireless USB driver (https://github.com/pyavitz/rtl8812au)
USERACCT="0"           # Create user during first boot (bypass the user information above)
USER_PKGS=""
LOCALE=""
TIMEZONE="" 
USER_NAMESERVER1=""
USER_NAMESERVER2=""
  • Example (profile.txt)
NAME="Marvin"
USERNAME="marvin"
PASSWORD="board"
VERSION="$LTS2"
CCACHE="1"
NETWORKMANAGER="0"
RTW88="1"
RTL88XXAU="0"
USERACCT="0"
USER_PKGS="htop libsensors-dev nvme-cli"
LOCALE="en_US.UTF-8"
TIMEZONE="America/New_York"
USER_NAMESERVER1="8.8.8.8"
USER_NAMESERVER2="8.8.4.4"

Flash image

sudo dd if=yourimg.img of=/dev/xxxx bs=24M conv=fsync status=progress
Clone this wiki locally