diff options
author | Matthias Maennich <maennich@google.com> | 2019-05-29 09:05:38 +0100 |
---|---|---|
committer | Matthias Maennich <maennich@google.com> | 2019-05-29 09:05:38 +0100 |
commit | d46fd323ff305a7ef638a4ea0d4c9164b4c31115 (patch) | |
tree | 4405a08cefb0bf5b0b48202b3335d6828c30e3eb /abi | |
parent | edbc774f1eed80d3dd1a386f92a4d1e6e0dd95f6 (diff) |
ABI out: Use the extension .xml rather then .out
Update all relevant locations including the documentation.
Bug: 133501930
Change-Id: I3cf207de381b248400c411730ac4890a3b1e3940
Signed-off-by: Matthias Maennich <maennich@google.com>
Diffstat (limited to 'abi')
-rw-r--r-- | abi/README.md | 4 | ||||
-rwxr-xr-x | abi/dump_abi | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/abi/README.md b/abi/README.md index b85a5d1..b8002e0 100644 --- a/abi/README.md +++ b/abi/README.md @@ -34,7 +34,7 @@ Provided a linux kernel tree with built vmlinux and kernel modules, the tool `dump_abi` creates an ABI representation using the selected abi tool. As of now there is only one option: 'libabigail' (default). A sample invocation looks as follows: - $ dump_abi --linux-tree path/to/out --out-file /path/to/abidump.out + $ dump_abi --linux-tree path/to/out --out-file /path/to/abi.xml To ensure a consistent environment and stable toolchain, a wrapper script is provided at the topmost directory of this project: `build_abi.sh`. It builds @@ -50,7 +50,7 @@ Comparing ABI dumps ABI dumps created by `dump_abi` can be compared with `diff_abi`. Ensure to use the same abi-tool for `dump_abi` and `diff_abi`. A sample invocation looks as follows: - $ diff_abi --baseline dump1.out --new dump2.out --report report.out + $ diff_abi --baseline abi1.xml --new abi2.xml --report report.out The report created is tool specific, but generally lists ABI changes detected that affect the Kernel's module interface. diff --git a/abi/dump_abi b/abi/dump_abi index 3791504..93ba3d5 100755 --- a/abi/dump_abi +++ b/abi/dump_abi @@ -41,7 +41,7 @@ def main(): dump_abi(args.abi_tool, args.linux_tree, - args.out_file or os.path.join(args.linux_tree, "abi.out")) + args.out_file or os.path.join(args.linux_tree, "abi.xml")) if __name__ == "__main__": sys.exit(main()) |