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.
15 lines
364 B
15 lines
364 B
6 years ago
|
#! /bin/bash
|
||
|
|
||
|
echo "DEBUG: kconfiglib kconfig-conf wrapper, arguments: ${@}"
|
||
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
||
|
|
||
|
export APPSDIR="`pwd`/../apps"
|
||
|
export CONFIG_ARCH_BOARD_CUSTOM=y
|
||
|
|
||
|
if [ "${1}" = "--olddefconfig" ]; then
|
||
|
PYTHONPATH=${DIR} python ${DIR}/olddefconfig.py > /dev/null
|
||
|
else
|
||
|
echo "ERROR: ${@} unsupported"
|
||
|
exit 1
|
||
|
fi
|