Guillaume La Roque | be2ffa1 | 2019-10-11 17:33:58 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Configuration for the SEI510 |
| 4 | * |
| 5 | * Copyright (C) 2019 Baylibre, SAS |
| 6 | * Author: Jerome Brunet <jbrunet@baylibre.com> |
| 7 | */ |
| 8 | |
| 9 | #ifndef __CONFIG_H |
| 10 | #define __CONFIG_H |
| 11 | |
| 12 | #define LOGO_UUID "43a3305d-150f-4cc9-bd3b-38fca8693846;" |
| 13 | #define CACHE_UUID "99207ae6-5207-11e9-999e-6f77a3612069;" |
| 14 | #define SYSTEM_UUID "99f9b7ac-5207-11e9-8507-c3c037e393f3;" |
| 15 | #define VENDOR_UUID "9d082802-5207-11e9-954c-cbbce08ba108;" |
| 16 | #define USERDATA_UUID "9b976e42-5207-11e9-8f16-ff47ac594b22;" |
| 17 | #define ROOT_UUID "ddb8c3f6-d94d-4394-b633-3134139cc2e0;" |
| 18 | |
| 19 | #define PARTS_DEFAULT \ |
| 20 | "uuid_disk=${uuid_gpt_disk};" \ |
| 21 | "name=boot,size=64M,bootable,uuid=${uuid_gpt_boot};" \ |
| 22 | "name=logo,size=2M,uuid=" LOGO_UUID \ |
| 23 | "name=cache,size=256M,uuid=" CACHE_UUID \ |
| 24 | "name=system,size=1536M,uuid=" SYSTEM_UUID \ |
| 25 | "name=vendor,size=256M,uuid=" VENDOR_UUID \ |
| 26 | "name=userdata,size=12795M,uuid=" USERDATA_UUID \ |
| 27 | "name=rootfs,size=-,uuid=" ROOT_UUID |
| 28 | |
| 29 | #include <configs/meson64_android.h> |
| 30 | |
| 31 | #endif /* __CONFIG_H */ |