From: Nathan Rossi Date: Thu, 22 Sep 2016 13:53:01 +0000 (+1000) Subject: scripts/runqemu: Using a cpio* rootfs has no special network X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~24109 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=7d01a9c80de0cdbac3831301dd996c7b61754c74;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git scripts/runqemu: Using a cpio* rootfs has no special network When booting a system with the rootfs being of cpio* type the networking setup should still work the same as for all other root filesystem types. This change removes the clearing of the NETWORK_CMD variable allowing for the slirp/tap setup to be provided to QEMU. Signed-off-by: Nathan Rossi Signed-off-by: Ross Burton --- diff --git a/scripts/runqemu b/scripts/runqemu index 2ed6f9a26e9..5095e67817b 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -821,7 +821,6 @@ class BaseConfig(object): self.rootfs_options = '-drive file=%s,if=virtio,format=raw' % self.rootfs if self.fstype in ('cpio.gz', 'cpio'): - self.set('NETWORK_CMD', '') self.kernel_cmdline = 'root=/dev/ram0 rw debugshell' self.rootfs_options = '-initrd %s' % self.rootfs else: