pine64.scm 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. ;;; GNU Guix --- Functional package management for GNU
  2. ;;; Copyright © 2020 Mathieu Othacehe <m.othacehe@gmail.com>
  3. ;;;
  4. ;;; This file is part of GNU Guix.
  5. ;;;
  6. ;;; GNU Guix is free software; you can redistribute it and/or modify it
  7. ;;; under the terms of the GNU General Public License as published by
  8. ;;; the Free Software Foundation; either version 3 of the License, or (at
  9. ;;; your option) any later version.
  10. ;;;
  11. ;;; GNU Guix is distributed in the hope that it will be useful, but
  12. ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. ;;; GNU General Public License for more details.
  15. ;;;
  16. ;;; You should have received a copy of the GNU General Public License
  17. ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
  18. (define-module (gnu system images pine64)
  19. #:use-module (gnu bootloader)
  20. #:use-module (gnu bootloader u-boot)
  21. #:use-module (gnu image)
  22. #:use-module (gnu packages linux)
  23. #:use-module (gnu services)
  24. #:use-module (gnu services base)
  25. #:use-module (gnu system)
  26. #:use-module (gnu system file-systems)
  27. #:use-module (gnu system image)
  28. #:use-module (srfi srfi-26)
  29. #:export (pine64-barebones-os
  30. pine64-image-type
  31. pine64-barebones-raw-image))
  32. (define pine64-barebones-os
  33. (operating-system
  34. (host-name "vignemale")
  35. (timezone "Europe/Paris")
  36. (locale "en_US.utf8")
  37. (bootloader (bootloader-configuration
  38. (bootloader u-boot-pine64-lts-bootloader)
  39. (target "/dev/vda")))
  40. (initrd-modules '())
  41. (kernel linux-libre-arm64-generic)
  42. (file-systems (cons (file-system
  43. (device (file-system-label "my-root"))
  44. (mount-point "/")
  45. (type "ext4"))
  46. %base-file-systems))
  47. (services (cons (service agetty-service-type
  48. (agetty-configuration
  49. (extra-options '("-L")) ; no carrier detect
  50. (baud-rate "115200")
  51. (term "vt100")
  52. (tty "ttyS0")))
  53. %base-services))))
  54. (define pine64-image-type
  55. (image-type
  56. (name 'pine64-raw)
  57. (constructor (cut image-with-os (arm64-disk-image) <>))))
  58. (define pine64-barebones-raw-image
  59. (image
  60. (inherit
  61. (os->image pine64-barebones-os #:type pine64-image-type))
  62. (name 'pine64-barebones-raw-image)))
  63. ;; Return the default image.
  64. pine64-barebones-raw-image