unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 09ddf59dd007568e07a1de09f35711b60c2122c1 6211 bytes (raw)
name: guix/build/kconfig.scm 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2020 Stefan <stefan-guix@vodafonemail.de>
;;;
;;; 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 <http://www.gnu.org/licenses/>.

(define-module (guix build kconfig)
  #:use-module  (ice-9 rdelim)
  #:use-module  (ice-9 regex)
  #:use-module  (srfi srfi-1)
  #:use-module  (srfi srfi-26)
  #:export (modify-defconfig))

;; Commentary:
;;
;; Builder-side code to modify configurations for the Kconfig build system as
;; used by Linux and U-Boot.
;;
;; Code:

(define (modify-defconfig defconfig configs)
  "This function can modify a given DEFCONFIG file by adding, changing or
removing the list of strings in CONFIGS.  This allows an easy customization of
Kconfig based projects like the kernel Linux or the bootloader 'Das U-Boot'.

These are examples for CONFIGS to add or change or remove
configurations to/from DEFCONFIG:

'(\"CONFIG_A=\\\"a\\\"\"
  \"CONFIG_B=0\"
  \"CONFIG_C=y\"
  \"CONFIG_D=m\"
  \"CONFIG_E=\"
  \"CONFIG_F\"
  \"# CONFIG_G is not set\")

Instead of a list, CONFGIS can be a string with one configuration per line."
  (define config-rx
    (make-regexp
     ;; (match:substring (string-match "=(.*)" "=") 1) returns "", but the
     ;; pattern "=(.+)?" makes it return #f instead.  For a "CONFIG_A=" we like
     ;; to get #f, which as a value emits "# … is not set".
     "^(#[\\t ]*)?(CONFIG_[A-Z0-9_]+)([\\t ]*=[\\t ]*(.+)?|([\\t ]+is[\\t ]+not[\\t ]+set))?$"))

  (define (config-string->pair config-string)
    "Parse a config-string like \"CONFIG_EXAMPLE=y\" into a key-value pair.
Spaces get trimmed.
\"CONFIG_A=y\"            -> '(\"CONFIG_A\" . \"y\")
\"CONFIG_B=\\\"\\\"\"         -> '(\"CONFIG_B\" . \"\\\"\\\"\")
\"CONFIG_C=\"             -> '(\"CONFIG_C\" . #f)
\"CONFIG_D\"              -> '(\"CONFIG_D\" . #f)
\"# CONFIG_E is not set\" -> '(\"CONFIG_E\" . #f)
\"# Anything else\"       -> '(\"# Anything else\" . \"\")"
    (let ((match (regexp-exec config-rx (string-trim-both config-string))))
      (if (not match)
          ;; This is some unparsable config-string.
          ;; We keep it as it is.
          (cons config-string "")
          (let* ((comment (match:substring match 1))
                 (key (match:substring match 2))
                 (unset (match:substring match 5))
                 (value (and (not comment)
                             (not unset)
                             (match:substring match 4))))
            (if (or (and comment (not unset))
                    (and (not comment) unset))
                ;; This is just some comment or strange line, which we keep as is.
                (cons config-string "")
                (cons key value))))))

  (define (pair->config-string pair)
    "Convert a PAIR back to a config-string."
    (let* ((key (car pair))
           (value (cdr pair)))
      (if (string? value)
          (if (string-null? value)
              key
              (string-append key "=" value))
          (string-append "# " key " is not set"))))

  (define (remove-pair pair blacklist)
    "Turn a key-value PAIR into '("" . ""), if its key is listed in BLACKLIST."
    (let* ((key (first pair)))
      (if (member key blacklist)
          '("" . "")
          pair)))

  (define (remove-config-string config-string blacklist)
    "Remove the CONFIG-STRING, if its key is listed in BLACKLIST."
    (pair->config-string (remove-pair (config-string->pair config-string)
                                       blacklist)))

  (define* (write-lines input #:key (line-modifier identity))
    "Write all lines from the INPUT after applying the LINE-MODIFIER to the
 current-output-port."
    (let loop ((line (read-line input)))
      (when (not (eof-object? line))
        (display (line-modifier line))
        (newline)
        (loop (read-line input)))))

  (let* ((modified-defconfig (string-append defconfig ".mod"))
         ;; Split the configs into a list of single configuations.
         ;; To minimize mistakes, we support a string and a list of strings,
         ;; each with newlines to separate configurations.
         (config-list (fold-right append '()
                                  (map (lambda (s)
                                         (string-split s #\newline))
                                       (if (string? configs)
                                           (list configs)
                                           configs))))
         ;; Generate key-value pairs from the config-list.
         (pairs (map (lambda (config-string)
                       (config-string->pair config-string))
                     config-list))
         ;; Generate a blacklist of config keys from pairs.
         (blacklist (map (lambda (config-pair)
                           (first config-pair))
                         pairs))
         (remove-config-string (cut remove-config-string <> blacklist)))
    ;; Write to the modified-defconfig file first the content of the defconfig
    ;; file with removed lines, and afterwards the configs.
    (call-with-output-file modified-defconfig
      (lambda (output)
        (with-output-to-port output
          (lambda ()
            (call-with-input-file defconfig
              (lambda (input)
                (write-lines input #: line-modifier remove-config-string)))
            (call-with-input-string
              (string-join (map pair->config-string pairs) "\n")
              (lambda (input)
                (write-lines input)))))))
    ;; Ensure the modified-defconfig file is used.
    (delete-file defconfig)
    (rename-file modified-defconfig defconfig)))

debug log:

solving 09ddf59dd0 ...
found 09ddf59dd0 in https://yhetil.org/guix-patches/AFD31F40-6691-4B53-ACA9-7F821D139124@vodafonemail.de/ ||
	https://yhetil.org/guix-patches/53799D56-08BA-401A-BC09-81BA61736AAC@vodafonemail.de/ ||
	https://yhetil.org/guix-patches/19E4796A-B0DB-444F-8773-2E8D3EF6132D@vodafonemail.de/ ||
	https://yhetil.org/guix-patches/j-6Mh97olCgYy-HTnXD1Wddae1w06eUlRPTw9m2QCxidzQeWs7nIp9EBjGrtgSdImIddGLbRv6mI9cwKeFr5Y9KiaOQfVsMVmFy1DXbQ3I4=@protonmail.com/ ||
	https://yhetil.org/guix-patches/1JV7YdNsB7LB0ij9pMN5ktIsdpU8g98Lpu0yOrl_r6wFvRjqRJ5XqOktugKlia2rSeyNVEwY0b8VJrFJr1TsWgOIo-JW6EmTpj6Bz4dNzxQ=@protonmail.com/

applying [1/1] https://yhetil.org/guix-patches/AFD31F40-6691-4B53-ACA9-7F821D139124@vodafonemail.de/
diff --git a/guix/build/kconfig.scm b/guix/build/kconfig.scm
new file mode 100644
index 0000000000..09ddf59dd0

Checking patch guix/build/kconfig.scm...
Applied patch guix/build/kconfig.scm cleanly.

skipping https://yhetil.org/guix-patches/53799D56-08BA-401A-BC09-81BA61736AAC@vodafonemail.de/ for 09ddf59dd0
skipping https://yhetil.org/guix-patches/19E4796A-B0DB-444F-8773-2E8D3EF6132D@vodafonemail.de/ for 09ddf59dd0
skipping https://yhetil.org/guix-patches/j-6Mh97olCgYy-HTnXD1Wddae1w06eUlRPTw9m2QCxidzQeWs7nIp9EBjGrtgSdImIddGLbRv6mI9cwKeFr5Y9KiaOQfVsMVmFy1DXbQ3I4=@protonmail.com/ for 09ddf59dd0
skipping https://yhetil.org/guix-patches/1JV7YdNsB7LB0ij9pMN5ktIsdpU8g98Lpu0yOrl_r6wFvRjqRJ5XqOktugKlia2rSeyNVEwY0b8VJrFJr1TsWgOIo-JW6EmTpj6Bz4dNzxQ=@protonmail.com/ for 09ddf59dd0
index at:
100644 09ddf59dd007568e07a1de09f35711b60c2122c1	guix/build/kconfig.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).