unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#39941: Disk-image size increase on core-updates.
@ 2020-03-06  7:37 Mathieu Othacehe
  2020-03-10  9:22 ` Mathieu Othacehe
  0 siblings, 1 reply; 14+ messages in thread
From: Mathieu Othacehe @ 2020-03-06  7:37 UTC (permalink / raw)
  To: 39941

[-- Attachment #1: Type: text/plain, Size: 375 bytes --]


Hello,

When building the attached operating-system (very close to
bare-bones.tmpl) with the following command:

guix system disk-image --target=aarch64-linux-gnu mini.scm --no-grafts

the produced disk-image weights 2.6G (2717242368 bytes). On the same
branch in January it was around 1.5G.

I'll check the same command for a native x86_64 system and report back.

Mathieu

[-- Attachment #2: mini.scm --]
[-- Type: application/octet-stream, Size: 1310 bytes --]

(use-modules (gnu)
             (gnu bootloader u-boot)
             (srfi srfi-1))
(use-service-modules networking)

(operating-system
  (host-name "vignemale")
  (timezone "Europe/Paris")
  (locale "en_US.utf8")

  (bootloader (bootloader-configuration
               (bootloader u-boot-pine64-lts-bootloader)
               (target "/dev/vda")))

  (kernel-arguments '())
  (initrd-modules
   (cons* "sunxi-mmc"
          "sd_mod"
          "axp20x-rsb"
          "axp20x-regulator"
          %base-initrd-modules))

  (file-systems (cons (file-system
                        (device (file-system-label "my-root"))
                        (mount-point "/")
                        (type "ext4"))
                      %base-file-systems))

  (users (cons (user-account
                (name "mathieu")
                (group "users")
                (supplementary-groups '("wheel" "audio" "video")))
               %base-user-accounts))

  (packages %base-packages)
  (services (cons (service agetty-service-type
                           (agetty-configuration
                            (extra-options '("-L")) ; no carrier detect
                            (baud-rate "115200")
                            (term "vt100")
                            (tty "ttyS0")))
                  %base-services)))

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2020-03-25 21:36 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-06  7:37 bug#39941: Disk-image size increase on core-updates Mathieu Othacehe
2020-03-10  9:22 ` Mathieu Othacehe
2020-03-11 14:25   ` Ludovic Courtès
2020-03-11 14:45     ` Mathieu Othacehe
2020-03-11 20:33       ` Ludovic Courtès
2020-03-12  8:06         ` Mathieu Othacehe
2020-03-14 10:54         ` Mathieu Othacehe
2020-03-14 12:30           ` Marius Bakke
2020-03-15 11:21             ` Mathieu Othacehe
2020-03-15 17:13               ` Ludovic Courtès
2020-03-17 11:28                 ` Mathieu Othacehe
2020-03-24 10:54                   ` Ludovic Courtès
2020-03-24 17:01                     ` Mathieu Othacehe
2020-03-25 21:34                       ` Ludovic Courtès

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).