diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-09-25 17:33:02 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-09-25 18:58:25 +0200 |
commit | 65d195e140e18715f7f7fb4c5d219040ce773482 (patch) | |
tree | 561051b01e839b54903b3c13623be75eca5dbd2d /gnu | |
parent | 0b86a82dc7e649e4ae551edefba445690a315b83 (diff) | |
download | patches-65d195e140e18715f7f7fb4c5d219040ce773482.tar patches-65d195e140e18715f7f7fb4c5d219040ce773482.tar.gz |
gnu: vm: Change GRUB label.
* gnu/system/vm.scm (system-qemu-image): Change GRUB label.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/system/vm.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm index 95155548d0..11c76c67f3 100644 --- a/gnu/system/vm.scm +++ b/gnu/system/vm.scm @@ -493,7 +493,10 @@ alias ll='ls -l' "--config" ,dmd-conf)) (list out))) (entries (list (menu-entry - (label "Boot-to-Guile! (GNU System technology preview)") + (label (string-append + "GNU System with Linux-Libre " + (package-version linux-libre) + " (technology preview)")) (linux linux-libre) (linux-arguments `("--root=/dev/vda1" ,(string-append "--load=" boot))) |