mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
Merge remote-tracking branch '2/master'
This commit is contained in:
@@ -1839,7 +1839,7 @@ We have ported the PARSEC benchmark http://parsec.cs.princeton.edu for cross com
|
|||||||
This repo makes it trivial to get started with it:
|
This repo makes it trivial to get started with it:
|
||||||
|
|
||||||
....
|
....
|
||||||
./build -a arm -g -i buildroot_config_fragment_parsec
|
configure -p && ./build -a arm -g -i buildroot_config_fragment_parsec
|
||||||
./run -a arm -g
|
./run -a arm -g
|
||||||
....
|
....
|
||||||
|
|
||||||
|
|||||||
7
configure
vendored
7
configure
vendored
@@ -1,9 +1,13 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -e
|
set -e
|
||||||
interactive_pkgs=libsdl2-dev
|
interactive_pkgs=libsdl2-dev
|
||||||
|
submodules='buildroot linux qemu gem5/gem5'
|
||||||
y=''
|
y=''
|
||||||
while getopts t OPT; do
|
while getopts pt OPT; do
|
||||||
case "$OPT" in
|
case "$OPT" in
|
||||||
|
p)
|
||||||
|
submodules="$submodules parsec-benchmark/parsec-benchmark"
|
||||||
|
;;
|
||||||
t)
|
t)
|
||||||
interactive_pkgs=''
|
interactive_pkgs=''
|
||||||
y='-y'
|
y='-y'
|
||||||
@@ -12,7 +16,6 @@ while getopts t OPT; do
|
|||||||
done
|
done
|
||||||
shift $(($OPTIND - 1))
|
shift $(($OPTIND - 1))
|
||||||
|
|
||||||
submodules='buildroot linux qemu gem5/gem5'
|
|
||||||
(
|
(
|
||||||
set -e
|
set -e
|
||||||
# Shallow cloning saves a considerable amount of time, specially because of the linux kernel.
|
# Shallow cloning saves a considerable amount of time, specially because of the linux kernel.
|
||||||
|
|||||||
Reference in New Issue
Block a user