From 486d2c09682721ce0b15041602d89c4b0bae6039 Mon Sep 17 00:00:00 2001 From: Paul Spooren Date: Tue, 29 Dec 2020 13:11:04 -1000 Subject: [PATCH] scripts/qemustart: use squashfs instead of ext4 The qemustart script currently picks the ext4 filesystem rather than squashfs, while the latter is default for nearly all OpenWrt targets. Change the default behaviour of qemustart to be in line with the rest. Signed-off-by: Paul Spooren --- scripts/qemustart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/qemustart b/scripts/qemustart index dbb8deddaf..b5eb7ee6b2 100755 --- a/scripts/qemustart +++ b/scripts/qemustart @@ -255,7 +255,7 @@ start_qemu_x86() { local mach="${o_mach:-pc}" [ -n "$rootfs" ] || { - rootfs="$o_bindir/openwrt-$o_target-${o_subtarget%-*}-combined-ext4.img" + rootfs="$o_bindir/openwrt-$o_target-${o_subtarget%-*}-combined-squashfs.img" if [ ! -f "$rootfs" -a -s "$rootfs.gz" ]; then gunzip "$rootfs.gz" fi