vm: Make sure disk image initrds load 'usb-storage.ko'.
Reported by David Thompson <dthompson2@worcester.edu>. * gnu/system/vm.scm (system-disk-image): Add usb-storage.ko to the initrd.
This commit is contained in:
parent
246a8106ff
commit
932e1f9240
|
@ -287,10 +287,12 @@ to USB sticks meant to be read-only."
|
||||||
(operating-system-file-systems os)))
|
(operating-system-file-systems os)))
|
||||||
|
|
||||||
(let ((os (operating-system (inherit os)
|
(let ((os (operating-system (inherit os)
|
||||||
;; Since this is meant to be used on real hardware, don't set up
|
;; Since this is meant to be used on real hardware, don't
|
||||||
;; QEMU networking.
|
;; install QEMU networking or anything like that, but make sure
|
||||||
|
;; USB mass storage devices are available.
|
||||||
(initrd (cut base-initrd <>
|
(initrd (cut base-initrd <>
|
||||||
#:volatile-root? volatile?))
|
#:volatile-root? #t
|
||||||
|
#:extra-modules '("usb-storage.ko")))
|
||||||
|
|
||||||
;; Force our own root file system.
|
;; Force our own root file system.
|
||||||
(file-systems (cons (file-system
|
(file-systems (cons (file-system
|
||||||
|
|
Loading…
Reference in New Issue