From de6ee8b161bdae6c647c462cdcf240beb0e58641 Mon Sep 17 00:00:00 2001 From: humpty99 <121161900+humpty99@users.noreply.github.com> Date: Wed, 21 Dec 2022 21:29:42 +1000 Subject: [PATCH] Fix Nyx build script (#965) due to the call to pushd on line 23 not being directed at packer, the wrong commit was being used and so that resulted in the wrong init.cpio.gz being generated which hangs when trying to run the libxml2 examples however using the right commit (86b159bafc0b2ba8feeaa8761a45b6201d34084f) fixes this problem. --- libafl_nyx/build_nyx_support.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libafl_nyx/build_nyx_support.sh b/libafl_nyx/build_nyx_support.sh index 43f7570ae1..f8d0130782 100755 --- a/libafl_nyx/build_nyx_support.sh +++ b/libafl_nyx/build_nyx_support.sh @@ -20,7 +20,7 @@ fi if [ ! -e ./packer/.git ]; then rm -rf ./packer git clone https://github.com/syheliel/packer.git || exit 1 - pushd QEMU-Nyx + pushd packer git reset --hard 86b159bafc0b2ba8feeaa8761a45b6201d34084f popd fi