mirror of
https://gitlab.com/alemaire/image-specs.git
synced 2025-01-10 23:03:29 +00:00
c245be293e
This adds a debos recipe for building a desktop image for a ARM64-based RaspberryPi. It include a lightweight desktop, that is LXDE, create a default user "pi" that has sudo access rights. As on Raspbian, the "pi" user is automatically logged in via lightdm. The buster debian splash is also automatically enabled
9 lines
116 B
Bash
Executable File
9 lines
116 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
adduser --gecos pi --disabled-password pi
|
|
adduser pi sudo
|
|
echo "pi:pi" | chpasswd
|
|
passwd -l root
|