summary refs log tree commit diff
path: root/NEWS
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2013-05-11 22:50:01 +0200
committerLudovic Courtès <ludo@gnu.org>2013-05-11 22:50:01 +0200
commit47d188109ebe95d862c3297657a990845c9a4545 (patch)
treeb3838ab66c16169c6f495721d8921170a396e07c /NEWS
parent1b1c335f5e62cff78ab9fff9c998fc932a0e8a4e (diff)
downloadguix-47d188109ebe95d862c3297657a990845c9a4545.tar.gz
Update `NEWS'.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS23
1 files changed, 22 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index b684063f99..dbcf23c874 100644
--- a/NEWS
+++ b/NEWS
@@ -76,6 +76,26 @@ The ‘perl-build-system’, ‘python-build-system’, and ‘cmake-build-syste
 been added.  They implement the standard build systems for Perl, Python, and
 CMake packages.
 
+*** Tools to build Linux initrds, QEMU images, and more
+
+The (gnu packages linux-initrd) module provides a procedure to build a Linux
+initrd (“initial RAM disk”).  The initrd embeds Guile, which is used to
+evaluate the given expression.  The example below returns an initrd that
+mounts the /proc file system and starts a REPL:
+
+  (expression->initrd
+    '(begin
+       (mkdir "/proc")
+       (mount "none" "/proc" "proc")
+       ((@ (system repl repl) start-repl))))
+
+More examples in the linux-initrd.scm file.
+
+Experimental interfaces to produce and use QEMU images are provided by the
+(gnu system vm) module.  For instance, the
+‘expression->derivation-in-linux-vm’ evaluates the given Scheme expression in
+a QEMU virtual machine running the Linux kernel and Guile.
+
 ** GNU distribution
 
 Many updates and additions have been made to the distribution.  Here are the
@@ -88,4 +108,5 @@ Coreutils 8.20, GDB 7.6, Texinfo 5.1.
 
 *** Noteworthy new packages
 
-TeXLive, Xorg, GNU Parted, QEMU and QEMU-KVM, Avahi, Hugs, Python, Lua, Samba.
+TeXLive, Xorg, GNU Parted, QEMU and QEMU-KVM, Avahi, Bigloo, CHICKEN,
+Scheme48, Hugs, Python, Lua, Samba.