diff --git a/iso/build-profile/airootfs/etc/calamares/branding/tanin/branding.desc b/iso/build-profile/airootfs/etc/calamares/branding/tanin/branding.desc new file mode 100644 index 0000000..500a781 --- /dev/null +++ b/iso/build-profile/airootfs/etc/calamares/branding/tanin/branding.desc @@ -0,0 +1,24 @@ +--- +componentName: tanin +welcomeStyleCalamares: true +windowExpanding: normal + +strings: + productName: TANINUX + shortProductName: TANINUX + version: camel + shortVersion: camel + versionedName: TANINUX (camel) + shortVersionedName: TANINUX + bootloaderEntryName: TANINUX + productUrl: https://taninux.kgva.ch + supportUrl: https://git.openbureau.ch/karim/taninux + +# Fuji palette for the installer sidebar (matches the desktop). +style: + sidebarBackground: "#0f0f0f" + sidebarText: "#f0f0f0" + sidebarTextSelect: "#a39ec4" + sidebarTextHighlight: "#a39ec4" + +# TODO: add productLogo (logo.png) + a slideshow (show.qml) for polish. diff --git a/iso/build-profile/airootfs/etc/calamares/modules/bootloader.conf b/iso/build-profile/airootfs/etc/calamares/modules/bootloader.conf new file mode 100644 index 0000000..9ce436c --- /dev/null +++ b/iso/build-profile/airootfs/etc/calamares/modules/bootloader.conf @@ -0,0 +1,9 @@ +--- +efiBootLoader: "systemd-boot" +kernel: "/vmlinuz-linux-zen" +img: "/initramfs-linux-zen.img" +fallback: "/initramfs-linux-zen-fallback.img" +timeout: "3" +# Plymouth splash + quiet boot on the installed system. +kernelParams: [ "quiet", "splash", "rw" ] +installEFIFallback: true diff --git a/iso/build-profile/airootfs/etc/calamares/modules/fstab.conf b/iso/build-profile/airootfs/etc/calamares/modules/fstab.conf new file mode 100644 index 0000000..768c4ca --- /dev/null +++ b/iso/build-profile/airootfs/etc/calamares/modules/fstab.conf @@ -0,0 +1,8 @@ +--- +mountOptions: + default: defaults,noatime + btrfs: defaults,noatime,compress=zstd,space_cache=v2 + efi: defaults,noatime,umask=0077 +ssdExtraMountOptions: + btrfs: ssd,discard=async +crypttabOptions: luks diff --git a/iso/build-profile/airootfs/etc/calamares/modules/mount.conf b/iso/build-profile/airootfs/etc/calamares/modules/mount.conf new file mode 100644 index 0000000..7a81e13 --- /dev/null +++ b/iso/build-profile/airootfs/etc/calamares/modules/mount.conf @@ -0,0 +1,37 @@ +--- +# Snapper-friendly Btrfs subvolume layout (@ root + @snapshots at /.snapshots). +extraMounts: +- device: proc + fs: proc + mountPoint: /proc +- device: sys + fs: sysfs + mountPoint: /sys +- device: /dev + mountPoint: /dev + options: bind +- device: tmpfs + fs: tmpfs + mountPoint: /run +- device: /run/udev + mountPoint: /run/udev + options: bind + +mountOptions: +- mountPoint: / + options: defaults,noatime +- mountPoint: "*" + filesystem: btrfs + options: defaults,noatime,compress=zstd + +btrfsSubvolumes: +- mountPoint: / + subvolume: /@ +- mountPoint: /home + subvolume: /@home +- mountPoint: /var/cache + subvolume: /@cache +- mountPoint: /var/log + subvolume: /@log +- mountPoint: /.snapshots + subvolume: /@snapshots diff --git a/iso/build-profile/airootfs/etc/calamares/modules/packages.conf b/iso/build-profile/airootfs/etc/calamares/modules/packages.conf new file mode 100644 index 0000000..bd3d082 --- /dev/null +++ b/iso/build-profile/airootfs/etc/calamares/modules/packages.conf @@ -0,0 +1,12 @@ +--- +backend: pacman +pacman: + num_retries: 3 + disable_download_timeout: true + needed_only: false +operations: +# Strip the live-only installer from the installed target. Everything else was +# cloned by unpackfs. +- try_remove: + - calamares + - cage diff --git a/iso/build-profile/airootfs/etc/calamares/modules/partition.conf b/iso/build-profile/airootfs/etc/calamares/modules/partition.conf new file mode 100644 index 0000000..a67f828 --- /dev/null +++ b/iso/build-profile/airootfs/etc/calamares/modules/partition.conf @@ -0,0 +1,11 @@ +--- +efiSystemPartition: "/boot" # systemd-boot wants the ESP at /boot +efiSystemPartitionSize: 1024M +userSwapChoices: [ none, small, suspend ] +drawNestedPartitions: true +alwaysShowPartitionLabels: true +allowManualPartitioning: true +initialPartitioningChoice: erase +initialSwapChoice: none +defaultFileSystemType: "btrfs" +availableFileSystemTypes: [ "btrfs", "ext4" ] diff --git a/iso/build-profile/airootfs/etc/calamares/modules/services-systemd.conf b/iso/build-profile/airootfs/etc/calamares/modules/services-systemd.conf new file mode 100644 index 0000000..bf5671a --- /dev/null +++ b/iso/build-profile/airootfs/etc/calamares/modules/services-systemd.conf @@ -0,0 +1,13 @@ +--- +services: +- name: greetd # the TANINUX login (tanin-greet) — its config is already + mandatory: false # in place from the tanin-greet package scriptlet +- name: NetworkManager + mandatory: false +- name: snapper-cleanup.timer + mandatory: false +- name: snapper-timeline.timer + mandatory: false +targets: +- name: graphical + mandatory: true diff --git a/iso/build-profile/airootfs/etc/calamares/modules/shellprocess-flathub.conf b/iso/build-profile/airootfs/etc/calamares/modules/shellprocess-flathub.conf new file mode 100644 index 0000000..dba89f0 --- /dev/null +++ b/iso/build-profile/airootfs/etc/calamares/modules/shellprocess-flathub.conf @@ -0,0 +1,5 @@ +--- +dontChroot: false +timeout: 30 +script: +- "flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo" diff --git a/iso/build-profile/airootfs/etc/calamares/modules/shellprocess-snapper.conf b/iso/build-profile/airootfs/etc/calamares/modules/shellprocess-snapper.conf new file mode 100644 index 0000000..7cd19f5 --- /dev/null +++ b/iso/build-profile/airootfs/etc/calamares/modules/shellprocess-snapper.conf @@ -0,0 +1,11 @@ +--- +dontChroot: false +timeout: 120 +# Best-effort snapper setup on the Btrfs target. The @snapshots subvolume is +# already mounted at /.snapshots (see mount.conf); snapper's own create-config +# can conflict with a pre-existing /.snapshots, so this is tolerant. +# snap-pac then auto-snapshots before/after each pacman transaction. +script: +- command: "snapper --no-dbus -c root create-config / || true" + timeout: 60 +- "snapper --no-dbus -c root set-config NUMBER_LIMIT=10 NUMBER_LIMIT_IMPORTANT=5 TIMELINE_CREATE=no || true" diff --git a/iso/build-profile/airootfs/etc/calamares/modules/shellprocess-striplive.conf b/iso/build-profile/airootfs/etc/calamares/modules/shellprocess-striplive.conf new file mode 100644 index 0000000..4ed1fc9 --- /dev/null +++ b/iso/build-profile/airootfs/etc/calamares/modules/shellprocess-striplive.conf @@ -0,0 +1,11 @@ +--- +dontChroot: false +timeout: 30 +# Remove the live-only installer bits from the installed target so it boots the +# desktop (greetd) instead of auto-launching Calamares. +script: +- "rm -f /etc/systemd/system/getty@tty1.service.d/autologin.conf" +- "rmdir --ignore-fail-on-non-empty /etc/systemd/system/getty@tty1.service.d 2>/dev/null || true" +- "rm -f /root/.bash_profile" +- "rm -f /usr/local/bin/tanin-installer" +- "systemctl set-default graphical.target" diff --git a/iso/build-profile/airootfs/etc/calamares/modules/unpackfs.conf b/iso/build-profile/airootfs/etc/calamares/modules/unpackfs.conf new file mode 100644 index 0000000..1f96bdb --- /dev/null +++ b/iso/build-profile/airootfs/etc/calamares/modules/unpackfs.conf @@ -0,0 +1,7 @@ +--- +# Clone the live squashfs onto the target. Path matches install_dir=tanin, +# arch=x86_64, airootfs_image_type=squashfs (see profiledef.sh). +unpack: +- source: "/run/archiso/bootmnt/tanin/x86_64/airootfs.sfs" + sourcefs: "squashfs" + destination: "" diff --git a/iso/build-profile/airootfs/etc/calamares/settings.conf b/iso/build-profile/airootfs/etc/calamares/settings.conf new file mode 100644 index 0000000..2746c67 --- /dev/null +++ b/iso/build-profile/airootfs/etc/calamares/settings.conf @@ -0,0 +1,54 @@ +# Calamares for TANINUX (camel). Model: clone the live system to the target with +# unpackfs, then configure bootloader (systemd-boot), services (greetd), set up +# snapper + Flathub, and strip the live-only installer bits. +--- +modules-search: [ local, /usr/lib/calamares/modules ] + +instances: +- id: snapper + module: shellprocess + config: shellprocess-snapper.conf +- id: flathub + module: shellprocess + config: shellprocess-flathub.conf +- id: striplive + module: shellprocess + config: shellprocess-striplive.conf + +sequence: +- show: + - welcome + - locale + - keyboard + - partition + - users + - summary +- exec: + - partition + - mount + - unpackfs + - machineid + - fstab + - locale + - keyboard + - localecfg + - luksbootkeyfile + - users + - networkcfg + - hwclock + - shellprocess@snapper + - shellprocess@flathub + - shellprocess@striplive + - packages # remove live-only packages (calamares, cage) + - services-systemd # enable greetd + NetworkManager on the target + - mkinitcpio # regenerate initramfs (plymouth hook) + - bootloader # systemd-boot, kernel cmdline 'quiet splash' + - umount +- show: + - finished + +branding: tanin +prompt-install: true +dont-chroot: false +oem-setup: false +disable-cancel: false diff --git a/iso/build-profile/airootfs/etc/hostname b/iso/build-profile/airootfs/etc/hostname new file mode 100644 index 0000000..2dbe21e --- /dev/null +++ b/iso/build-profile/airootfs/etc/hostname @@ -0,0 +1 @@ +archiso diff --git a/iso/build-profile/airootfs/etc/locale.conf b/iso/build-profile/airootfs/etc/locale.conf new file mode 100644 index 0000000..f9c983c --- /dev/null +++ b/iso/build-profile/airootfs/etc/locale.conf @@ -0,0 +1 @@ +LANG=C.UTF-8 diff --git a/iso/build-profile/airootfs/etc/localtime b/iso/build-profile/airootfs/etc/localtime new file mode 120000 index 0000000..0e35b57 --- /dev/null +++ b/iso/build-profile/airootfs/etc/localtime @@ -0,0 +1 @@ +/usr/share/zoneinfo/UTC \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/mkinitcpio.conf.d/archiso.conf b/iso/build-profile/airootfs/etc/mkinitcpio.conf.d/archiso.conf new file mode 100644 index 0000000..5c008e5 --- /dev/null +++ b/iso/build-profile/airootfs/etc/mkinitcpio.conf.d/archiso.conf @@ -0,0 +1,3 @@ +HOOKS=(base udev microcode modconf kms memdisk archiso archiso_loop_mnt archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs block filesystems keyboard) +COMPRESSION="xz" +COMPRESSION_OPTIONS=(-9e) diff --git a/iso/build-profile/airootfs/etc/mkinitcpio.d/linux.preset b/iso/build-profile/airootfs/etc/mkinitcpio.d/linux.preset new file mode 100644 index 0000000..8e85205 --- /dev/null +++ b/iso/build-profile/airootfs/etc/mkinitcpio.d/linux.preset @@ -0,0 +1,8 @@ +# mkinitcpio preset file for the 'linux' package on archiso + +PRESETS=('archiso') + +ALL_kver='/boot/vmlinuz-linux' +archiso_config='/etc/mkinitcpio.conf.d/archiso.conf' + +archiso_image="/boot/initramfs-linux.img" diff --git a/iso/build-profile/airootfs/etc/modprobe.d/broadcom-wl.conf b/iso/build-profile/airootfs/etc/modprobe.d/broadcom-wl.conf new file mode 100644 index 0000000..0eae70c --- /dev/null +++ b/iso/build-profile/airootfs/etc/modprobe.d/broadcom-wl.conf @@ -0,0 +1,7 @@ +# The broadcom-wl package requires some modules to be disabled in order to use +# wl. Since the ISO image needs to cover many hardware cases, this file +# overrides the default blacklist in /usr/lib/modprobe.d/ +# +# If you need to use wl, you may need to delete this file, then `rmmod` any +# already-loaded modules that are now blacklisted before proceeding to modprobe +# wl itself. diff --git a/iso/build-profile/airootfs/etc/motd b/iso/build-profile/airootfs/etc/motd new file mode 100644 index 0000000..4d9eda1 --- /dev/null +++ b/iso/build-profile/airootfs/etc/motd @@ -0,0 +1,11 @@ +To install Arch Linux follow the installation guide: +https://wiki.archlinux.org/title/Installation_guide + +For Wi-Fi, authenticate to the wireless network using the iwctl utility. +For mobile broadband (WWAN) modems, connect with the mmcli utility. +Ethernet, WLAN and WWAN interfaces using DHCP should work automatically. + +After connecting to the internet, the installation guide can be accessed +via the convenience script Installation_guide. + +                                           diff --git a/iso/build-profile/airootfs/etc/pacman.conf b/iso/build-profile/airootfs/etc/pacman.conf new file mode 100644 index 0000000..691d50a --- /dev/null +++ b/iso/build-profile/airootfs/etc/pacman.conf @@ -0,0 +1,25 @@ +# pacman.conf for the LIVE system and (via unpackfs) the installed target. +# [tanin]'s DB-signing key is imported into the keyring by customize_airootfs.sh, +# so Optional TrustAll verifies cleanly here (unlike the build conf which uses Never). +[options] +HoldPkg = pacman glibc +Architecture = auto +CheckSpace +SigLevel = Required DatabaseOptional +LocalFileSigLevel = Optional +ParallelDownloads = 5 +Color +ILoveCandy + +[core] +Include = /etc/pacman.d/mirrorlist + +[extra] +Include = /etc/pacman.d/mirrorlist + +[multilib] +Include = /etc/pacman.d/mirrorlist + +[tanin] +SigLevel = Optional TrustAll +Server = https://git.openbureau.ch/api/packages/karim/arch/tanin/$arch diff --git a/iso/build-profile/airootfs/etc/pacman.d/hooks/uncomment-mirrors.hook b/iso/build-profile/airootfs/etc/pacman.d/hooks/uncomment-mirrors.hook new file mode 100644 index 0000000..e3167cc --- /dev/null +++ b/iso/build-profile/airootfs/etc/pacman.d/hooks/uncomment-mirrors.hook @@ -0,0 +1,13 @@ +# remove from airootfs! +[Trigger] +Operation = Install +Operation = Upgrade +Type = Package +Target = pacman-mirrorlist + +[Action] +Description = Uncommenting HTTPS mirrors in /etc/pacman.d/mirrorlist... +When = PostTransaction +Depends = pacman-mirrorlist +Depends = sed +Exec = /usr/bin/sed -E -i 's/#(Server = https:)/\1/g' /etc/pacman.d/mirrorlist diff --git a/iso/build-profile/airootfs/etc/pacman.d/hooks/zzzz99-remove-custom-hooks-from-airootfs.hook b/iso/build-profile/airootfs/etc/pacman.d/hooks/zzzz99-remove-custom-hooks-from-airootfs.hook new file mode 100644 index 0000000..8dfb943 --- /dev/null +++ b/iso/build-profile/airootfs/etc/pacman.d/hooks/zzzz99-remove-custom-hooks-from-airootfs.hook @@ -0,0 +1,18 @@ +# remove from airootfs! +# As a workaround for https://bugs.archlinux.org/task/49347 , remove pacman hooks specific to the ISO build process. +# If not, they would be used when pacstrap is run in the live environment. + +[Trigger] +Operation = Install +Operation = Upgrade +Operation = Remove +Type = Package +Target = * + +[Action] +Description = Work around FS#49347 by removing custom pacman hooks that are only required during ISO build... +When = PostTransaction +Depends = sh +Depends = coreutils +Depends = grep +Exec = /bin/sh -c "rm -- $(grep -Frl 'remove from airootfs' /etc/pacman.d/hooks/)" diff --git a/iso/build-profile/airootfs/etc/pacman.d/tanin-repo.gpg b/iso/build-profile/airootfs/etc/pacman.d/tanin-repo.gpg new file mode 100644 index 0000000..20b160c --- /dev/null +++ b/iso/build-profile/airootfs/etc/pacman.d/tanin-repo.gpg @@ -0,0 +1,32 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- + +xsBNBGo1eZsBCADJBsWkBZL08x/4d/mftfd30rcRkQJVDX3eEMHaZWeUSLfGt5Hj +m7fYnwnBK29g04UTCjDKRGsvOqukAJQUXGLpLxSPJwsUH+kVKv+8/RCXtrQ6HTCN +auyZGQ3ST8kcAQ+7jntumTehBt+z4LRGMow71W2JL1oqkMK9hEgAA7dqwEWN4K0w +DMSd9iZOpN5PPdvVlTsvxU6JflfyLOS3W+geyL2+zFQWMmCcAqkPxTH6yNAfaoLI +OGR4Mg6MXXdAXbzQKI90445fWGsUX/Ch5ZSWJhJ3wqjUM3r99PErL+C/p0r5wTqv +LFkjZvauI+oLUZwXrP93qfzTG/iChBG+5sJLABEBAAHNDyhBcmNoIFJlZ2lzdHJ5 +KcLAuwQTAQgAbwWCajV5mwILBwkQtv3zViBq9PY1FAAAAAAAHAAQc2FsdEBub3Rh +dGlvbnMub3BlbnBncGpzLm9yZ/ekKg/zx/iqmv/2hOAR9m8CFQgCFgACGQECmwMC +HgEWIQRj8EFYeTI/a/4Pv7K2/fNWIGr09gAAdPIIAI4b/4C83biB4yD10w/u9Feb +s4fn0nauZ/ayZ1JJaq20Ss2pBZaqETxNdIi9sQpno9BXhBRaNdd6k7YIUK7XTylr +lk6V6Rhz6NIquGZHmfp1oszL4FjLUM9QoFWQaRY76psBNHWto/GgPpq8GFtVxmVj +NhOpm/7EcGhniBS+engub7vazVpEIqPycKBBbKSxTvo3hVqsSJpaR2vB1aiLedvY +luYfu/OIhT7SOOdjYTT18kMJxlwwSnhbl1cl47Jcd/1iQB5nwrWnZy28osfsIhEd +4lxppWcgQDXWbzBV57HiTbfnNCncmBIhoTmCKRxosWJPiligeqsqoty/B7lBx47O +wE0EajV5mwEIAO800GVtfe0ZWs+LljaKgkrwWi/u+dsVFgRNWdmqtOBWdszVdxyz +M0LsNMHHOxAWFfjFFbSO9D06aHgmvzLH0c+fgaJeliXFMYS9nOKS7Q6djnjoYtZc +CPxac0JlcLiysHyBdatjHHZr6KZvGaoSobzEfASpfYpScvEyGvi3KN2xD6ssw7AY +GiPof+vAmsfDn0OFo1WRk7eEnoT7JvUx3RrDatXLvBcQRf+49AJvf2lBv0c4tnc8 +9O71wleTHZjL8x0oc3tFDCMBfSGmLzpOaTtgwCPI99yzHeGJGP7JyjUWSAi6WkX4 +COLPhufJC/pJSrvoLa1MzUBU+jfTkJnn8ZkAEQEAAcLArAQYAQgAYAWCajV5mwkQ +tv3zViBq9PY1FAAAAAAAHAAQc2FsdEBub3RhdGlvbnMub3BlbnBncGpzLm9yZzPl +jzz26YEAPcqM+A/M9x8CmwwWIQRj8EFYeTI/a/4Pv7K2/fNWIGr09gAAtaMH/3hS +njGRszJFLsFNUYzgKdv1YYIENsFzSsu00CztKUrYVQxAEOK22mB3a9/3jPlJFSkS +WR8D2rbC2/HUKhRnHomb8Mri6HzVmGEORuE5kNnZd3ij+Dnv7EsNC7DXmuoCZaFI +FKYinsLEpo0bZOACaJpGTH4HqNM49Mrq2vREnuDtPdHGEYOs/+VqBt7tpmpIxGLd +TsJNtdroThqle9ghaCwcSqF4YatTGsNpQI68OmkmQc1ybxhzpRdwajrdTrio2pI9 +ZkfLRBu7pRjn5ekDX4JUNkC1VyO4BuZutjtFRh8YAB0TbFfPmdn3i4/gI2u5rSi1 +UT+fYccVqz5tKm/iXTY= +=6SFS +-----END PGP PUBLIC KEY BLOCK----- \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/passwd b/iso/build-profile/airootfs/etc/passwd new file mode 100644 index 0000000..2807d5d --- /dev/null +++ b/iso/build-profile/airootfs/etc/passwd @@ -0,0 +1 @@ +root:x:0:0:root:/root:/usr/bin/zsh diff --git a/iso/build-profile/airootfs/etc/resolv.conf b/iso/build-profile/airootfs/etc/resolv.conf new file mode 120000 index 0000000..3639662 --- /dev/null +++ b/iso/build-profile/airootfs/etc/resolv.conf @@ -0,0 +1 @@ +/run/systemd/resolve/stub-resolv.conf \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/shadow b/iso/build-profile/airootfs/etc/shadow new file mode 100644 index 0000000..7edfd69 --- /dev/null +++ b/iso/build-profile/airootfs/etc/shadow @@ -0,0 +1 @@ +root::14871:::::: diff --git a/iso/build-profile/airootfs/etc/ssh/sshd_config.d/10-archiso.conf b/iso/build-profile/airootfs/etc/ssh/sshd_config.d/10-archiso.conf new file mode 100644 index 0000000..6ea7b41 --- /dev/null +++ b/iso/build-profile/airootfs/etc/ssh/sshd_config.d/10-archiso.conf @@ -0,0 +1,3 @@ +# Allow root login using password authentication +PasswordAuthentication yes +PermitRootLogin yes diff --git a/iso/build-profile/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf b/iso/build-profile/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf new file mode 100644 index 0000000..b69850d --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf @@ -0,0 +1,2 @@ +[Journal] +Storage=volatile diff --git a/iso/build-profile/airootfs/etc/systemd/logind.conf.d/do-not-suspend.conf b/iso/build-profile/airootfs/etc/systemd/logind.conf.d/do-not-suspend.conf new file mode 100644 index 0000000..f3ecb39 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/logind.conf.d/do-not-suspend.conf @@ -0,0 +1,4 @@ +[Login] +HandleSuspendKey=ignore +HandleHibernateKey=ignore +HandleLidSwitch=ignore diff --git a/iso/build-profile/airootfs/etc/systemd/network/20-ethernet.network b/iso/build-profile/airootfs/etc/systemd/network/20-ethernet.network new file mode 100644 index 0000000..0d5b7b7 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/network/20-ethernet.network @@ -0,0 +1,22 @@ +[Match] +Type=ether +# Exclude virtual Ethernet interfaces +Kind=!* + +[Link] +RequiredForOnline=routable + +[Network] +DHCP=yes +MulticastDNS=yes + +# systemd-networkd does not set per-interface-type default route metrics +# https://github.com/systemd/systemd/issues/17698 +# Explicitly set route metric, so that Ethernet is preferred over Wi-Fi and Wi-Fi is preferred over mobile broadband. +# Use values from NetworkManager. From nm_device_get_route_metric_default in +# https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/blob/main/src/core/devices/nm-device.c +[DHCPv4] +RouteMetric=100 + +[IPv6AcceptRA] +RouteMetric=100 diff --git a/iso/build-profile/airootfs/etc/systemd/network/20-wlan.network b/iso/build-profile/airootfs/etc/systemd/network/20-wlan.network new file mode 100644 index 0000000..89c0b49 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/network/20-wlan.network @@ -0,0 +1,20 @@ +[Match] +Type=wlan + +[Link] +RequiredForOnline=routable + +[Network] +DHCP=yes +MulticastDNS=yes + +# systemd-networkd does not set per-interface-type default route metrics +# https://github.com/systemd/systemd/issues/17698 +# Explicitly set route metric, so that Ethernet is preferred over Wi-Fi and Wi-Fi is preferred over mobile broadband. +# Use values from NetworkManager. From nm_device_get_route_metric_default in +# https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/blob/main/src/core/devices/nm-device.c +[DHCPv4] +RouteMetric=600 + +[IPv6AcceptRA] +RouteMetric=600 diff --git a/iso/build-profile/airootfs/etc/systemd/network/20-wwan.network b/iso/build-profile/airootfs/etc/systemd/network/20-wwan.network new file mode 100644 index 0000000..befba8d --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/network/20-wwan.network @@ -0,0 +1,19 @@ +[Match] +Type=wwan + +[Link] +RequiredForOnline=routable + +[Network] +DHCP=yes + +# systemd-networkd does not set per-interface-type default route metrics +# https://github.com/systemd/systemd/issues/17698 +# Explicitly set route metric, so that Ethernet is preferred over Wi-Fi and Wi-Fi is preferred over mobile broadband. +# Use values from NetworkManager. From nm_device_get_route_metric_default in +# https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/blob/main/src/core/devices/nm-device.c +[DHCPv4] +RouteMetric=700 + +[IPv6AcceptRA] +RouteMetric=700 diff --git a/iso/build-profile/airootfs/etc/systemd/networkd.conf.d/ipv6-privacy-extensions.conf b/iso/build-profile/airootfs/etc/systemd/networkd.conf.d/ipv6-privacy-extensions.conf new file mode 100644 index 0000000..0e9ceb4 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/networkd.conf.d/ipv6-privacy-extensions.conf @@ -0,0 +1,2 @@ +[Network] +IPv6PrivacyExtensions=yes diff --git a/iso/build-profile/airootfs/etc/systemd/resolved.conf.d/archiso.conf b/iso/build-profile/airootfs/etc/systemd/resolved.conf.d/archiso.conf new file mode 100644 index 0000000..636f3bd --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/resolved.conf.d/archiso.conf @@ -0,0 +1,4 @@ +# Default systemd-resolved configuration for archiso + +[Resolve] +MulticastDNS=yes diff --git a/iso/build-profile/airootfs/etc/systemd/system-generators/systemd-gpt-auto-generator b/iso/build-profile/airootfs/etc/systemd/system-generators/systemd-gpt-auto-generator new file mode 120000 index 0000000..dc1dc0c --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system-generators/systemd-gpt-auto-generator @@ -0,0 +1 @@ +/dev/null \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/choose-mirror.service b/iso/build-profile/airootfs/etc/systemd/system/choose-mirror.service new file mode 100644 index 0000000..b6a3562 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/choose-mirror.service @@ -0,0 +1,10 @@ +[Unit] +Description=Choose mirror from the kernel command line +ConditionKernelCommandLine=mirror + +[Service] +Type=oneshot +ExecStart=/usr/local/bin/choose-mirror + +[Install] +WantedBy=multi-user.target diff --git a/iso/build-profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-config.service b/iso/build-profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-config.service new file mode 120000 index 0000000..ebc50f0 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-config.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/cloud-config.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-final.service b/iso/build-profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-final.service new file mode 120000 index 0000000..80fa3c8 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-final.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/cloud-final.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init-local.service b/iso/build-profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init-local.service new file mode 120000 index 0000000..dd8e9f1 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init-local.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/cloud-init-local.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init-main.service b/iso/build-profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init-main.service new file mode 120000 index 0000000..875ff73 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init-main.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/cloud-init-main.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init-network.service b/iso/build-profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init-network.service new file mode 120000 index 0000000..ae77734 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init-network.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/cloud-init-network.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/dbus-org.freedesktop.ModemManager1.service b/iso/build-profile/airootfs/etc/systemd/system/dbus-org.freedesktop.ModemManager1.service new file mode 120000 index 0000000..dcf7c8e --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/dbus-org.freedesktop.ModemManager1.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/ModemManager.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/dbus-org.freedesktop.network1.service b/iso/build-profile/airootfs/etc/systemd/system/dbus-org.freedesktop.network1.service new file mode 120000 index 0000000..4c158e6 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/dbus-org.freedesktop.network1.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/systemd-networkd.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/dbus-org.freedesktop.resolve1.service b/iso/build-profile/airootfs/etc/systemd/system/dbus-org.freedesktop.resolve1.service new file mode 120000 index 0000000..4f6ae34 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/dbus-org.freedesktop.resolve1.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/systemd-resolved.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/dbus-org.freedesktop.timesync1.service b/iso/build-profile/airootfs/etc/systemd/system/dbus-org.freedesktop.timesync1.service new file mode 120000 index 0000000..cd00411 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/dbus-org.freedesktop.timesync1.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/systemd-timesyncd.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount b/iso/build-profile/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount new file mode 100644 index 0000000..038961e --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount @@ -0,0 +1,8 @@ +[Unit] +Description=Temporary /etc/pacman.d/gnupg directory + +[Mount] +What=tmpfs +Where=/etc/pacman.d/gnupg +Type=tmpfs +Options=mode=0755,noswap diff --git a/iso/build-profile/airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf b/iso/build-profile/airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf new file mode 100644 index 0000000..280039b --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf @@ -0,0 +1,3 @@ +[Service] +ExecStart= +ExecStart=-/usr/bin/agetty --autologin root --noclear %I 38400 linux diff --git a/iso/build-profile/airootfs/etc/systemd/system/livecd-alsa-unmuter.service b/iso/build-profile/airootfs/etc/systemd/system/livecd-alsa-unmuter.service new file mode 100644 index 0000000..03db4b9 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/livecd-alsa-unmuter.service @@ -0,0 +1,13 @@ +[Unit] +Description=Unmute All Sound Card Controls For Use With The Live Arch Environment +# This needs to run after the audio device becomes available. +Wants=systemd-udev-settle.service +After=systemd-udev-settle.service sound.target +ConditionKernelCommandLine=accessibility=on + +[Service] +Type=oneshot +ExecStart=/usr/local/bin/livecd-sound -u + +[Install] +WantedBy=sound.target diff --git a/iso/build-profile/airootfs/etc/systemd/system/livecd-talk.service b/iso/build-profile/airootfs/etc/systemd/system/livecd-talk.service new file mode 100644 index 0000000..b38df22 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/livecd-talk.service @@ -0,0 +1,20 @@ +[Unit] +Description=Screen reader service +After=livecd-alsa-unmuter.service +Before=getty@tty1.service +ConditionKernelCommandLine=accessibility=on + +[Service] +Type=oneshot +TTYPath=/dev/tty13 +ExecStartPre=/usr/bin/chvt 13 +ExecStart=/usr/local/bin/livecd-sound -p +ExecStartPost=/usr/bin/chvt 1 +ExecStartPost=systemctl start espeakup.service +StandardInput=tty +TTYVHangup=yes +TTYVTDisallocate=yes +RemainAfterExit=true + +[Install] +WantedBy=multi-user.target diff --git a/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/ModemManager.service b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/ModemManager.service new file mode 120000 index 0000000..dcf7c8e --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/ModemManager.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/ModemManager.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service new file mode 120000 index 0000000..2d8d256 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service @@ -0,0 +1 @@ +../choose-mirror.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/hv_fcopy_daemon.service b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/hv_fcopy_daemon.service new file mode 120000 index 0000000..20ac7b2 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/hv_fcopy_daemon.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/hv_fcopy_daemon.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/hv_kvp_daemon.service b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/hv_kvp_daemon.service new file mode 120000 index 0000000..a7eac4a --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/hv_kvp_daemon.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/hv_kvp_daemon.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/hv_vss_daemon.service b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/hv_vss_daemon.service new file mode 120000 index 0000000..eae19ef --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/hv_vss_daemon.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/hv_vss_daemon.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/iwd.service b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/iwd.service new file mode 120000 index 0000000..3625abd --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/iwd.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/iwd.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/livecd-talk.service b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/livecd-talk.service new file mode 120000 index 0000000..b917481 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/livecd-talk.service @@ -0,0 +1 @@ +/etc/systemd/system/livecd-talk.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service new file mode 120000 index 0000000..d09eec6 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service @@ -0,0 +1 @@ +../pacman-init.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/sshd.service b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/sshd.service new file mode 120000 index 0000000..d21ebd9 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/sshd.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/sshd.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/systemd-networkd.service b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/systemd-networkd.service new file mode 120000 index 0000000..4c158e6 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/systemd-networkd.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/systemd-networkd.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/systemd-resolved.service b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/systemd-resolved.service new file mode 120000 index 0000000..4f6ae34 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/systemd-resolved.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/systemd-resolved.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/vboxservice.service b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/vboxservice.service new file mode 120000 index 0000000..cb2d560 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/vboxservice.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/vboxservice.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/vmtoolsd.service b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/vmtoolsd.service new file mode 120000 index 0000000..e0a11a7 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/vmtoolsd.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/vmtoolsd.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/vmware-vmblock-fuse.service b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/vmware-vmblock-fuse.service new file mode 120000 index 0000000..173f306 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/multi-user.target.wants/vmware-vmblock-fuse.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/vmware-vmblock-fuse.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/network-online.target.wants/systemd-networkd-wait-online.service b/iso/build-profile/airootfs/etc/systemd/system/network-online.target.wants/systemd-networkd-wait-online.service new file mode 120000 index 0000000..7d6ad92 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/network-online.target.wants/systemd-networkd-wait-online.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/systemd-networkd-wait-online.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/pacman-init.service b/iso/build-profile/airootfs/etc/systemd/system/pacman-init.service new file mode 100644 index 0000000..b824884 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/pacman-init.service @@ -0,0 +1,15 @@ +[Unit] +Description=Initializes Pacman keyring +Requires=etc-pacman.d-gnupg.mount +After=etc-pacman.d-gnupg.mount time-sync.target +BindsTo=etc-pacman.d-gnupg.mount +Before=archlinux-keyring-wkd-sync.service + +[Service] +Type=oneshot +RemainAfterExit=yes +ExecStart=/usr/bin/pacman-key --init +ExecStart=/usr/bin/pacman-key --populate + +[Install] +WantedBy=multi-user.target diff --git a/iso/build-profile/airootfs/etc/systemd/system/sockets.target.wants/pcscd.socket b/iso/build-profile/airootfs/etc/systemd/system/sockets.target.wants/pcscd.socket new file mode 120000 index 0000000..3897c63 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/sockets.target.wants/pcscd.socket @@ -0,0 +1 @@ +/usr/lib/systemd/system/pcscd.socket \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/sockets.target.wants/systemd-networkd.socket b/iso/build-profile/airootfs/etc/systemd/system/sockets.target.wants/systemd-networkd.socket new file mode 120000 index 0000000..51942c8 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/sockets.target.wants/systemd-networkd.socket @@ -0,0 +1 @@ +/usr/lib/systemd/system/systemd-networkd.socket \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/sound.target.wants/livecd-alsa-unmuter.service b/iso/build-profile/airootfs/etc/systemd/system/sound.target.wants/livecd-alsa-unmuter.service new file mode 120000 index 0000000..98c0fc8 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/sound.target.wants/livecd-alsa-unmuter.service @@ -0,0 +1 @@ +../livecd-alsa-unmuter.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/sysinit.target.wants/systemd-time-wait-sync.service b/iso/build-profile/airootfs/etc/systemd/system/sysinit.target.wants/systemd-time-wait-sync.service new file mode 120000 index 0000000..cabf28b --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/sysinit.target.wants/systemd-time-wait-sync.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/systemd-time-wait-sync.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service b/iso/build-profile/airootfs/etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service new file mode 120000 index 0000000..cd00411 --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/systemd-timesyncd.service \ No newline at end of file diff --git a/iso/build-profile/airootfs/etc/systemd/system/systemd-networkd-wait-online.service.d/wait-for-only-one-interface.conf b/iso/build-profile/airootfs/etc/systemd/system/systemd-networkd-wait-online.service.d/wait-for-only-one-interface.conf new file mode 100644 index 0000000..c9f9bce --- /dev/null +++ b/iso/build-profile/airootfs/etc/systemd/system/systemd-networkd-wait-online.service.d/wait-for-only-one-interface.conf @@ -0,0 +1,6 @@ +# Allow systemd-networkd-wait-online to succeed with one interface, otherwise, if multiple network interfaces exist, +# network-online.target gets needlessly delayed. +# See https://wiki.archlinux.org/title/systemd-networkd#systemd-networkd-wait-online +[Service] +ExecStart= +ExecStart=/usr/lib/systemd/systemd-networkd-wait-online --any diff --git a/iso/build-profile/airootfs/root/.automated_script.sh b/iso/build-profile/airootfs/root/.automated_script.sh new file mode 100755 index 0000000..f24d2e2 --- /dev/null +++ b/iso/build-profile/airootfs/root/.automated_script.sh @@ -0,0 +1,43 @@ +#!/usr/bin/env bash + +script_cmdline() { + local param + for param in $(/dev/null 2>&1; then + exec tanin-installer +fi diff --git a/iso/build-profile/airootfs/root/.gnupg/scdaemon.conf b/iso/build-profile/airootfs/root/.gnupg/scdaemon.conf new file mode 100644 index 0000000..e1f3d1f --- /dev/null +++ b/iso/build-profile/airootfs/root/.gnupg/scdaemon.conf @@ -0,0 +1,4 @@ +disable-ccid +disable-pinpad +pcsc-driver /usr/lib/libpcsclite.so +pcsc-shared diff --git a/iso/build-profile/airootfs/root/.zlogin b/iso/build-profile/airootfs/root/.zlogin new file mode 100644 index 0000000..bf6bc8f --- /dev/null +++ b/iso/build-profile/airootfs/root/.zlogin @@ -0,0 +1,6 @@ +# fix for screen readers +if grep -Fqa 'accessibility=' /proc/cmdline &> /dev/null; then + setopt SINGLE_LINE_ZLE +fi + +~/.automated_script.sh diff --git a/iso/build-profile/airootfs/root/customize_airootfs.sh b/iso/build-profile/airootfs/root/customize_airootfs.sh new file mode 100755 index 0000000..0ddc3e5 --- /dev/null +++ b/iso/build-profile/airootfs/root/customize_airootfs.sh @@ -0,0 +1,28 @@ +#!/usr/bin/env bash +# Runs once inside the airootfs chroot during mkarchiso. +set -e -u + +# --- locale --- +sed -i 's/#\(en_US\.UTF-8 UTF-8\)/\1/' /etc/locale.gen +locale-gen + +# --- trust the [tanin] DB-signing key (so Optional TrustAll verifies) --- +pacman-key --init +pacman-key --populate archlinux +pacman-key --add /etc/pacman.d/tanin-repo.gpg +pacman-key --lsign-key 63F0415879323F6BFE0FBFB2B6FDF356206AF4F6 + +# --- services in the LIVE image --- +systemctl enable NetworkManager.service +# Live boots to a console on tty1 that auto-launches the installer (cage + +# calamares) via getty autologin + /root/.bash_profile. No display-manager. +systemctl set-default multi-user.target +# greetd is for the TARGET only (Calamares enables it post-install). +systemctl disable greetd.service 2>/dev/null || true + +# --- plymouth: add the hook so the target initramfs shows the splash --- +# (Calamares regenerates the initramfs on the target; this drop-in is carried +# over by unpackfs. 'quiet splash' goes on the kernel cmdline at install time.) +if ! grep -q plymouth /etc/mkinitcpio.conf 2>/dev/null; then + sed -i 's/^\(HOOKS=.*\)\(udev\)/\1\2 plymouth/' /etc/mkinitcpio.conf 2>/dev/null || true +fi diff --git a/iso/build-profile/airootfs/usr/local/bin/Installation_guide b/iso/build-profile/airootfs/usr/local/bin/Installation_guide new file mode 100755 index 0000000..58b97b0 --- /dev/null +++ b/iso/build-profile/airootfs/usr/local/bin/Installation_guide @@ -0,0 +1,5 @@ +#!/bin/sh +# +# SPDX-License-Identifier: GPL-3.0-or-later + +exec xdg-open 'https://wiki.archlinux.org/title/Installation_guide' diff --git a/iso/build-profile/airootfs/usr/local/bin/choose-mirror b/iso/build-profile/airootfs/usr/local/bin/choose-mirror new file mode 100755 index 0000000..d2349de --- /dev/null +++ b/iso/build-profile/airootfs/usr/local/bin/choose-mirror @@ -0,0 +1,29 @@ +#!/bin/bash +# +# SPDX-License-Identifier: GPL-3.0-or-later + +get_cmdline() { + local param + for param in $(/etc/pacman.d/mirrorlist < +# $2 +# $3 +unmute_and_set_level() { + [[ -n "$3" && -n "$2" && -n "$1" ]] || bugout + systemd-cat -t "livecdsound" printf "Setting: %s on card: %s to %s\n" "$2" "$1" "$3" + systemd-cat -t "livecdsound" amixer -c "$1" set "$2" "$3" unmute + return 0 +} + +# $1 +# $2 +mute_and_zero_level() { + [[ -n "$1" && -n "$2" ]] || bugout + systemd-cat -t "livecdsound" printf "Muting control: %s on card: %s\n" "$2" "$1" + systemd-cat -t "livecdsound" amixer -c "$1" set "$2" "0%" mute + return 0 +} + +# $1 +# $2 +# $3 "on" | "off" +switch_control() { + [[ -n "$3" && -n "$1" ]] || bugout + systemd-cat -t "livecdsound" printf "Switching control: %s on card: %s to %s\n" "$2" "$1" "$3" + systemd-cat -t "livecdsound" amixer -c "$1" set "$2" "$3" + return 0 +} + +# $1 +sanify_levels_on_card() { + unmute_and_set_level "$1" "Front" "80%" + unmute_and_set_level "$1" "Master" "80%" + unmute_and_set_level "$1" "Master Mono" "80%" + unmute_and_set_level "$1" "Master Digital" "80%" # E.g., cs4237B + unmute_and_set_level "$1" "Playback" "80%" + unmute_and_set_level "$1" "Headphone" "100%" + unmute_and_set_level "$1" "PCM" "80%" + unmute_and_set_level "$1" "PCM,1" "80%" # E.g., ess1969 + unmute_and_set_level "$1" "DAC" "80%" # E.g., envy24, cs46xx + unmute_and_set_level "$1" "DAC,0" "80%" # E.g., envy24 + unmute_and_set_level "$1" "DAC,1" "80%" # E.g., envy24 + unmute_and_set_level "$1" "Synth" "80%" + unmute_and_set_level "$1" "CD" "80%" + unmute_and_set_level "$1" "PC Speaker" "100%" + + mute_and_zero_level "$1" "Mic" + mute_and_zero_level "$1" "IEC958" # Ubuntu #19648 + + # Intel P4P800-MX + switch_control "$1" "Master Playback Switch" on + switch_control "$1" "Master Surround" on + + # Trident/YMFPCI/emu10k1: + unmute_and_set_level "$1" "Wave" "80%" + unmute_and_set_level "$1" "Music" "80%" + unmute_and_set_level "$1" "AC97" "80%" + + # DRC: + unmute_and_set_level "$1" "Dynamic Range Compression" "80%" + + # Required for HDA Intel (hda-intel): + unmute_and_set_level "$1" "Front" "80%" + + # Required for SB Live 7.1/24-bit (ca0106): + unmute_and_set_level "$1" "Analog Front" "80%" + + # Required at least for Via 823x hardware on DFI K8M800-MLVF Motherboard + switch_control "$1" "IEC958 Capture Monitor" off + + # Required for hardware allowing toggles for AC97 through IEC958, + # valid values are 0, 1, 2, 3. Needs to be set to 0 for PCM1. + unmute_and_set_level "$1" "IEC958 Playback AC97-SPSA" "0" + + # Required for newer Via hardware + unmute_and_set_level "$1" "VIA DXS,0" "80%" + unmute_and_set_level "$1" "VIA DXS,1" "80%" + unmute_and_set_level "$1" "VIA DXS,2" "80%" + unmute_and_set_level "$1" "VIA DXS,3" "80%" + + # Required on some notebooks with ICH4: + switch_control "$1" "Headphone Jack Sense" off + switch_control "$1" "Line Jack Sense" off + + # Some machines need one or more of these to be on; + # others need one or more of these to be off: + + switch_control "$1" "Audigy Analog/Digital Output Jack" on + switch_control "$1" "SB Live Analog/Digital Output Jack" on + + # D1984 -- Thinkpad T61/X61 + switch_control "$1" "Speaker" on + switch_control "$1" "Headphone" on + + # HDA-Intel w/ "Digital" capture mixer (See Ubuntu #193823) + unmute_and_set_level "$1" "Digital" "80%" + + return 0 +} + +# $1 | "all" +sanify_levels() { + local ttsdml_returnstatus=0 + local card + case "$1" in + all) + for card in $(echo_card_indices); do + sanify_levels_on_card "$card" || ttsdml_returnstatus=1 + done + ;; + *) + sanify_levels_on_card "$1" || ttsdml_returnstatus=1 + ;; + esac + return "$ttsdml_returnstatus" +} + +# List all cards that *should* be usable for PCM audio. In my experience, +# the console speaker (handled by the pcsp driver) isn't a suitable playback +# device, so we'll exclude it. +list_non_pcsp_cards() { + for card in $(echo_card_indices); do + local cardfile="/proc/asound/card${card}/id" + if [[ -r "$cardfile" && -f "$cardfile" && "$(cat "$cardfile")" != pcsp ]]; then + echo "$card" + fi + done +} + +# Properly initialize the sound card so that we have audio at boot. +unmute_all_cards() { + sanify_levels all +} + +is_numeric() { + local str="$1" + [[ "$str" =~ ^[0-9]+$ ]] +} + +set_default_card() { + local card="$1" + sed -e "s/%card%/$card/g" /etc/asound.conf +} + +play_on_card() { + local card="$1" file="$2" + aplay -q "-Dplughw:$card,0" "$file" +} + +# If there are multiple usable sound cards, prompt the user to choose one, +# using auditory feedback. +pick_a_card() { + set -f + mapfile -t usable_cards < <(list_non_pcsp_cards) + num_usable_cards="${#usable_cards[@]}" + + if (( num_usable_cards == 1 )); then + systemd-cat -t "livecdsound" printf "Only one sound card is detected\n" + exit 0 + fi + systemd-cat -t "livecdsound" printf "multiple sound cards detected\n" + for card in "${usable_cards[@]}"; do + if ! is_numeric "$card"; then + continue + fi + play_on_card "$card" /usr/share/livecd-sounds/pick-a-card.wav & + done + wait + sleep 1 + for card in "${usable_cards[@]}"; do + if ! is_numeric "$card"; then + continue + fi + play_on_card "$card" /usr/share/livecd-sounds/beep.wav + if read -r -t 10; then + systemd-cat -t "livecdsound" printf "Selecting %s sound card as default\n" "$card" + set_default_card "$card" + break + fi + done +} + +if (( $# == 0 )); then + echo "error: No argument passed." + exit 1 +fi +while [[ "${1}" != "" ]]; do + case ${1} in + -h|--help) + usage + exit + ;; + -u|--unmute) + systemd-cat -t "livecdsound" printf "Unmuting all cards" + unmute_all_cards + ;; + -p|--pick) + pick_a_card + ;; + *) + echo "error: Unsupported argument" + usage + exit 1 + ;; + esac + shift +done diff --git a/iso/build-profile/airootfs/usr/local/bin/tanin-installer b/iso/build-profile/airootfs/usr/local/bin/tanin-installer new file mode 100755 index 0000000..53d29df --- /dev/null +++ b/iso/build-profile/airootfs/usr/local/bin/tanin-installer @@ -0,0 +1,4 @@ +#!/usr/bin/env bash +# Launch the Calamares installer fullscreen in a cage kiosk compositor (Wayland, +# straight on DRM — no display-manager needed in the live session). +exec cage -s -- calamares diff --git a/iso/build-profile/airootfs/usr/local/share/livecd-sound/asound.conf.in b/iso/build-profile/airootfs/usr/local/share/livecd-sound/asound.conf.in new file mode 100644 index 0000000..3f9c7aa --- /dev/null +++ b/iso/build-profile/airootfs/usr/local/share/livecd-sound/asound.conf.in @@ -0,0 +1,3 @@ +Defaults node +defaults.ctl.card %card%; +defaults.pcm.card %card%; diff --git a/iso/build-profile/bootstrap_packages b/iso/build-profile/bootstrap_packages new file mode 100644 index 0000000..64966d0 --- /dev/null +++ b/iso/build-profile/bootstrap_packages @@ -0,0 +1,2 @@ +arch-install-scripts +base diff --git a/iso/build-profile/efiboot/loader/entries/01-archiso-linux.conf b/iso/build-profile/efiboot/loader/entries/01-archiso-linux.conf new file mode 100644 index 0000000..329fca5 --- /dev/null +++ b/iso/build-profile/efiboot/loader/entries/01-archiso-linux.conf @@ -0,0 +1,5 @@ +title Arch Linux install medium (%ARCH%, UEFI) +sort-key 01 +linux /%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux-zen +initrd /%INSTALL_DIR%/boot/%ARCH%/initramfs-linux-zen.img +options archisobasedir=%INSTALL_DIR% archisosearchuuid=%ARCHISO_UUID% diff --git a/iso/build-profile/efiboot/loader/entries/02-archiso-speech-linux.conf b/iso/build-profile/efiboot/loader/entries/02-archiso-speech-linux.conf new file mode 100644 index 0000000..313a1cd --- /dev/null +++ b/iso/build-profile/efiboot/loader/entries/02-archiso-speech-linux.conf @@ -0,0 +1,5 @@ +title Arch Linux install medium (%ARCH%, UEFI) with speech +sort-key 02 +linux /%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux-zen +initrd /%INSTALL_DIR%/boot/%ARCH%/initramfs-linux-zen.img +options archisobasedir=%INSTALL_DIR% archisosearchuuid=%ARCHISO_UUID% accessibility=on diff --git a/iso/build-profile/efiboot/loader/entries/03-archiso-memtest86+x64.conf b/iso/build-profile/efiboot/loader/entries/03-archiso-memtest86+x64.conf new file mode 100644 index 0000000..7a0ef5e --- /dev/null +++ b/iso/build-profile/efiboot/loader/entries/03-archiso-memtest86+x64.conf @@ -0,0 +1,4 @@ +title Memtest86+ +sort-key 03 +efi /boot/memtest86+/memtest.efi +architecture x64 diff --git a/iso/build-profile/efiboot/loader/loader.conf b/iso/build-profile/efiboot/loader/loader.conf new file mode 100644 index 0000000..06d4ac4 --- /dev/null +++ b/iso/build-profile/efiboot/loader/loader.conf @@ -0,0 +1,3 @@ +timeout 15 +default 01-archiso-linux.conf +beep on diff --git a/iso/build-profile/grub/grub.cfg b/iso/build-profile/grub/grub.cfg new file mode 100644 index 0000000..bcbd020 --- /dev/null +++ b/iso/build-profile/grub/grub.cfg @@ -0,0 +1,112 @@ +# Load partition table and file system modules +insmod part_gpt +insmod part_msdos +insmod fat +insmod iso9660 +insmod ntfs +insmod ntfscomp +insmod exfat +insmod udf + +# Use graphics-mode output +if loadfont "${prefix}/fonts/unicode.pf2" ; then + insmod all_video + set gfxmode="auto" + terminal_input console + terminal_output console +fi + +# Enable serial console +insmod serial +insmod usbserial_common +insmod usbserial_ftdi +insmod usbserial_pl2303 +insmod usbserial_usbdebug +if serial --unit=0 --speed=115200; then + terminal_input --append serial + terminal_output --append serial +fi + +# Get a human readable platform identifier +if [ "${grub_platform}" == 'efi' ]; then + archiso_platform='UEFI' +elif [ "${grub_platform}" == 'pc' ]; then + archiso_platform='BIOS' +else + archiso_platform="${grub_cpu}-${grub_platform}" +fi + +# Set default menu entry +default=archlinux +timeout=15 +timeout_style=menu + + +# Menu entries + +menuentry "Arch Linux install medium (%ARCH%, ${archiso_platform})" --class arch --class gnu-linux --class gnu --class os --id 'archlinux' { + set gfxpayload=keep + linux /%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux-zen archisobasedir=%INSTALL_DIR% archisosearchuuid=%ARCHISO_UUID% + initrd /%INSTALL_DIR%/boot/%ARCH%/initramfs-linux-zen.img +} + +menuentry "Arch Linux install medium with speakup screen reader (%ARCH%, ${archiso_platform})" --hotkey s --class arch --class gnu-linux --class gnu --class os --id 'archlinux-accessibility' { + set gfxpayload=keep + linux /%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux-zen archisobasedir=%INSTALL_DIR% archisosearchuuid=%ARCHISO_UUID% accessibility=on + initrd /%INSTALL_DIR%/boot/%ARCH%/initramfs-linux-zen.img +} + + +if [ "${grub_platform}" == 'efi' -a "${grub_cpu}" == 'x86_64' -a -f '/boot/memtest86+/memtest.efi' ]; then + menuentry 'Run Memtest86+ (RAM test)' --class memtest86 --class memtest --class gnu --class tool { + set gfxpayload=800x600,1024x768 + linux /boot/memtest86+/memtest.efi + } +fi +if [ "${grub_platform}" == 'pc' -a -f '/boot/memtest86+/memtest' ]; then + menuentry 'Run Memtest86+ (RAM test)' --class memtest86 --class memtest --class gnu --class tool { + set gfxpayload=800x600,1024x768 + linux /boot/memtest86+/memtest + } +fi +if [ "${grub_platform}" == 'efi' ]; then + if [ "${grub_cpu}" == 'x86_64' -a -f '/shellx64.efi' ]; then + menuentry 'UEFI Shell' --class efi { + chainloader /shellx64.efi + } + elif [ "${grub_cpu}" == 'i386' -a -f '/shellia32.efi' ]; then + menuentry 'UEFI Shell' --class efi { + chainloader /shellia32.efi + } + elif [ "${grub_cpu}" == 'arm64' -a -f '/shellaa64.efi' ]; then + menuentry 'UEFI Shell' --class efi { + chainloader /shellaa64.efi + } + elif [ "${grub_cpu}" == 'riscv64' -a -f '/shellriscv64.efi' ]; then + menuentry 'UEFI Shell' --class efi { + chainloader /shellriscv64.efi + } + elif [ "${grub_cpu}" == 'loongarch64' -a -f '/shellloongarch64.efi' ]; then + menuentry 'UEFI Shell' --class efi { + chainloader /shellloongarch64.efi + } + fi + + menuentry 'UEFI Firmware Settings' --id 'uefi-firmware' { + fwsetup + } +fi + +menuentry 'System shutdown' --class shutdown --class poweroff { + echo 'System shutting down...' + halt +} + +menuentry 'System restart' --class reboot --class restart { + echo 'System rebooting...' + reboot +} + + +# GRUB init tune for accessibility +play 600 988 1 1319 4 diff --git a/iso/build-profile/grub/loopback.cfg b/iso/build-profile/grub/loopback.cfg new file mode 100644 index 0000000..0c299dc --- /dev/null +++ b/iso/build-profile/grub/loopback.cfg @@ -0,0 +1,85 @@ +# https://www.supergrubdisk.org/wiki/Loopback.cfg + +# Search for the ISO volume +search --no-floppy --set=archiso_img_dev --file "${iso_path}" +probe --set archiso_img_dev_uuid --fs-uuid "${archiso_img_dev}" + +# Get a human readable platform identifier +if [ "${grub_platform}" == 'efi' ]; then + archiso_platform='UEFI' +elif [ "${grub_platform}" == 'pc' ]; then + archiso_platform='BIOS' +else + archiso_platform="${grub_cpu}-${grub_platform}" +fi + +# Set default menu entry +default=archlinux +timeout=15 +timeout_style=menu + + +# Menu entries + +menuentry "Arch Linux install medium (%ARCH%, ${archiso_platform})" --class arch --class gnu-linux --class gnu --class os --id 'archlinux' { + set gfxpayload=keep + linux /%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux-zen archisobasedir=%INSTALL_DIR% img_dev=UUID=${archiso_img_dev_uuid} img_loop="${iso_path}" + initrd /%INSTALL_DIR%/boot/%ARCH%/initramfs-linux-zen.img +} + +menuentry "Arch Linux install medium with speakup screen reader (%ARCH%, ${archiso_platform})" --hotkey s --class arch --class gnu-linux --class gnu --class os --id 'archlinux-accessibility' { + set gfxpayload=keep + linux /%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux-zen archisobasedir=%INSTALL_DIR% img_dev=UUID=${archiso_img_dev_uuid} img_loop="${iso_path}" accessibility=on + initrd /%INSTALL_DIR%/boot/%ARCH%/initramfs-linux-zen.img +} + + +if [ "${grub_platform}" == 'efi' -a "${grub_cpu}" == 'x86_64' -a -f '/boot/memtest86+/memtest.efi' ]; then + menuentry 'Run Memtest86+ (RAM test)' --class memtest86 --class memtest --class gnu --class tool { + set gfxpayload=800x600,1024x768 + linux /boot/memtest86+/memtest.efi + } +fi +if [ "${grub_platform}" == 'pc' -a -f '/boot/memtest86+/memtest' ]; then + menuentry 'Run Memtest86+ (RAM test)' --class memtest86 --class memtest --class gnu --class tool { + set gfxpayload=800x600,1024x768 + linux /boot/memtest86+/memtest + } +fi +if [ "${grub_platform}" == 'efi' ]; then + if [ "${grub_cpu}" == 'x86_64' -a -f '/shellx64.efi' ]; then + menuentry 'UEFI Shell' --class efi { + chainloader /shellx64.efi + } + elif [ "${grub_cpu}" == 'i386' -a -f '/shellia32.efi' ]; then + menuentry 'UEFI Shell' --class efi { + chainloader /shellia32.efi + } + elif [ "${grub_cpu}" == 'arm64' -a -f '/shellaa64.efi' ]; then + menuentry 'UEFI Shell' --class efi { + chainloader /shellaa64.efi + } + elif [ "${grub_cpu}" == 'riscv64' -a -f '/shellriscv64.efi' ]; then + menuentry 'UEFI Shell' --class efi { + chainloader /shellriscv64.efi + } + elif [ "${grub_cpu}" == 'loongarch64' -a -f '/shellloongarch64.efi' ]; then + menuentry 'UEFI Shell' --class efi { + chainloader /shellloongarch64.efi + } + fi + + menuentry 'UEFI Firmware Settings' --id 'uefi-firmware' { + fwsetup + } +fi + +menuentry 'System shutdown' --class shutdown --class poweroff { + echo 'System shutting down...' + halt +} + +menuentry 'System restart' --class reboot --class restart { + echo 'System rebooting...' + reboot +} diff --git a/iso/build-profile/packages.x86_64 b/iso/build-profile/packages.x86_64 new file mode 100644 index 0000000..6616b34 --- /dev/null +++ b/iso/build-profile/packages.x86_64 @@ -0,0 +1,183 @@ +alsa-utils +amd-ucode +arch-install-scripts +archinstall +b43-fwcutter +base +bcachefs-tools +bind +bolt +brltty +broadcom-wl +btrfs-progs +clonezilla +cloud-init +cryptsetup +darkhttpd +ddrescue +dhcpcd +diffutils +dmidecode +dmraid +dnsmasq +dosfstools +e2fsprogs +edk2-shell +efibootmgr +espeakup +ethtool +exfatprogs +f2fs-tools +fatresize +foot-terminfo +fsarchiver +gpart +gpm +gptfdisk +grml-zsh-config +grub +hdparm +hyperv +intel-ucode +irssi +iw +iwd +jfsutils +kitty-terminfo +ldns +less +lftp +libfido2 +libusb-compat +linux-zen +linux-atm +linux-firmware +linux-firmware-marvell +livecd-sounds +lsscsi +lvm2 +lynx +man-db +man-pages +mc +mdadm +memtest86+ +memtest86+-efi +mkinitcpio +mkinitcpio-archiso +mkinitcpio-nfs-utils +mmc-utils +modemmanager +mtools +nano +nbd +ndisc6 +nfs-utils +nilfs-utils +nmap +ntfs-3g +nvme-cli +open-iscsi +open-vm-tools +openconnect +openpgp-card-tools +openssh +openvpn +partclone +parted +partimage +pcsclite +ppp +pptpclient +pv +qemu-guest-agent +refind +reflector +rsync +rxvt-unicode-terminfo +screen +sdparm +sequoia-sq +sg3_utils +smartmontools +sof-firmware +squashfs-tools +sudo +syslinux +systemd-resolvconf +tcpdump +terminus-font +testdisk +tmux +tpm2-tools +tpm2-tss +udftools +usb_modeswitch +usbmuxd +usbutils +vim +virtualbox-guest-utils-nox +vpnc +wireless-regdb +wireless_tools +wpa_supplicant +wvdial +xdg-utils +xfsprogs +xl2tpd +zsh +# TANINUX additions — appended to releng's packages.x86_64 by bootstrap-profile.sh. +# (bootstrap also swaps the live kernel linux -> linux-zen.) +# The live ISO IS the installable system (Calamares clones it via unpackfs). + +# --- the whole TANINUX desktop (niri/eww/greeter/theme/apps from [tanin]) --- +tanin-desktop + +# --- kernel (zen) --- +linux-zen +linux-zen-headers + +# --- Btrfs + automatic snapshots (pre-update rollback via snapper) --- +btrfs-progs +snapper +snap-pac + +# --- boot splash --- +plymouth + +# --- live installer (removed from target by Calamares' packages module) --- +calamares +cage + +# --- target bootloader = systemd-boot (part of systemd) + UEFI var tool --- +efibootmgr + +# --- partitioning / filesystems --- +gptfdisk +dosfstools +e2fsprogs + +# --- preinstalled apps (decided) --- +firefox +thunderbird +kitty # extra terminal (foot stays the niri/eww default) +nautilus +flatpak # Flathub remote configured post-install +# paru # AUR helper — MUST be rebuilt into [tanin] first (else build fails) + +# --- media bundle --- +mpv +loupe +gst-plugins-good +gst-plugins-bad +gst-plugins-ugly +gst-libav +gstreamer-vaapi + +# --- fonts & emoji --- +noto-fonts +noto-fonts-emoji +noto-fonts-cjk + +# --- utilities --- +file-roller diff --git a/iso/build-profile/pacman.conf b/iso/build-profile/pacman.conf new file mode 100644 index 0000000..a608a54 --- /dev/null +++ b/iso/build-profile/pacman.conf @@ -0,0 +1,25 @@ +# Build-time pacman.conf for mkarchiso (pulls live packages incl. tanin-desktop). +# Replaces releng's pacman.conf. [tanin] is added so the airootfs can include +# our packages. SigLevel=Never on [tanin] keeps the BUILD simple (no keyring +# bootstrap during mkarchiso); the LIVE/target keyring trusts the key properly +# (see airootfs/etc/pacman.conf + customize_airootfs.sh). +[options] +HoldPkg = pacman glibc +Architecture = auto +CheckSpace +SigLevel = Required DatabaseOptional +LocalFileSigLevel = Optional +ParallelDownloads = 5 + +[core] +Include = /etc/pacman.d/mirrorlist + +[extra] +Include = /etc/pacman.d/mirrorlist + +[multilib] +Include = /etc/pacman.d/mirrorlist + +[tanin] +SigLevel = Never +Server = https://git.openbureau.ch/api/packages/karim/arch/tanin/$arch diff --git a/iso/build-profile/profiledef.sh b/iso/build-profile/profiledef.sh new file mode 100644 index 0000000..cf0022e --- /dev/null +++ b/iso/build-profile/profiledef.sh @@ -0,0 +1,24 @@ +#!/usr/bin/env bash +# TANINUX (camel) archiso profile — overrides releng's profiledef.sh. +# shellcheck disable=SC2034 +iso_name="taninux" +iso_label="TANINUX_$(date +%Y%m)" +iso_publisher="TANINUX " +iso_application="TANINUX (camel) — niri/eww desktop · live + Calamares installer" +iso_version="$(date +%Y.%m.%d)" +install_dir="tanin" +buildmodes=('iso') +bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito' + 'uefi-x64.systemd-boot.esp' 'uefi-x64.systemd-boot.eltorito') +arch="x86_64" +pacman_conf="pacman.conf" +airootfs_image_type="squashfs" +airootfs_image_tool_options=('-comp' 'zstd' '-Xcompression-level' '19' '-b' '1M') +bootstrap_tarball_compression=('zstd' '-c' '-T0' '--auto-threads=logical' '--long' '-19') +file_permissions=( + ["/etc/shadow"]="0:0:400" + ["/etc/gshadow"]="0:0:400" + ["/root"]="0:0:750" + ["/root/customize_airootfs.sh"]="0:0:755" + ["/usr/local/bin/tanin-installer"]="0:0:755" +) diff --git a/iso/build-profile/syslinux/archiso_head.cfg b/iso/build-profile/syslinux/archiso_head.cfg new file mode 100644 index 0000000..671ab4e --- /dev/null +++ b/iso/build-profile/syslinux/archiso_head.cfg @@ -0,0 +1,28 @@ +SERIAL 0 115200 +UI vesamenu.c32 +MENU TITLE Arch Linux +MENU BACKGROUND splash.png + +MENU WIDTH 78 +MENU MARGIN 4 +MENU ROWS 7 +MENU VSHIFT 10 +MENU TABMSGROW 14 +MENU CMDLINEROW 14 +MENU HELPMSGROW 16 +MENU HELPMSGENDROW 29 + +# Refer to https://wiki.syslinux.org/wiki/index.php/Comboot/menu.c32 + +MENU COLOR border 30;44 #40ffffff #a0000000 std +MENU COLOR title 1;36;44 #9033ccff #a0000000 std +MENU COLOR sel 7;37;40 #e0ffffff #20ffffff all +MENU COLOR unsel 37;44 #50ffffff #a0000000 std +MENU COLOR help 37;40 #c0ffffff #a0000000 std +MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std +MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std +MENU COLOR msg07 37;40 #90ffffff #a0000000 std +MENU COLOR tabmsg 31;40 #30ffffff #00000000 std + +MENU CLEAR +MENU IMMEDIATE diff --git a/iso/build-profile/syslinux/archiso_pxe-linux.cfg b/iso/build-profile/syslinux/archiso_pxe-linux.cfg new file mode 100644 index 0000000..6cd9fca --- /dev/null +++ b/iso/build-profile/syslinux/archiso_pxe-linux.cfg @@ -0,0 +1,32 @@ +LABEL arch_nbd +TEXT HELP +Boot the Arch Linux install medium using NBD. +It allows you to install Arch Linux or perform system maintenance. +ENDTEXT +MENU LABEL Arch Linux install medium (%ARCH%, NBD) +LINUX ::/%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux-zen +INITRD ::/%INSTALL_DIR%/boot/%ARCH%/initramfs-linux-zen.img +APPEND archisobasedir=%INSTALL_DIR% archisosearchuuid=%ARCHISO_UUID% archiso_nbd_srv=${pxeserver} cms_verify=y +SYSAPPEND 3 + +LABEL arch_nfs +TEXT HELP +Boot the Arch Linux live medium using NFS. +It allows you to install Arch Linux or perform system maintenance. +ENDTEXT +MENU LABEL Arch Linux install medium (%ARCH%, NFS) +LINUX ::/%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux-zen +INITRD ::/%INSTALL_DIR%/boot/%ARCH%/initramfs-linux-zen.img +APPEND archisobasedir=%INSTALL_DIR% archiso_nfs_srv=${pxeserver}:/run/archiso/bootmnt cms_verify=y +SYSAPPEND 3 + +LABEL arch_http +TEXT HELP +Boot the Arch Linux live medium using HTTP. +It allows you to install Arch Linux or perform system maintenance. +ENDTEXT +MENU LABEL Arch Linux install medium (%ARCH%, HTTP) +LINUX ::/%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux-zen +INITRD ::/%INSTALL_DIR%/boot/%ARCH%/initramfs-linux-zen.img +APPEND archisobasedir=%INSTALL_DIR% archiso_http_srv=http://${pxeserver}/ cms_verify=y +SYSAPPEND 3 diff --git a/iso/build-profile/syslinux/archiso_pxe.cfg b/iso/build-profile/syslinux/archiso_pxe.cfg new file mode 100644 index 0000000..b4c9a80 --- /dev/null +++ b/iso/build-profile/syslinux/archiso_pxe.cfg @@ -0,0 +1,5 @@ +INCLUDE archiso_head.cfg + +INCLUDE archiso_pxe-linux.cfg + +INCLUDE archiso_tail.cfg diff --git a/iso/build-profile/syslinux/archiso_sys-linux.cfg b/iso/build-profile/syslinux/archiso_sys-linux.cfg new file mode 100644 index 0000000..7544b01 --- /dev/null +++ b/iso/build-profile/syslinux/archiso_sys-linux.cfg @@ -0,0 +1,20 @@ +LABEL arch +TEXT HELP +Boot the Arch Linux install medium on BIOS. +It allows you to install Arch Linux or perform system maintenance. +ENDTEXT +MENU LABEL Arch Linux install medium (%ARCH%, BIOS) +LINUX /%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux-zen +INITRD /%INSTALL_DIR%/boot/%ARCH%/initramfs-linux-zen.img +APPEND archisobasedir=%INSTALL_DIR% archisosearchuuid=%ARCHISO_UUID% + +# Accessibility boot option +LABEL archspeech +TEXT HELP +Boot the Arch Linux install medium on BIOS with speakup screen reader. +It allows you to install Arch Linux or perform system maintenance with speech feedback. +ENDTEXT +MENU LABEL Arch Linux install medium (%ARCH%, BIOS) with ^speech +LINUX /%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux-zen +INITRD /%INSTALL_DIR%/boot/%ARCH%/initramfs-linux-zen.img +APPEND archisobasedir=%INSTALL_DIR% archisosearchuuid=%ARCHISO_UUID% accessibility=on diff --git a/iso/build-profile/syslinux/archiso_sys.cfg b/iso/build-profile/syslinux/archiso_sys.cfg new file mode 100644 index 0000000..662482c --- /dev/null +++ b/iso/build-profile/syslinux/archiso_sys.cfg @@ -0,0 +1,8 @@ +INCLUDE archiso_head.cfg + +DEFAULT arch +TIMEOUT 150 + +INCLUDE archiso_sys-linux.cfg + +INCLUDE archiso_tail.cfg diff --git a/iso/build-profile/syslinux/archiso_tail.cfg b/iso/build-profile/syslinux/archiso_tail.cfg new file mode 100644 index 0000000..e84897c --- /dev/null +++ b/iso/build-profile/syslinux/archiso_tail.cfg @@ -0,0 +1,35 @@ +LABEL existing +TEXT HELP +Boot an existing operating system. +Press TAB to edit the disk and partition number to boot. +ENDTEXT +MENU LABEL Boot existing OS +COM32 chain.c32 +APPEND hd0 0 + +# https://www.memtest.org/ +LABEL memtest +MENU LABEL Run Memtest86+ (RAM test) +LINUX /boot/memtest86+/memtest + +# https://wiki.syslinux.org/wiki/index.php/Hdt_(Hardware_Detection_Tool) +LABEL hdt +MENU LABEL Hardware Information (HDT) +COM32 hdt.c32 +APPEND modules_alias=hdt/modalias.gz pciids=hdt/pciids.gz + +LABEL reboot +TEXT HELP +Reboot computer. +The computer's firmware must support APM. +ENDTEXT +MENU LABEL Reboot +COM32 reboot.c32 + +LABEL poweroff +TEXT HELP +Power off computer. +The computer's firmware must support APM. +ENDTEXT +MENU LABEL Power Off +COM32 poweroff.c32 diff --git a/iso/build-profile/syslinux/splash.png b/iso/build-profile/syslinux/splash.png new file mode 100644 index 0000000..64b959a Binary files /dev/null and b/iso/build-profile/syslinux/splash.png differ diff --git a/iso/build-profile/syslinux/syslinux.cfg b/iso/build-profile/syslinux/syslinux.cfg new file mode 100644 index 0000000..cbda72f --- /dev/null +++ b/iso/build-profile/syslinux/syslinux.cfg @@ -0,0 +1,11 @@ +DEFAULT select + +LABEL select +COM32 whichsys.c32 +APPEND -pxe- pxe -sys- sys -iso- sys + +LABEL pxe +CONFIG archiso_pxe.cfg + +LABEL sys +CONFIG archiso_sys.cfg diff --git a/iso/overrides/packages.x86_64 b/iso/overrides/packages.x86_64 index 2936ec6..7e59427 100644 --- a/iso/overrides/packages.x86_64 +++ b/iso/overrides/packages.x86_64 @@ -1,55 +1,58 @@ # TANINUX additions — appended to releng's packages.x86_64 by bootstrap-profile.sh. +# IMPORTANT: pacman package lists do NOT allow inline comments. Keep every +# comment on its own line — a stray "# ..." after a package name turns the whole +# line into an invalid package (that was the kitty/flatpak "target not found"). # (bootstrap also swaps the live kernel linux -> linux-zen.) -# The live ISO IS the installable system (Calamares clones it via unpackfs). -# --- the whole TANINUX desktop (niri/eww/greeter/theme/apps from [tanin]) --- +# the whole TANINUX desktop (niri/eww/greeter/theme/apps from [tanin]) tanin-desktop -# --- kernel (zen) --- +# kernel (zen) linux-zen linux-zen-headers -# --- Btrfs + automatic snapshots (pre-update rollback via snapper) --- +# Btrfs + automatic snapshots btrfs-progs snapper snap-pac -# --- boot splash --- +# boot splash plymouth -# --- live installer (removed from target by Calamares' packages module) --- -calamares +# live installer host (cage). calamares is AUR -> rebuild into [tanin] first, +# then uncomment (see BUILD.md). archinstall (TUI) is already in the releng base. cage +#calamares -# --- target bootloader = systemd-boot (part of systemd) + UEFI var tool --- +# target bootloader efibootmgr -# --- partitioning / filesystems --- +# partitioning / filesystems gptfdisk dosfstools e2fsprogs -# --- preinstalled apps (decided) --- +# preinstalled apps firefox thunderbird -kitty # extra terminal (foot stays the niri/eww default) +kitty nautilus -flatpak # Flathub remote configured post-install -# paru # AUR helper — MUST be rebuilt into [tanin] first (else build fails) +flatpak +#paru -# --- media bundle --- +# media (gstreamer-vaapi was removed from Arch -> gst-plugin-va is the successor) mpv loupe gst-plugins-good gst-plugins-bad gst-plugins-ugly gst-libav -gstreamer-vaapi +gst-plugin-va -# --- fonts & emoji --- +# fonts & emoji noto-fonts noto-fonts-emoji noto-fonts-cjk -# --- utilities --- +# utilities file-roller