[oe-commits] [openembedded-core] 02/46: runqemu: Automatically add a TFTP directory for slirp boot

git at git.openembedded.org git at git.openembedded.org
Tue May 16 13:09:04 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit a6bef2fa065f8bb74d0084e44dd0ca47d7859113
Author: Alistair Francis <alistair.francis at xilinx.com>
AuthorDate: Fri Mar 24 13:38:57 2017 -0700

    runqemu: Automatically add a TFTP directory for slirp boot
    
    When booting QEMU with slirp networking we want to use QEMUs TFTP server
    to make the images in deploy accessible to the guest.
    
    Signed-off-by: Alistair Francis <alistair.francis at xilinx.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 scripts/runqemu | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/runqemu b/scripts/runqemu
index f0ddeea..72c4176 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -844,7 +844,7 @@ class BaseConfig(object):
         self.kernel_cmdline_script += ' ip=dhcp'
         # Port mapping
         hostfwd = ",hostfwd=tcp::2222-:22,hostfwd=tcp::2323-:23"
-        qb_slirp_opt_default = "-netdev user,id=net0%s" % hostfwd
+        qb_slirp_opt_default = "-netdev user,id=net0%s,tftp=%s" % (hostfwd, self.get('DEPLOY_DIR_IMAGE'))
         qb_slirp_opt = self.get('QB_SLIRP_OPT') or qb_slirp_opt_default
         # Figure out the port
         ports = re.findall('hostfwd=[^-]*:([0-9]+)-[^,-]*', qb_slirp_opt)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list