f-stack/dpdk/devtools/load-devel-config

17 lines
511 B
Plaintext
Raw Normal View History

2021-02-05 08:48:47 +00:00
# SPDX-License-Identifier: BSD-3-Clause
# This file is intended to be sourced into shell
2017-04-21 10:43:26 +00:00
# Load DPDK devel config and allow override
# from system file
test ! -r /etc/dpdk/devel.config ||
. /etc/dpdk/devel.config
# from user file
test ! -r ~/.config/dpdk/devel.config ||
. ~/.config/dpdk/devel.config
# from local file
2020-06-18 16:55:50 +00:00
test ! -r $(dirname $(readlink -f $0))/../.develconfig ||
. $(dirname $(readlink -f $0))/../.develconfig
2017-04-21 10:43:26 +00:00
# The config files must export variables in the shell style