2019-12-04 15:55:17 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
|
|
|
# This file is intended to be sourced into shell
|
|
|
|
|
2015-10-22 18:26:28 +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
|
2019-07-11 14:25:30 +00:00
|
|
|
test ! -r $(dirname $(readlink -f $0))/../.develconfig ||
|
|
|
|
. $(dirname $(readlink -f $0))/../.develconfig
|
2015-10-22 18:26:28 +00:00
|
|
|
|
|
|
|
# The config files must export variables in the shell style
|