emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#59511: closed (Network Support for pine64 base image)


From: GNU bug Tracking System
Subject: bug#59511: closed (Network Support for pine64 base image)
Date: Fri, 09 Dec 2022 03:04:01 +0000

Your message dated Fri, 09 Dec 2022 11:04:06 +0800
with message-id <87o7sdi8gp.fsf@envs.net>
and subject line Re: bug#59511: Network Support for pine64 base image
has caused the debbugs.gnu.org bug report #59511,
regarding Network Support for pine64 base image
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
59511: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=59511
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: Network Support for pine64 base image Date: Wed, 23 Nov 2022 10:41:56 +0100
Hi

Overcoming some relatively basic barriers putting my Pine64 LTS board in
operation I figured a small patch to the base-image in the Guix repo
might be a gain for all.  So here is my patch go give the Pine64 DHCP,
NTP and Certificates so that a `guix pull` and potential reconfigure can
take place without great hassle.

With nothing but the best wishes

Gabriel



>From 70a0f09a1ba1bdc916cebaa3f247b66a6ad0d669 Mon Sep 17 00:00:00 2001
From: Gabriel Wicki <gabriel@erlikon.ch>
Date: Wed, 16 Nov 2022 20:32:10 +0100
Subject: [PATCH] system: Add networking support to pine64 image

* gnu/system/images/pine64.scm (pine64-barebones-os) [services]: Add
dhcp-client-service-type and ntp-service-type to the list of services.
[packages]: Add nss-certs to the list of packages.
---
 gnu/system/images/pine64.scm | 21 ++++++++++++++-------
 1 file changed, 14 insertions(+), 7 deletions(-)

diff --git a/gnu/system/images/pine64.scm b/gnu/system/images/pine64.scm
index a2d471b802..3feb69764d 100644
--- a/gnu/system/images/pine64.scm
+++ b/gnu/system/images/pine64.scm
@@ -1,5 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2020 Mathieu Othacehe <m.othacehe@gmail.com>
+;;; Copyright © 2022 Gabriel Wicki <gabriel@erlikon.ch>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -21,9 +22,11 @@ (define-module (gnu system images pine64)
   #:use-module (gnu bootloader u-boot)
   #:use-module (gnu image)
   #:use-module (gnu packages linux)
+  #:use-module (gnu packages certs)
   #:use-module (guix platforms arm)
   #:use-module (gnu services)
   #:use-module (gnu services base)
+  #:use-module (gnu services networking)
   #:use-module (gnu system)
   #:use-module (gnu system file-systems)
   #:use-module (gnu system image)
@@ -47,13 +50,17 @@ (define pine64-barebones-os
                           (mount-point "/")
                           (type "ext4"))
                         %base-file-systems))
-    (services (cons (service agetty-service-type
-                             (agetty-configuration
-                              (extra-options '("-L")) ; no carrier detect
-                              (baud-rate "115200")
-                              (term "vt100")
-                              (tty "ttyS0")))
-                    %base-services))))
+    (services (cons*
+               (service agetty-service-type
+                        (agetty-configuration
+                         (extra-options '("-L")) ; no carrier detect
+                         (baud-rate "115200")
+                         (term "vt100")
+                         (tty "ttyS0")))
+               (service dhcp-client-service-type)
+               (service ntp-service-type)
+               %base-services))
+    (packages (cons nss-certs %base-packages))))
 
 (define pine64-image-type
   (image-type
-- 
2.38.0




--- End Message ---
--- Begin Message --- Subject: Re: bug#59511: Network Support for pine64 base image Date: Fri, 09 Dec 2022 11:04:06 +0800 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux)
Gabriel Wicki <gabriel@erlikon.ch> writes:

> Hi
>
> Overcoming some relatively basic barriers putting my Pine64 LTS board in
> operation I figured a small patch to the base-image in the Guix repo
> might be a gain for all.  So here is my patch go give the Pine64 DHCP,
> NTP and Certificates so that a `guix pull` and potential reconfigure can
> take place without great hassle.
>
> With nothing but the best wishes
>
> Gabriel
>
>
>
>>From 70a0f09a1ba1bdc916cebaa3f247b66a6ad0d669 Mon Sep 17 00:00:00 2001
> From: Gabriel Wicki <gabriel@erlikon.ch>
> Date: Wed, 16 Nov 2022 20:32:10 +0100
> Subject: [PATCH] system: Add networking support to pine64 image

Applied, thank you!


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]