We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d59ce64 commit d520ecbCopy full SHA for d520ecb
src/x86-ubuntu/files/after_boot.sh
@@ -28,13 +28,13 @@ fi
28
printf "Interactive mode: $interactive\n"
29
30
if [[ $interactive == true ]]; then
31
- printf "Interactive mode enabled, dropping to shell."
+ printf "Interactive mode enabled, dropping to shell.\n"
32
/bin/bash
33
else
34
# Try to read the file from the host when running with gem5
35
if ! [ -z $IGNORE_M5 ]; then
36
printf "Starting gem5 init... trying to read run script file via readfile.\n"
37
- if ! gem5-bridge readfile > /tmp/script; then
+ if ! cat /dev/gem5/readfile > /tmp/script; then
38
printf "Failed to run gem5-bridge readfile, exiting!\n"
39
rm -f /tmp/script
40
# If we can't read the script exit the simulation. If we cannot exit the
0 commit comments