Installer: specify supported USB drive filesystems

This commit is contained in:
Vojtech Bocek
2013-04-02 19:11:26 +02:00
parent cf06cbe514
commit 2877bbf944

View File

@@ -25,21 +25,23 @@ devices="grouper tilapia"
# Use \n to make newlines # Use \n to make newlines
install_text="Generic ROM 1.2.3.4\nWelcome to Generic ROM!\n\n This installation process may take a while" install_text="Generic ROM 1.2.3.4\nWelcome to Generic ROM!\n\n This installation process may take a while"
# Available install locations, "1" means it can be installed to that location # Enable installation to internal ext4 memory
# You usually want all of these enable_internal="1"
# loc_internal - Internal memory
# loc_usb_dir - USB drive with extX filesystem # USB flash drive installation, set to empty string to disable.
# loc_usb_img - USB drive with FAT32/NTFS filesystem, so ext4 images are used # You can install to either subdirectory or ext4 disk image.
loc_internal="1" # Subdirectory is prefered.
loc_usb_dir="1" # usb_dir_fs - list of supported fs types
loc_usb_img="1" # usb_img_fs - list of supported underlaying fs types, images are always ext4
usb_dir_fs="ext2 ext3 ext4"
usb_img_fs="vfat ntfs"
# ROM base folders - the ones in root of ROM folder. # ROM base folders - the ones in root of ROM folder.
# There can only be maximum of 5 base folders! # There can only be maximum of 5 base folders!
# If USB drive w/ FAT32/NTFS image is used, each of these is separate image. # If USB drive with filesystem for images is used, each of these is ext4 image
# If this is a Linux ROM, you usually want just "root". If it is Android-based, # If this is a Linux ROM, you usually want just "root". If it is Android-based,
# you probably want "cache", "system" and "data" # you probably want "cache", "system" and "data"
# Specify also min and default size of the image craeted for FAT32/NTFS drives # Specify also min and default size of the image created for USB drives
# in megabytes. Min value is used to check free space if it is not installed # in megabytes. Min value is used to check free space if it is not installed
# to image. # to image.
# Syntax: name:MIN:DEFAULT name2:MIN:DEFAULT ... # Syntax: name:MIN:DEFAULT name2:MIN:DEFAULT ...