diff options
author | Stefan <stefan-guix@vodafonemail.de> | 2022-12-01 09:50:51 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-12-01 11:57:06 -0500 |
commit | a3f638e7480b39bd1e951873db7b1e2538106f4d (patch) | |
tree | 09113a4955dae636a4367c5cc88460b436c15bdd /Makefile.am | |
parent | 748ec628826cea3faa3679074d87fae9bc810080 (diff) | |
download | guix-a3f638e7480b39bd1e951873db7b1e2538106f4d.tar.gz |
build: kconfig: Add new module to modify defconfig files.
* guix/build/kconfig.scm: New file. * Makefile.am: Register it. * gnu/packages/bootloaders.scm (make-u-boot-package) (make-u-boot-sunxi64-package): Add DEFCONFIGS and CONFIGS arguments. Remove dead code. (u-boot-am335x-boneblack, u-boot-pinebook) (u-boot-novena,u-boot-rockpro64-rk3399): Simplify packages by using the new keyword arguments. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index c3af23b68e..75c9df573c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -237,6 +237,7 @@ MODULES = \ guix/build/waf-build-system.scm \ guix/build/haskell-build-system.scm \ guix/build/julia-build-system.scm \ + guix/build/kconfig.scm \ guix/build/linux-module-build-system.scm \ guix/build/store-copy.scm \ guix/build/json.scm \ |