guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/03: vm: Add padding in the ISO image.


From: guix-commits
Subject: 03/03: vm: Add padding in the ISO image.
Date: Thu, 6 Dec 2018 11:33:36 -0500 (EST)

civodul pushed a commit to branch version-0.16.0
in repository guix.

commit 178be030c0e4fdeac5e1c968b5c99d84bb4691db
Author: Ludovic Courtès <address@hidden>
Date:   Thu Dec 6 17:22:24 2018 +0100

    vm: Add padding in the ISO image.
    
    Fixes <https://bugs.gnu.org/33639>.
    Thanks to Ricardo Wurmus and Thomas Schmitt for their suggestions!
    
    * gnu/build/vm.scm (make-iso9660-image): Pass "-padding 10m" to
    xorriso.
---
 gnu/build/vm.scm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/gnu/build/vm.scm b/gnu/build/vm.scm
index 7468085..83ad489 100644
--- a/gnu/build/vm.scm
+++ b/gnu/build/vm.scm
@@ -477,6 +477,11 @@ GRUB configuration and OS-DRV as the stuff in it."
                 "mnt=/tmp/root/mnt"
                 "-path-list" "-"
                 "--"
+
+                ;; XXX: Add padding to avoid I/O errors on i686:
+                ;; <https://bugs.gnu.org/33639>.
+                "-padding" "10m"
+
                 "-volid" (string-upcase volume-id)
                 (if volume-uuid
                     `("-volume_date" "uuid"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]