From 57b82cb8fdd7b77786f0f4607e779eeb72fe047a Mon Sep 17 00:00:00 2001 From: Marc Herbert Date: Wed, 18 Dec 2024 14:24:45 -0800 Subject: [PATCH] HACK: drop -F System.map parameter See #88 --- run_qemu.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run_qemu.sh b/run_qemu.sh index 71be589..b80cc77 100755 --- a/run_qemu.sh +++ b/run_qemu.sh @@ -852,11 +852,11 @@ setup_depmod() fi if [ ! -f "$system_map" ]; then echo "not found: $system_map. Try rebuilding with '-r img'" - return 1 + # return 1 fi : Warning: symlinks created by this depmod do not survive the move : to the virtual machine - sudo depmod -b "$prefix" -F "$system_map" -C "$depmod_dir" "$kver" + sudo depmod -b "$prefix" -C "$depmod_dir" "$kver" } __update_existing_rootfs()