From 473e97f66c694b15367df8010bd19e427e813604 Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Fri, 9 Jun 2023 12:02:20 +0000 Subject: [PATCH] ANDROID: add Android KABI build files to root .gitignore file The Android kernel build modifications creates two new files in the root of the source directory that should not be tracked by git: abi_gki_protected_exports all_kmi_symbols so add them to the root .gitignore file so that we do not accidentally check them into the tree. Bug: 200082547 Change-Id: I060f11c120ed3d5b9bc22ab1473f40b94a68c91e Signed-off-by: Greg Kroah-Hartman --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 5da004814678..861843bdf7b8 100644 --- a/.gitignore +++ b/.gitignore @@ -168,3 +168,7 @@ sphinx_*/ # Rust analyzer configuration /rust-project.json + +# Android ABI build files +abi_gki_protected_exports +all_kmi_symbols