[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#41961] [PATCH 1/1] services: childhurd: Support more than one insta
From: |
Mathieu Othacehe |
Subject: |
[bug#41961] [PATCH 1/1] services: childhurd: Support more than one instance. |
Date: |
Sun, 21 Jun 2020 11:44:18 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) |
> Hmm...yes, this looked a bit awkward to me too. It's being used like
> this:
>
> o--8<---------------cut here---------------start------------->8---
> (let ((image (hurd-vm-configuration-image config))
> ...)
> (define vm-command
> #~(list
> (string-append #$qemu "/bin/qemu-system-i386")
> #$@(if (file-exists? "/dev/kvm") '("--enable-kvm") '())
> "-m" (number->string #$memory-size)
> #$@net-options
> #$@options
> #+image))
What about having something like:
--8<---------------cut here---------------start------------->8---
(define vm-command
#~(list
(string-append #$qemu "/bin/qemu-system-i386")
#$@(if (file-exists? "/dev/kvm") '("--enable-kvm") '())
"-m" (number->string #$memory-size)
#$@options
#+@(list "--hda" image)))
--8<---------------cut here---------------end--------------->8---
instead?
> to fix parameterize the ports for QEMU. Is there a better way to do
> that?
Oh I see, then it's fine I guess.
Thanks,
Mathieu