This repository has been archived by the owner on Feb 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 434
/
config.h
59 lines (43 loc) · 1.91 KB
/
config.h
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
50
51
52
53
54
55
56
57
58
59
#ifndef CONFIG_H
#define CONFIG_H
/* Version number displayed in the title bar */
#define VERSION_NUMBER "3.8"
/* Color of the background */
// #define BACKGROUND_COLOR Qt::white
#define BACKGROUND_COLOR QColor(0xde, 0xde, 0xde)
/* Highlight color of installed OS */
#define INSTALLED_OS_BACKGROUND_COLOR QColor(0xef,0xff,0xef)
/* Places background.png resource file in center of screen */
#define CENTER_BACKGROUND_IMAGE
/* Enable language selection */
#define ENABLE_LANGUAGE_CHOOSER
/* Website launched when launching Arora */
#define HOMEPAGE "http://www.raspberrypi.org/help/"
/* Location to download the list of available distributions from
* Multiple lists can be specified by space separating the URLs */
#define DEFAULT_REPO_SERVER "http://downloads.raspberrypi.org/os_list_v3.json"
/* Size of recovery FAT partition in MB when using reformat drive initialization method. */
#define RESCUE_PARTITION_SIZE 63
/* Files that are currently on the FAT partition are normally saved to memory during
* repartitioning.
* If files they are larger than number of MB, try resizing the FAT partition instead */
#define MAXIMUM_BOOTFILES_SIZE 64
/* Partitioning settings */
#define PARTITION_ALIGNMENT 8192
#define PARTITION_GAP 2
/* Allow partitions to be shrunk PARTITION_GAP sectors
if that prevents having a 4 MiB gap between the next one */
#define SHRINK_PARTITIONS_TO_MINIMIZE_GAPS
#define SETTINGS_PARTNR 5
#define SETTINGS_PARTITION_SIZE (32 * 2048 - PARTITION_GAP)
/* If the image name matches this exactly, mark it as recommended */
#define RECOMMENDED_IMAGE "Raspberry Pi OS Full (32-bit)"
/* RiscOS magic */
#define RISCOS_OFFSET_KEY "riscos_offset"
#define RISCOS_OFFSET (1760)
#define RISCOS_SECTOR_OFFSET (RISCOS_OFFSET * 2048)
#define RISCOS_BLOB_FILENAME "/mnt/riscos-boot.bin"
#define RISCOS_BLOB_SECTOR_OFFSET (1)
/* Maximum number of partitions */
#define MAXIMUM_PARTITIONS 32
#endif // CONFIG_H