~ruther/guix-local

be5ec2ebb4bde4b4f702a30f08849dff05cceccd — Jean-Pierre De Jesus DIAZ 2 years ago b40a444
guix: Add avr platform.

* Makefile.am (MODULES): Add avr platform module.
* doc/guix.texi: Add documentation for avr platform.
* guix/platforms/avr.scm (avr): New variable.

Change-Id: I0f425eac61a71390b618e093f5a034ad4205a6f4
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
3 files changed, 36 insertions(+), 0 deletions(-)

M Makefile.am
M doc/guix.texi
A guix/platforms/avr.scm
M Makefile.am => Makefile.am +1 -0
@@ 138,6 138,7 @@ MODULES =					\
  guix/ipfs.scm					\
  guix/platform.scm                             \
  guix/platforms/arm.scm                        \
  guix/platforms/avr.scm                        \
  guix/platforms/mips.scm                       \
  guix/platforms/powerpc.scm                    \
  guix/platforms/riscv.scm                      \

M doc/guix.texi => doc/guix.texi +7 -0
@@ 119,6 119,7 @@ Copyright @copyright{} 2023 Tanguy Le Carrour@*
Copyright @copyright{} 2023 Zheng Junjie@*
Copyright @copyright{} 2023 Brian Cully@*
Copyright @copyright{} 2023 Felix Lechner@*
Copyright @copyright{} 2023 Foundation Devices, Inc.@*

Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or


@@ 16760,6 16761,7 @@ The available targets are:

   - aarch64-linux-gnu
   - arm-linux-gnueabihf
   - avr
   - i586-pc-gnu
   - i686-linux-gnu
   - i686-w64-mingw32


@@ 45850,6 45852,11 @@ Platform targeting x86 CPU running GNU/Hurd (also referred to as
``GNU'').
@end defvar

@defvar avr
Platform targeting AVR CPUs without an operating system, with run-time support
from AVR Libc.
@end defvar

@node System Images
@chapter Creating System Images


A guix/platforms/avr.scm => guix/platforms/avr.scm +28 -0
@@ 0,0 1,28 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com>
;;;
;;; 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 platforms avr)
  #:use-module (guix platform)
  #:use-module (guix records)
  #:export (avr))

(define avr
  (platform
   (target "avr")
   (system #f)
   (glibc-dynamic-linker #f)))