You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
392 B
12 lines
392 B
#! /bin/bash |
|
|
|
#echo "DEBUG: kconfiglib kconfig-tweak wrapper, arguments: ${@}" |
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" |
|
|
|
export APPSDIR="`pwd`/../apps" |
|
|
|
# Example: |
|
# kconfig-tweak --set-str CONFIG_APPS_DIR ../apps |
|
# becomes |
|
# python setconfig.py CONFIG_APPS_DIR=../apps |
|
PYTHONPATH=${DIR} python ${DIR}/setconfig.py --kconfig=Kconfig ${2}=${3} > /dev/null
|
|
|