devtools: move ABI scripts from buildtools
Those scripts are only used by developers and not part of the build process. Move them to devtools so they are not installed. Signed-off-by: David Marchand <david.marchand@redhat.com> Acked-by: Thomas Monjalon <thomas@monjalon.net>
This commit is contained in:
parent
51b9292ee0
commit
b09afc2ad8
@ -143,13 +143,13 @@ M: Neil Horman <nhorman@tuxdriver.com>
|
|||||||
F: lib/librte_eal/common/include/rte_compat.h
|
F: lib/librte_eal/common/include/rte_compat.h
|
||||||
F: lib/librte_eal/common/include/rte_function_versioning.h
|
F: lib/librte_eal/common/include/rte_function_versioning.h
|
||||||
F: doc/guides/rel_notes/deprecation.rst
|
F: doc/guides/rel_notes/deprecation.rst
|
||||||
F: devtools/validate-abi.sh
|
F: devtools/check-abi-version.sh
|
||||||
F: devtools/check-symbol-change.sh
|
F: devtools/check-symbol-change.sh
|
||||||
F: buildtools/check-abi-version.sh
|
F: devtools/update-abi.sh
|
||||||
|
F: devtools/update_version_map_abi.py
|
||||||
|
F: devtools/validate-abi.sh
|
||||||
F: buildtools/check-experimental-syms.sh
|
F: buildtools/check-experimental-syms.sh
|
||||||
F: buildtools/map-list-symbol.sh
|
F: buildtools/map-list-symbol.sh
|
||||||
F: buildtools/update-abi.sh
|
|
||||||
F: buildtools/update_version_map_abi.py
|
|
||||||
|
|
||||||
Driver information
|
Driver information
|
||||||
M: Neil Horman <nhorman@tuxdriver.com>
|
M: Neil Horman <nhorman@tuxdriver.com>
|
||||||
|
@ -42,5 +42,5 @@ echo "Path to update:" $update_path
|
|||||||
echo $abi_version > $abi_version_file
|
echo $abi_version > $abi_version_file
|
||||||
|
|
||||||
find $update_path -name \*version.map -exec \
|
find $update_path -name \*version.map -exec \
|
||||||
./buildtools/update_version_map_abi.py {} \
|
devtools/update_version_map_abi.py {} \
|
||||||
$abi_version \; -print
|
$abi_version \; -print
|
@ -6,7 +6,7 @@
|
|||||||
A Python program that updates and merges all available stable ABI versions into
|
A Python program that updates and merges all available stable ABI versions into
|
||||||
one ABI version, while leaving experimental ABI exactly as it is. The intended
|
one ABI version, while leaving experimental ABI exactly as it is. The intended
|
||||||
ABI version is supplied via command-line parameter. This script is to be called
|
ABI version is supplied via command-line parameter. This script is to be called
|
||||||
from the buildtools/update-abi.sh utility.
|
from the devtools/update-abi.sh utility.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
Loading…
Reference in New Issue
Block a user