From 9f5ac490372b81d9994b243cd00fa9e1baf2af2a Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Thu, 12 Dec 2019 08:23:19 -0500 Subject: [PATCH] moved F123Light.conf to stormux.conf and updated configuration parameters. --- build/build/{F123Light.conf => stormux.conf} | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) rename build/build/{F123Light.conf => stormux.conf} (87%) diff --git a/build/build/F123Light.conf b/build/build/stormux.conf similarity index 87% rename from build/build/F123Light.conf rename to build/build/stormux.conf index 4d07b04..f8ecaa5 100644 --- a/build/build/F123Light.conf +++ b/build/build/stormux.conf @@ -1,24 +1,24 @@ -# F123Light configuration +# Stormux configuration # The lines below, in key=value format, will set options to be passed to various stages of the image building process. # This file will be sourced by build.sh in the same directory, and can contain anything that a shell can execute. # The working directory where the new image is to be mounted - must be an absolute path -workdir=${PWD}/F123Light +workdir=${PWD}/stormux # The version number to be used with image names and filesystem labels version=$(date +%y.%m.%d) #The full path and filename of the Raspberry Pi image file -imagename="${PWD}/F123Light-pi4-${version}.img" +imagename="${PWD}/stormux-${version}.img" # The size of the image file in MB, for example 8192 will create an 8GB zero-filled image file imagesize=7168 # The volume label of the FAT32 filesystem on the boot partition - must be <= 11 bytes -bootlabel=F123-boot +bootlabel=stormux-boot # The volume label of the ext4 filesystem on the root partition - must be <= 16 bytes -rootlabel="F123Light${version//./}" +rootlabel="stormux${version//./}" # Set this on a graphical desktop that uses gsettings: MATE, GNOME, etc. # Remove or comment the line below if the image is to run in text mode with no desktop or window manager, or one that is not compatible with gsettings. @@ -28,19 +28,19 @@ rootlabel="F123Light${version//./}" packagelist="${PWD}/package_lists/packages.list" # The hostname of the new system -hostname=f123light +hostname=stormux # The root password rootpass=root # The name of the regular user -username=f123 +username=stormux # The regular user's password -userpass=f123 +userpass=stormux # All supported languages for this system -locales=('ar_EG.UTF-8' 'es_ES.UTF-8' 'en_US.UTF-8' 'pt_BR.UTF-8') +locales=('en_US.UTF-8' 'pt_BR.UTF-8') # The default system language, must be in the above list of available languages defaultlocale=en_US.UTF-8