mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
19 lines
373 B
Bash
Executable File
19 lines
373 B
Bash
Executable File
#!/usr/bin/env bash
|
|
. common
|
|
while getopts M:n: OPT; do
|
|
case "$OPT" in
|
|
M)
|
|
common_gem5_variant="$OPTARG"
|
|
;;
|
|
n)
|
|
common_run_id="$OPTARG"
|
|
;;
|
|
?)
|
|
exit 2
|
|
;;
|
|
esac
|
|
done
|
|
shift "$(($OPTIND - 1))"
|
|
set_common_vars -M "$common_gem5_variant" -n "$common_run_id" "$arch" true
|
|
"${common_gem5_m5term}" localhost "$common_gem5_telnet_port"
|