Demi Marie Obenour writes: > These could affect the script. > > Signed-off-by: Demi Marie Obenour > --- > scripts/run-qemu.sh | 7 +++++-- > 1 file changed, 5 insertions(+), 2 deletions(-) Makes sense. > diff --git a/scripts/run-qemu.sh b/scripts/run-qemu.sh > index 14c58729dfceb3a0d2566fcfe076d6c10433419f..ba32467956a509b1744ade461f2fe5f20ae7a5b9 100755 > --- a/scripts/run-qemu.sh > +++ b/scripts/run-qemu.sh > @@ -9,12 +9,15 @@ if [ -n ${ARCH+test} ]; then > ARCH=$(uname -m) > fi > > +unset kernel > + Would be clearer if this was attached to the for loop that actually sets kernel, I think. Then as I reader I don't need to keep it in my head for as long. (I can make this change and commit if you agree.)