From 0a0f34a9c66787d19f4cb015af7b14f47dbccfcc Mon Sep 17 00:00:00 2001 From: Ian Leonard Date: Tue, 14 Jul 2020 02:01:07 +0000 Subject: [PATCH] show_config: add information on storage fs and squashfs compression Signed-off-by: Ian Leonard --- config/show_config | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/config/show_config b/config/show_config index 82029ff957..58dddeb26c 100644 --- a/config/show_config +++ b/config/show_config @@ -61,6 +61,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:"