50 lines
2.0 KiB
Plaintext
50 lines
2.0 KiB
Plaintext
# This file contains info for recovery installation process
|
|
# Should be placed in root of installation zip file and must be
|
|
# named "manifest.txt".
|
|
# Make sure you got the syntax correct, as the parser is probably pretty
|
|
# dumb. Lines with comments must start with #. Beware the whitespaces.
|
|
# If you need to use " character in string, just use it, no need to escape it
|
|
# MultiROM searches for first and last " on the line.
|
|
# These comments should not be deleted.
|
|
|
|
# Manifest version
|
|
manifest_ver="1"
|
|
|
|
# Min MultiROM version
|
|
min_mrom_ver="5"
|
|
|
|
# Supported devices codenames. These are checked against
|
|
# ro.product.device property
|
|
devices="grouper tilapia"
|
|
|
|
# ROM name. If not specified, name of the installation file is used,
|
|
# which is recommmended. Don't use spaces.
|
|
#rom_name="Generic_ROM"
|
|
|
|
# Installation text, it is displayed in recovery during installation.
|
|
# 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"
|
|
|
|
# Enable installation to internal ext4 memory
|
|
enable_internal="1"
|
|
|
|
# USB flash drive installation, set to empty string to disable.
|
|
# You can install to either subdirectory or ext4 disk image.
|
|
# Subdirectory is prefered.
|
|
# usb_dir_fs - list of supported fs types
|
|
# 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.
|
|
# There can only be maximum of 5 base folders!
|
|
# 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,
|
|
# you probably want "cache", "system" and "data"
|
|
# 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
|
|
# to image.
|
|
# Syntax: name:MIN:DEFAULT name2:MIN:DEFAULT ...
|
|
# Example: base_folders="data:50:1024 system:450:640 cache:50:450"
|
|
base_folders="root:1000:1500"
|