mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
Otherwise, checking out branches is too insane, as it does not update the worktrees, even though the gem5/gem5 module was updated. gem5: expose build types, document debug builds. simultaneous runs: store stdout and stderr on a file to allow running all from a single terminal on the background cleanly.
8 lines
113 B
Bash
Executable File
8 lines
113 B
Bash
Executable File
#!/bin/sh
|
|
m5 checkpoint
|
|
script=/tmp/readfile
|
|
m5 readfile > "$script"
|
|
if [ -s "$script" ]; then
|
|
sh "$script"
|
|
fi
|