Skip to content

Commit

Permalink
modify workshop.json to only build x86 specific kernel tools on x86 e…
Browse files Browse the repository at this point in the history
…nvironments
  • Loading branch information
k-rister committed Sep 20, 2024
1 parent 4341cf2 commit c8d8c30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workshop.json
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@
"get_dir": "tar -tf linux.tar.xz | head -n 1",
"commands": [
"cd tools/perf; make -j32 install prefix=/usr/",
"cd tools/power/x86/turbostat; make install prefix=/usr/",
"cd tools/power/x86/intel-speed-select; make install prefix=/usr/",
"if [ \"$(uname -m)\" == \"x86_64\" ]; then cd tools/power/x86/turbostat; make install prefix=/usr/; else echo 'Skipping turbostat build since not x86'; fi",
"if [ \"$(uname -m)\" == \"x86_64\" ]; then cd tools/power/x86/intel-speed-select; make install prefix=/usr/; else echo 'Skipping intel-speed-select build since not x86'; fi",
"rm -rf *"
]
}
Expand Down

0 comments on commit c8d8c30

Please sign in to comment.