forked from intel/lkp-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Fengguang Wu <[email protected]>
- Loading branch information
Fengguang Wu
committed
Aug 31, 2016
1 parent
2c49d73
commit 828e149
Showing
3 changed files
with
47 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
[ -n "$LKP_SRC" ] || LKP_SRC=$(dirname $(dirname $(readlink -e -v $0))) | ||
|
||
rootfs=$1 | ||
[[ $rootfs ]] || rootfs=$(readlink -e /osimage/debian/latest) | ||
[[ $rootfs ]] || { | ||
echo "What rootfs should I build packages for?" | ||
exit 1 | ||
} | ||
|
||
. $LKP_SRC/distro/common | ||
|
||
# create cgz for the below jobs first, to avoid circular dependency | ||
$LKP_SRC/sbin/pack-deps $rootfs pack-deps || exit | ||
$LKP_SRC/sbin/pack-deps $rootfs pack || exit | ||
|
||
queue pack-deps.yaml rootfs=$rootfs benchmark="$(show_deps_list)" | ||
queue pack.yaml rootfs=$rootfs benchmark="$(show_pack_list)" |