2022-10-30 16:34:06 +00:00
|
|
|
#!/bin/sh -e
|
|
|
|
# Description: check all kernel configs with 'pmbootstrap kconfig check'
|
|
|
|
# Options: native
|
|
|
|
# Use 'native' because it requires running pmbootstrap.
|
2022-11-20 15:36:28 +00:00
|
|
|
# https://postmarketos.org/pmb-ci
|
2022-10-30 16:34:06 +00:00
|
|
|
|
|
|
|
if [ "$(id -u)" = 0 ]; then
|
|
|
|
set -x
|
|
|
|
wget "https://gitlab.com/postmarketOS/ci-common/-/raw/master/install_pmbootstrap.sh"
|
|
|
|
sh ./install_pmbootstrap.sh
|
|
|
|
exec su "${TESTUSER:-pmos}" -c "sh -e $0"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Wrap pmbootstrap to use this repository for --aports
|
2023-03-16 21:14:21 +00:00
|
|
|
pmaports="$(cd "$(dirname "$0")"/..; pwd -P)"
|
2022-10-30 16:34:06 +00:00
|
|
|
_pmbootstrap="$(command -v pmbootstrap)"
|
|
|
|
pmbootstrap() {
|
|
|
|
"$_pmbootstrap" --aports="$pmaports" "$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
set -x
|
|
|
|
pmbootstrap kconfig check
|