diff options
author | Zach van Rijn <me@zv.io> | 2023-08-28 23:12:55 +0000 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2023-08-28 23:12:55 +0000 |
commit | 16fe52e6139c6ab97ecf6ca19f4b3b5dcf72f1f5 (patch) | |
tree | 6bef9cd064e8f64eafa4735f094db98b00424364 | |
parent | 95c0861afbd16e1d228724ef64424da775ffac8a (diff) | |
download | image-16fe52e6139c6ab97ecf6ca19f4b3b5dcf72f1f5.tar.gz image-16fe52e6139c6ab97ecf6ca19f4b3b5dcf72f1f5.tar.bz2 image-16fe52e6139c6ab97ecf6ca19f4b3b5dcf72f1f5.tar.xz image-16fe52e6139c6ab97ecf6ca19f4b3b5dcf72f1f5.zip |
configs/live: add { aarch64, armv7 } support. fixes #395, #396.
-rw-r--r-- | configs/live/aarch64-kde.installfile | 11 | ||||
-rw-r--r-- | configs/live/aarch64-lxqt.installfile | 11 | ||||
-rw-r--r-- | configs/live/aarch64-mate.installfile | 11 | ||||
-rw-r--r-- | configs/live/armv7-kde.installfile | 11 | ||||
-rw-r--r-- | configs/live/armv7-lxqt.installfile | 11 | ||||
-rw-r--r-- | configs/live/armv7-mate.installfile | 11 |
6 files changed, 66 insertions, 0 deletions
diff --git a/configs/live/aarch64-kde.installfile b/configs/live/aarch64-kde.installfile new file mode 100644 index 0000000..d2a31c7 --- /dev/null +++ b/configs/live/aarch64-kde.installfile @@ -0,0 +1,11 @@ +# Install KDE and SDDM auto-login for it. +pkginstall livecd-support-horizon livecd-support-kde + +# Start X on boot, if possible. +svcenable udev boot +svcenable udev-trigger boot +svcenable elogind +svcenable sddm +svcenable wpa_supplicant + +inherit ../arch/aarch64.installfile diff --git a/configs/live/aarch64-lxqt.installfile b/configs/live/aarch64-lxqt.installfile new file mode 100644 index 0000000..c3ea818 --- /dev/null +++ b/configs/live/aarch64-lxqt.installfile @@ -0,0 +1,11 @@ +# Install LXQt and SDDM auto-login for it. +pkginstall livecd-support-horizon livecd-support-lxqt + +# Start X on boot, if possible. +svcenable udev boot +svcenable udev-trigger boot +svcenable elogind +svcenable sddm +svcenable wpa_supplicant + +inherit ../arch/aarch64.installfile diff --git a/configs/live/aarch64-mate.installfile b/configs/live/aarch64-mate.installfile new file mode 100644 index 0000000..8d36f8e --- /dev/null +++ b/configs/live/aarch64-mate.installfile @@ -0,0 +1,11 @@ +# Install MATE and SDDM auto-login for it. +pkginstall livecd-support-horizon livecd-support-mate + +# Start X on boot, if possible. +svcenable udev boot +svcenable udev-trigger boot +svcenable elogind +svcenable sddm +svcenable wpa_supplicant + +inherit ../arch/aarch64.installfile diff --git a/configs/live/armv7-kde.installfile b/configs/live/armv7-kde.installfile new file mode 100644 index 0000000..5142ee1 --- /dev/null +++ b/configs/live/armv7-kde.installfile @@ -0,0 +1,11 @@ +# Install KDE and SDDM auto-login for it. +pkginstall livecd-support-horizon livecd-support-kde + +# Start X on boot, if possible. +svcenable udev boot +svcenable udev-trigger boot +svcenable elogind +svcenable sddm +svcenable wpa_supplicant + +inherit ../arch/armv7.installfile diff --git a/configs/live/armv7-lxqt.installfile b/configs/live/armv7-lxqt.installfile new file mode 100644 index 0000000..3c5f9e4 --- /dev/null +++ b/configs/live/armv7-lxqt.installfile @@ -0,0 +1,11 @@ +# Install LXQt and SDDM auto-login for it. +pkginstall livecd-support-horizon livecd-support-lxqt + +# Start X on boot, if possible. +svcenable udev boot +svcenable udev-trigger boot +svcenable elogind +svcenable sddm +svcenable wpa_supplicant + +inherit ../arch/armv7.installfile diff --git a/configs/live/armv7-mate.installfile b/configs/live/armv7-mate.installfile new file mode 100644 index 0000000..ece4aad --- /dev/null +++ b/configs/live/armv7-mate.installfile @@ -0,0 +1,11 @@ +# Install MATE and SDDM auto-login for it. +pkginstall livecd-support-horizon livecd-support-mate + +# Start X on boot, if possible. +svcenable udev boot +svcenable udev-trigger boot +svcenable elogind +svcenable sddm +svcenable wpa_supplicant + +inherit ../arch/armv7.installfile |