Lubuntu: add raspberry pi scripting

ubuntu/plucky
Erich Eickmeyer 1 month ago
parent e687608175
commit 966ac04280

@ -7,5 +7,6 @@ lubuntu/modules/ etc/calamares/
lubuntu/oem/calamares-launch-oem usr/bin/
lubuntu/oem/calamares-launch-oem.desktop usr/share/applications/
lubuntu/oem/calamares-oemprep.sh usr/libexec/
lubuntu/oem/calamares-raspiprep.sh usr/libexec/
lubuntu/oemconfig.tar.gz etc/calamares/
lubuntu/settings.conf etc/calamares/

6
debian/changelog vendored

@ -1,3 +1,9 @@
calamares-settings-ubuntu (1:25.04.2) UNRELEASED; urgency=medium
* Lubuntu: Add raspberry pi prep script
-- Erich Eickmeyer <eeickmeyer@ubuntu.com> Sat, 09 Nov 2024 09:25:43 -0800
calamares-settings-ubuntu (1:25.04.1) plucky; urgency=medium
* Welcome to Plucky Puffin!

@ -0,0 +1,15 @@
#!/bin/bash
# Preps the preinstalled system to go straight into
# First user configuration mode, bypassing oem config
# mode
/usr/libexec/calamares-oemprep.sh
sddm_file="$(cat <<EOL
[Autologin]
Session=lubuntu-oem-environment
User=oem
EOL
)"
echo "$sddm_file" > /etc/sddm.conf
Loading…
Cancel
Save