mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-26 03:31:36 +01:00
15 lines
362 B
Bash
Executable File
15 lines
362 B
Bash
Executable File
#!/usr/bin/env bash
|
|
. "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/common"
|
|
common_gem5=true
|
|
parsed=$(getopt -o "${common_getopt_flags}" -l "$common_getopt_flags_long" -- "$@")
|
|
eval set -- "$parsed"
|
|
while true; do
|
|
case "$1" in
|
|
*)
|
|
common_getopt_case "$@"
|
|
;;
|
|
esac
|
|
done
|
|
common_setup
|
|
"${common_gem5_m5term}" localhost "$common_gem5_telnet_port"
|