From e006cf7b532bc0ce9c75cf3de575353085f23e45 Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Sat, 3 Dec 2022 05:36:23 +0100 Subject: [PATCH] nongnu: images: Add quartz64-a-raw-image. * nongnu/system/images/quartz64a.scm (quartz64a-raw-image): New variable. --- nongnu/system/images/quartz64a.scm | 114 +++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 nongnu/system/images/quartz64a.scm diff --git a/nongnu/system/images/quartz64a.scm b/nongnu/system/images/quartz64a.scm new file mode 100644 index 0000000..9439027 --- /dev/null +++ b/nongnu/system/images/quartz64a.scm @@ -0,0 +1,114 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2020 Mathieu Othacehe +;;; +;;; This file is part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see . + +(define-module (nongnu system images quartz64a) + #:use-module (gnu bootloader) + #:use-module (gnu bootloader u-boot) + #:use-module (gnu image) + #:use-module (nongnu packages linux) + #:use-module (nongnu packages bootloaders) + #:use-module (guix platforms arm) + #:use-module (gnu packages certs) + #:use-module (gnu packages ssh) + #:use-module (gnu services) + #:use-module (gnu services avahi) + #:use-module (gnu services base) + #:use-module (gnu services desktop) + #:use-module (gnu services networking) + #:use-module (gnu services ssh) + #:use-module (gnu system) + #:use-module (gnu system accounts) + #:use-module (gnu system file-systems) + #:use-module (gnu system image) + #:use-module (gnu system nss) + #:use-module (gnu system shadow) + #:use-module (srfi srfi-26) + #:export (quartz64-a-raw-image + quartz64-image-type + quartz64-barebones-raw-image)) + +(define quartz64-a-barebone-os + (operating-system + (host-name "viso") + (timezone "Europe/Prague") + (locale "en_US.utf8") + + (bootloader (bootloader-configuration + (bootloader u-boot-quartz64a-rk3566-bootloader) + (targets '("/dev/vda")))) + (initrd-modules '()) + (kernel linux-quartz64) + (file-systems (append (list + (file-system + (device (file-system-label "EFI")) + (mount-point "/boot/efi") + (type "vfat")) + (file-system + (device (file-system-label "root")) + (mount-point "/") + (type "ext4"))) + %base-file-systems)) + + (swap-devices (list (swap-space + (target "/run/swapfile")))) + + (users (cons* (user-account + (name "pine") + (group "users") + (supplementary-groups '("wheel" "netdev" "audio" "video")) + (password (crypt "quartz64" "$6$abc")) + (home-directory "/home/pine")) + %base-user-accounts)) + + (services (append (list (service agetty-service-type + (agetty-configuration + (extra-options '("-L")) ; no carrier detect + (baud-rate "1500000") + (term "vt100") + (tty "ttyS2"))) + (service avahi-service-type) + (service dhcp-client-service-type) + (service ntp-service-type) + (service openssh-service-type)) + %base-services)) + + (packages (cons* nss-certs + openssh + %base-packages)) + + (name-service-switch %mdns-host-lookup-nss))) + +(define quartz64-image-type + (image-type + (name 'quartz-raw) + (constructor (lambda (os) + (image + (inherit + (raw-with-offset-disk-image (* 32 (expt 2 20)))) ; 32MiB + (operating-system os) + (platform aarch64-linux)))))) + +(define quartz64-barebones-raw-image + (image + (inherit + (os+platform->image quartz64-a-barebone-os aarch64-linux + #:type quartz64-image-type)) + (name 'quartz-barebones-raw-image))) + +;; Return the default image. +quartz64-barebones-raw-image