moved F123Light.conf to stormux.conf and updated configuration parameters.

This commit is contained in:
Storm Dragon 2019-12-12 08:23:19 -05:00
parent e368104914
commit 9f5ac49037

View File

@ -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. # 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. # 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 # 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 # The version number to be used with image names and filesystem labels
version=$(date +%y.%m.%d) version=$(date +%y.%m.%d)
#The full path and filename of the Raspberry Pi image file #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 # The size of the image file in MB, for example 8192 will create an 8GB zero-filled image file
imagesize=7168 imagesize=7168
# The volume label of the FAT32 filesystem on the boot partition - must be <= 11 bytes # 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 # 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. # 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. # 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" packagelist="${PWD}/package_lists/packages.list"
# The hostname of the new system # The hostname of the new system
hostname=f123light hostname=stormux
# The root password # The root password
rootpass=root rootpass=root
# The name of the regular user # The name of the regular user
username=f123 username=stormux
# The regular user's password # The regular user's password
userpass=f123 userpass=stormux
# All supported languages for this system # 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 # The default system language, must be in the above list of available languages
defaultlocale=en_US.UTF-8 defaultlocale=en_US.UTF-8