forked from tokland/arch-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.txt
49 lines (41 loc) · 1.91 KB
/
manifest.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# 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="ArchLinux"
# Installation text, it is displayed in recovery during installation.
# Use \n to make newlines
install_text="Arch Linux installer\n=============================="
# 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"
# 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:550:2000"