gem5: renamame --gem5-src to --gem5-source

And fix outdated README references to --gem5-worktree.
This commit is contained in:
Ciro Santilli 六四事件 法轮功
2018-10-09 18:53:02 +01:00
parent 8815312cad
commit b6d00baac0
3 changed files with 9 additions and 9 deletions

View File

@@ -10674,17 +10674,17 @@ git clone https://my.private.repo.com/my-fork/gem5.git gem5-internal
gem5_internal="$(pwd)/gem5-internal"
....
Next, when you want to build with this repository, use the `--gem5-worktree-path` argument to point this repository to the private source code:
Next, when you want to build with this repository, use the `--gem5-source` argument to point this repository to the private source code:
....
cd linux-kernel-module-cheat
./build-gem5 \
--gem5-build-id private/master \
--gem5-worktree-path "$gem5_internal" \
--gem5-source "$gem5_internal" \
;
./run-gem5
./run-gem5 \
--gem5-build-id private/master \
--gem5-worktree-path "$gem5_internal" \
--gem5-source "$gem5_internal" \
;
....