|
@@ -33,6 +33,7 @@ show_config() {
|
|
|
config_message+="\n - GOLD (Google Linker) Support:\t ${GOLD_SUPPORT}"
|
|
|
config_message+="\n - MOLD (Modern Linker) Support:\t ${MOLD_SUPPORT}"
|
|
|
config_message+="\n - Default Linker:\t\t\t ${DEFAULT_LINKER}"
|
|
|
+ config_message+="\n - Accelerated arm libc functions:\t ${ARM_MEM_SUPPORT}"
|
|
|
config_message+="\n - LLVM support:\t\t\t ${LLVM_SUPPORT}"
|
|
|
config_message+="\n - DEBUG:\t\t\t\t ${DEBUG:-no}"
|
|
|
config_message+="\n - CFLAGS:\t\t\t\t ${TARGET_CFLAGS}"
|
|
@@ -62,6 +63,17 @@ show_config() {
|
|
|
config_message+="\n - Include firmware:\t\t\t ${config_firmware}"
|
|
|
done
|
|
|
|
|
|
+ # Image Filsystem
|
|
|
+
|
|
|
+ config_message+="\n\n Image Filesystems:"
|
|
|
+ config_message+="\n ${dashes}${dashes}"
|
|
|
+ config_message+="\n - Flash Size (MiB): \t\t\t ${SYSTEM_SIZE}"
|
|
|
+ config_message+="\n - Storage Size (MiB): \t\t\t ${STORAGE_SIZE}"
|
|
|
+ config_message+="\n - SquashFS Compression Method: \t ${SQUASHFS_COMPRESSION}"
|
|
|
+ if [ -n "${SQUASHFS_COMPRESSION_OPTION}" ]; then
|
|
|
+ config_message+="\n - SquashFS Compression Options: \t ${SQUASHFS_COMPRESSION_OPTION}"
|
|
|
+ fi
|
|
|
+
|
|
|
# Misc. Filesystems
|
|
|
|
|
|
config_message+="\n\n Misc. Filesystems:"
|