gnu: linux-libre: Build more virtio modules.
* gnu/packages/linux.scm (linux-libre): Append CONFIG_NET_9P_VIRTIO and CONFIG_VIRTIO_{NET,BLK,BALLOON} to '.config'.
This commit is contained in:
parent
a7d46f12ac
commit
882f034fa8
|
@ -168,6 +168,17 @@
|
||||||
_ before after)
|
_ before after)
|
||||||
(string-append "CONFIG_" before "VIRTIO"
|
(string-append "CONFIG_" before "VIRTIO"
|
||||||
after "=m\n")))
|
after "=m\n")))
|
||||||
|
|
||||||
|
;; XXX: For some reason, some virtio modules need to be
|
||||||
|
;; explicitly added.
|
||||||
|
(let ((port (open-file ".config" "a")))
|
||||||
|
(display (string-append "CONFIG_NET_9P_VIRTIO=m\n"
|
||||||
|
"CONFIG_VIRTIO_NET=m\n"
|
||||||
|
"CONFIG_VIRTIO_BLK=m\n"
|
||||||
|
"CONFIG_VIRTIO_BALLOON=m\n")
|
||||||
|
port)
|
||||||
|
(close-port port))
|
||||||
|
|
||||||
(zero? (system* "make" "oldconfig")))
|
(zero? (system* "make" "oldconfig")))
|
||||||
|
|
||||||
;; Call the default `build' phase so `-j' is correctly
|
;; Call the default `build' phase so `-j' is correctly
|
||||||
|
|
Loading…
Reference in New Issue