guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: linux-libre-arm*-generic*: Enable RTC for ro


From: guix-commits
Subject: branch master updated: gnu: linux-libre-arm*-generic*: Enable RTC for rockchip platforms.
Date: Sun, 05 Apr 2020 20:55:58 -0400

This is an automated email from the git hooks/post-receive script.

vagrantc pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 6978df6  gnu: linux-libre-arm*-generic*: Enable RTC for rockchip 
platforms.
6978df6 is described below

commit 6978df6abbb3fc6c755b36821f50d5e03e751ca1
Author: Vagrant Cascadian <address@hidden>
AuthorDate: Sun Apr 5 21:23:59 2020 +0000

    gnu: linux-libre-arm*-generic*: Enable RTC for rockchip platforms.
    
    * gnu/packages/linux (linux-libre-arm-generic, linux-libre-arm-generic-5.6,
      linux-libre-arm64-generic, linux-libre-arm64-generic-5.6): Enable
      RTC_DRV_RK808 as a built-in in kernel configuration.
---
 gnu/packages/linux.scm | 28 ++++++++++++++++++++++++----
 1 file changed, 24 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index aa6a021..60ffed2 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -872,14 +872,24 @@ It has been modified to remove all non-free binary 
blobs.")
                      linux-libre-source
                      '("armhf-linux")
                      #:defconfig "multi_v7_defconfig"
-                     #:extra-version "arm-generic"))
+                     #:extra-version "arm-generic"
+                     #:extra-options
+                     (append
+                      `(;; needed to fix the RTC on rockchip platforms
+                        ("CONFIG_RTC_DRV_RK808" . #t))
+                      %default-extra-linux-options)))
 
 (define-public linux-libre-arm-generic-5.6
   (make-linux-libre* linux-libre-5.6-version
                      linux-libre-5.6-source
                      '("armhf-linux")
                      #:defconfig "multi_v7_defconfig"
-                     #:extra-version "arm-generic"))
+                     #:extra-version "arm-generic"
+                     #:extra-options
+                     (append
+                      `(;; needed to fix the RTC on rockchip platforms
+                        ("CONFIG_RTC_DRV_RK808" . #t))
+                      %default-extra-linux-options)))
 
 (define-public linux-libre-arm-veyron
   (deprecated-package "linux-libre-arm-veyron" linux-libre-arm-generic))
@@ -924,14 +934,24 @@ It has been modified to remove all non-free binary 
blobs.")
                      linux-libre-source
                      '("aarch64-linux")
                      #:defconfig "defconfig"
-                     #:extra-version "arm64-generic"))
+                     #:extra-version "arm64-generic"
+                    #:extra-options
+                     (append
+                      `(;; needed to fix the RTC on rockchip platforms
+                        ("CONFIG_RTC_DRV_RK808" . #t))
+                      %default-extra-linux-options)))
 
 (define-public linux-libre-arm64-generic-5.6
   (make-linux-libre* linux-libre-5.6-version
                      linux-libre-5.6-source
                      '("aarch64-linux")
                      #:defconfig "defconfig"
-                     #:extra-version "arm64-generic"))
+                     #:extra-version "arm64-generic"
+                     #:extra-options
+                     (append
+                      `(;; needed to fix the RTC on rockchip platforms
+                        ("CONFIG_RTC_DRV_RK808" . #t))
+                      %default-extra-linux-options)))
 
 (define-public linux-libre-riscv64-generic
   (make-linux-libre* linux-libre-version



reply via email to

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