diff options
| author | Andreas Enge <andreas@enge.fr> | 2026-02-17 15:27:12 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-17 16:52:24 +0100 |
| commit | 7911238d0945039d479163d33801a7a4cf7ddfe0 (patch) | |
| tree | 617fc8279f58066d2caf7f4c779d3b4783a0f472 /gnu/system/examples | |
| parent | 4e4574a7a93460484e61336027e926320e3ab628 (diff) | |
system: Remove asus-c201.tmp.
The file transitively depends on vboot-utils, which does not build
and which depends on python2. This effectively reverts commit
df2a96167fd97b1b2013813127e44b0bd5ca7469 .
* gnu/system/examples/asus-c201.tmpl: Remove file.
* Makefile.am (EXAMPLES): Unregister file.
Change-Id: I90683a01fc53c0491a77670c850c7afe6026c878
Diffstat (limited to 'gnu/system/examples')
| -rw-r--r-- | gnu/system/examples/asus-c201.tmpl | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/gnu/system/examples/asus-c201.tmpl b/gnu/system/examples/asus-c201.tmpl deleted file mode 100644 index 69790b89516..00000000000 --- a/gnu/system/examples/asus-c201.tmpl +++ /dev/null | |||
| @@ -1,61 +0,0 @@ | |||
| 1 | ;; -*- mode: scheme; -*- | ||
| 2 | ;; This is an operating system configuration template | ||
| 3 | ;; for a "bare bones" setup for an ASUS C201PA. | ||
| 4 | |||
| 5 | (use-modules (gnu) (gnu bootloader depthcharge)) | ||
| 6 | (use-service-modules networking ssh) | ||
| 7 | (use-package-modules linux screen) | ||
| 8 | |||
| 9 | (operating-system | ||
| 10 | (host-name "komputilo") | ||
| 11 | (timezone "Europe/Berlin") | ||
| 12 | (locale "en_US.utf8") | ||
| 13 | |||
| 14 | ;; Assuming /dev/mmcblk0p1 is the kernel partition, and | ||
| 15 | ;; "my-root" is the label of the target root file system. | ||
| 16 | (bootloader (bootloader-configuration | ||
| 17 | (bootloader depthcharge-bootloader) | ||
| 18 | (targets '("/dev/mmcblk0p1")))) | ||
| 19 | |||
| 20 | ;; The ASUS C201PA requires a very particular kernel to boot, | ||
| 21 | ;; as well as the following arguments. | ||
| 22 | (kernel linux-libre-arm-generic) | ||
| 23 | (kernel-arguments '("console=tty1")) | ||
| 24 | |||
| 25 | ;; We do not need any special modules for initrd, and the | ||
| 26 | ;; PrawnOS kernel does not include many of the normal ones. | ||
| 27 | (initrd-modules '()) | ||
| 28 | |||
| 29 | (file-systems (cons (file-system | ||
| 30 | (device (file-system-label "my-root")) | ||
| 31 | (mount-point "/") | ||
| 32 | (type "ext4")) | ||
| 33 | %base-file-systems)) | ||
| 34 | |||
| 35 | ;; This is where user accounts are specified. The "root" | ||
| 36 | ;; account is implicit, and is initially created with the | ||
| 37 | ;; empty password. | ||
| 38 | (users (cons (user-account | ||
| 39 | (name "alice") | ||
| 40 | (comment "Bob's sister") | ||
| 41 | (group "users") | ||
| 42 | |||
| 43 | ;; Adding the account to the "wheel" group | ||
| 44 | ;; makes it a sudoer. Adding it to "audio" | ||
| 45 | ;; and "video" allows the user to play sound | ||
| 46 | ;; and access the webcam. | ||
| 47 | (supplementary-groups '("wheel" | ||
| 48 | "audio" "video")) | ||
| 49 | (home-directory "/home/alice")) | ||
| 50 | %base-user-accounts)) | ||
| 51 | |||
| 52 | ;; Globally-installed packages. | ||
| 53 | (packages (cons screen %base-packages)) | ||
| 54 | |||
| 55 | ;; Add services to the baseline: a DHCP client and | ||
| 56 | ;; an SSH server. | ||
| 57 | (services (append (list (service dhcpcd-service-type) | ||
| 58 | (service openssh-service-type | ||
| 59 | (openssh-configuration | ||
| 60 | (port-number 2222)))) | ||
| 61 | %base-services))) | ||
