ANDROID: refactor build.config files to remove duplication
The build.config.* files largely contain duplicate information by their nature. Reorganize them reduce duplication and to allow adding new configurations without copying the definitions again. Bug: 140224784 Change-Id: I6a3810a125b0ed48591690ca33bb5c02be58218a Signed-off-by: Matthias Maennich <maennich@google.com> (cherry picked from commit 7d642373db4c6c1c6ed8af02492047896beb4a47)
This commit is contained in:
parent
93ec8fb82c
commit
b6aeea3bff
5 changed files with 37 additions and 28 deletions
11
build.config.aarch64
Normal file
11
build.config.aarch64
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
ARCH=arm64
|
||||||
|
|
||||||
|
CLANG_TRIPLE=aarch64-linux-gnu-
|
||||||
|
CROSS_COMPILE=aarch64-linux-androidkernel-
|
||||||
|
LINUX_GCC_CROSS_COMPILE_PREBUILTS_BIN=prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/bin
|
||||||
|
|
||||||
|
FILES="
|
||||||
|
arch/arm64/boot/Image.gz
|
||||||
|
vmlinux
|
||||||
|
System.map
|
||||||
|
"
|
9
build.config.common
Normal file
9
build.config.common
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
BRANCH=android-4.4-p
|
||||||
|
KERNEL_DIR=common
|
||||||
|
|
||||||
|
CC=clang
|
||||||
|
CLANG_PREBUILT_BIN=prebuilts-master/clang/host/linux-x86/clang-r353983c/bin
|
||||||
|
BUILDTOOLS_PREBUILT_BIN=build/build-tools/path/linux-x86
|
||||||
|
|
||||||
|
EXTRA_CMDS=''
|
||||||
|
STOP_SHIP_TRACEPRINTK=1
|
|
@ -1,16 +1,5 @@
|
||||||
ARCH=arm64
|
. ${ROOT_DIR}/common/build.config.common
|
||||||
BRANCH=android-4.4
|
. ${ROOT_DIR}/common/build.config.aarch64
|
||||||
CLANG_TRIPLE=aarch64-linux-gnu-
|
|
||||||
CROSS_COMPILE=aarch64-linux-androidkernel-
|
|
||||||
DEFCONFIG=cuttlefish_defconfig
|
DEFCONFIG=cuttlefish_defconfig
|
||||||
EXTRA_CMDS=''
|
|
||||||
KERNEL_DIR=common
|
|
||||||
POST_DEFCONFIG_CMDS="check_defconfig"
|
POST_DEFCONFIG_CMDS="check_defconfig"
|
||||||
CLANG_PREBUILT_BIN=prebuilts-master/clang/host/linux-x86/clang-r353983c/bin
|
|
||||||
LINUX_GCC_CROSS_COMPILE_PREBUILTS_BIN=prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/bin
|
|
||||||
FILES="
|
|
||||||
arch/arm64/boot/Image.gz
|
|
||||||
vmlinux
|
|
||||||
System.map
|
|
||||||
"
|
|
||||||
STOP_SHIP_TRACEPRINTK=1
|
|
||||||
|
|
|
@ -1,16 +1,5 @@
|
||||||
ARCH=x86_64
|
. ${ROOT_DIR}/common/build.config.common
|
||||||
BRANCH=android-4.4
|
. ${ROOT_DIR}/common/build.config.x86_64
|
||||||
CLANG_TRIPLE=x86_64-linux-gnu-
|
|
||||||
CROSS_COMPILE=x86_64-linux-androidkernel-
|
|
||||||
DEFCONFIG=x86_64_cuttlefish_defconfig
|
DEFCONFIG=x86_64_cuttlefish_defconfig
|
||||||
EXTRA_CMDS=''
|
|
||||||
KERNEL_DIR=common
|
|
||||||
POST_DEFCONFIG_CMDS="check_defconfig"
|
POST_DEFCONFIG_CMDS="check_defconfig"
|
||||||
CLANG_PREBUILT_BIN=prebuilts-master/clang/host/linux-x86/clang-r353983c/bin
|
|
||||||
LINUX_GCC_CROSS_COMPILE_PREBUILTS_BIN=prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/bin
|
|
||||||
FILES="
|
|
||||||
arch/x86/boot/bzImage
|
|
||||||
vmlinux
|
|
||||||
System.map
|
|
||||||
"
|
|
||||||
STOP_SHIP_TRACEPRINTK=1
|
|
||||||
|
|
11
build.config.x86_64
Normal file
11
build.config.x86_64
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
ARCH=x86_64
|
||||||
|
|
||||||
|
CLANG_TRIPLE=x86_64-linux-gnu-
|
||||||
|
CROSS_COMPILE=x86_64-linux-androidkernel-
|
||||||
|
LINUX_GCC_CROSS_COMPILE_PREBUILTS_BIN=prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/bin
|
||||||
|
|
||||||
|
FILES="
|
||||||
|
arch/x86/boot/bzImage
|
||||||
|
vmlinux
|
||||||
|
System.map
|
||||||
|
"
|
Loading…
Add table
Reference in a new issue