Add 4 configurable profiles (stable-cinnamon, stable-niri, mainline-cinnamon, mainline-niri) with a single unified build entry point. - iso/build.sh: replaces build-iso.sh / build-live-iso.sh / build-niri-live-iso.sh; accepts --profile and --type flags - iso/_inner-build-unified.sh: replaces the three _inner-build-*.sh scripts; branches on BUILD_TYPE / DESKTOP / KERNEL_PKG env vars - config/profiles/stable-niri/: new — linux (k6) + niri/Wayland/noctalia - config/profiles/mainline-cinnamon/: new — linux-mainline (k7) + Cinnamon/X11 - config/profiles/mainline-niri/packages.live.list: symlink added - config/profiles/stable-cinnamon/packages.live.list: symlink added - Makefile: PROFILE variable (default stable-cinnamon), shellcheck updated - installer/install.sh: respects DEFAULT_PROFILE env (set by live ISO) - tests/run-qemu-test.sh: passes PROFILE through to build and overlay Live ISOs embed the installer pre-configured for the same profile they were built with (DEFAULT_PROFILE in /etc/profile.d/).
23 lines
740 B
Plaintext
23 lines
740 B
Plaintext
# Mainline-cinnamon profile.
|
|
# Linux mainline kernel (kernel 7) + Cinnamon DE + X11.
|
|
# Useful when you need cutting-edge hardware support (GPU, WiFi, SoundWire)
|
|
# with the familiar Cinnamon desktop.
|
|
PROFILE_NAME="mainline-cinnamon"
|
|
PROFILE_DESC="Linux mainline kernel + Cinnamon (X11)"
|
|
|
|
# Kernel — mainline for newest hardware and driver support.
|
|
KERNEL_PKG="linux-mainline"
|
|
|
|
# Display server / DE.
|
|
DISPLAY_SERVER="x11"
|
|
DESKTOP="cinnamon"
|
|
|
|
# Package list (relative to repo root).
|
|
PROFILE_PACKAGES_FILE="config/profiles/mainline-cinnamon/packages.list"
|
|
|
|
# Default GTK theme + icons (overrides install.conf if set there).
|
|
GTK_THEME="Gruvbox-Dark"
|
|
ICON_THEME="Gruvbox-Plus-Dark"
|
|
DEFAULT_TERMINAL="alacritty"
|
|
CURSOR_THEME="Bibata-Modern-Ice"
|