~ruther/guix-local

517830cc — Ludovic Courtès 11 years ago
system: Always create /var/empty.

* guix/build/install.scm (directives): Add /var/empty.
484a2b3a — Ludovic Courtès 11 years ago
system: Separate the activation script from the boot script.

* gnu/system.scm (operating-system-activation-script): New procedure,
  containing most of the former 'operating-system-boot-script'.
  (operating-system-boot-script): Call it, and 'primitive-load' its
  result.
* guix/build/activation.scm (%booted-system): Remove.
  (activate-current-system): Remove #:boot? parameter and related code.
a9f48ff0 — Eric Bavier 11 years ago
gnu: Add lzop.

* gnu/packages/compression.scm (lzop): New variable.
112440a7 — Ludovic Courtès 11 years ago
vm: Disable QEMU networking in the disk image initrd.

* gnu/system/linux-initrd.scm (qemu-initrd): Add #:qemu-networking?
  parameter and honor it.
* gnu/system/vm.scm (system-disk-image): Pass #:qemu-networking #f.
a68d976b — Ludovic Courtès 11 years ago
download: Enlarge your receive buffer.

* guix/build/download.scm (open-connection-for-uri): Remove call to
  'setsockopt'.
* guix/http-client.scm (open-socket-for-uri)[rmem-max, buffer-size]: New
  variables.  Add call to 'setsockopt'.
fb729425 — Ludovic Courtès 11 years ago
guix system: Add 'disk-image' action.

* guix/scripts/system.scm (show-help): Add 'disk-image'.
  (guix-system)[parse-options]: Support 'disk-image' action.
  [option-arguments]: Likewise.
  Handle the 'disk-image' action.
* doc/guix.texi (Invoking guix system): Document 'disk-image'.
1e77fedb — Ludovic Courtès 11 years ago
vm: Add 'system-disk-image'.

* gnu/system/vm.scm (system-disk-image): New procedure.
c9384945 — Ludovic Courtès 11 years ago
Add (gnu) module.

* gnu.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* build-aux/hydra/demo-os.scm: Use (gnu) and strip import list
  accordingly.
* doc/guix.texi (Using the Configuration System): Adjust example
  accordingly.
f19c6e5f — Ludovic Courtès 11 years ago
vm: Use a para-virtualized disk when creating an image.

* guix/build/vm.scm (load-in-linux-vm): When MAKE-DISK-IMAGE?, use
  '-drive ...,if=virtio' for better performance.
* gnu/system/vm.scm (qemu-image): Use /dev/vda instead of /dev/sda.
c4a74364 — Ludovic Courtès 11 years ago
vm: Make the image format a parameter.

* guix/build/vm.scm (load-in-linux-vm): Add #:disk-image-format
  parameter; add 'image-file' variable.  Honor DISK-IMAGE-FORMAT.
* gnu/system/vm.scm (expression->derivation-in-linux-vm): Add
  #:disk-image-format parameter, and honor it.
  (qemu-image): Likewise.
3035b50f — Ludovic Courtès 11 years ago
linux-initrd: Build /dev/loop* nodes.

* guix/build/linux-initrd.scm (make-essential-device-nodes): Build
  /dev/loop[0-7].
ca143f13 — Andreas Enge 11 years ago
gnu: imagemagick: Upgrade to 6.8.9-0.

* gnu/packages/imagemagick.scm (imagemagick): Upgrade to 6.8.9-0.
39aa11e0 — Andreas Enge 11 years ago
gnu: perl-io-tty: Upgrade to 1.11.

* gnu/packages/perl.scm (perl-io-tty): Upgrade to 1.11.
6d763bdd — Andreas Enge 11 years ago
guix: download: Update imagemagick mirrors.

* guix/download.scm (%mirrors)[imagemagick]: Update and add the legacy
    subdirectory of the main site as a last resort.
a3977466 — Ludovic Courtès 11 years ago
build: Fix builds without --with-libgcrypt-prefix nor --with-libgcrypt-libdir.

Reported by Manolis Ragkousis <manolis837@gmail.com>.
Fixes a regression introduced in 14af289.

Before this commit, ./configure would leave LIBGCRYPT_PREFIX and
LIBGCRYPT_LIBDIR undefined, leading to LIBGCRYPT_LIBS="-L -lgcrypt" and
thus to a link failure.

* configure.ac: Make sure $LIBGCRYPT_PREFIX and $LIBGCRYPT_LIBDIR are
  never empty.
641f9a2a — Ludovic Courtès 11 years ago
vm: Modularize build-side code.

* guix/build/install.scm (install-grub): Call 'error' if 'system*'
  returns non-zero.
* guix/build/vm.scm (initialize-partition-table): Make 'partition-size'
  a positional parameter.  Call 'error' when 'system*' returns
  non-zero'.
  (format-partition, initialize-root-partition): New procedures.
  (initialize-hard-disk): Use them.
d1f47719 — Ludovic Courtès 11 years ago
vm: Remove misleading comment.

* guix/build/vm.scm (load-in-linux-vm): Remove misleading comment.
952298d7 — Ludovic Courtès 12 years ago
gnu: Add wpa_supplicant.

* gnu/packages/admin.scm (wpa-supplicant): New variable.
d28869af — Ludovic Courtès 12 years ago
store: Flush the output when the build process emits '\r'.

This allows progress reports emitted by 'substitute-binary' to be
correctly displayed.

* guix/store.scm (%newlines): New variable.
  (process-stderr) <%stderr-next>: Flush (current-build-output-port)
  when S contains one of %NEWLINES.
29decd1f — Ludovic Courtès 12 years ago
Augment (guix).

* guix.scm (%public-modules): Add 'monads' and 'gexp'.
Next