From 9bc5b38884f367c23789d3c36eebdaa2d0ae4a72 Mon Sep 17 00:00:00 2001 From: Ian Leonard Date: Mon, 21 Jun 2021 00:09:38 +0000 Subject: [PATCH] show_config: add information on TARGET_KERNEL_ARCH Signed-off-by: Ian Leonard --- config/show_config | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/show_config b/config/show_config index 79e4b0c61e..6c46991f34 100755 --- a/config/show_config +++ b/config/show_config @@ -14,7 +14,9 @@ show_config() { config_message+="\n\n Buildsystem configuration:" config_message+="\n $dashes$dashes" - config_message+="\n - CPU (ARCH):\t\t\t\t $TARGET_CPU ($TARGET_ARCH)" + config_message+="\n - CPU:\t\t\t\t\t $TARGET_CPU" + config_message+="\n - Kernel Architecture:\t\t\t $TARGET_KERNEL_ARCH" + config_message+="\n - Userland Architecture:\t\t $TARGET_ARCH" config_message+="\n - FLOAT:\t\t\t\t $TARGET_FLOAT" if [ -n "${TARGET_FPU}" ]; then config_message+="\n - FPU:\t\t\t\t\t ${TARGET_FPU}"