blob: 783eece271dd8289c9e6d6e0162393c4365da34a [file] [log] [blame]
Guillaume La Roquebe2ffa12019-10-11 17:33:58 +02001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
Mattijs Korpershoek58d78312021-07-29 09:21:08 +02003 * Configuration for the SEI610
Guillaume La Roquebe2ffa12019-10-11 17:33:58 +02004 *
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;"
Guillaume La Roquebe2ffa12019-10-11 17:33:58 +020013#define ROOT_UUID "ddb8c3f6-d94d-4394-b633-3134139cc2e0;"
14
Mattijs Korpershoek941c1592021-08-05 17:17:26 +020015#define PARTS_DEFAULT \
16 "uuid_disk=${uuid_gpt_disk};" \
Guillaume La Roque33b51762021-08-05 17:17:28 +020017 "name=logo,start=512K,size=2M,uuid=" LOGO_UUID \
18 "name=misc,size=512K,uuid=${uuid_gpt_misc};" \
19 "name=dtbo,size=8M,uuid=${uuid_gpt_dtbo};" \
20 "name=vbmeta,size=512K,uuid=${uuid_gpt_vbmeta};" \
21 "name=boot,size=32M,bootable,uuid=${uuid_gpt_boot};" \
22 "name=recovery,size=32M,uuid=${uuid_gpt_recovery};" \
Mattijs Korpershoekddc8b222021-08-05 17:17:27 +020023 "name=cache,size=256M,uuid=${uuid_gpt_cache};" \
Guillaume La Roque33b51762021-08-05 17:17:28 +020024 "name=super,size=2304M,uuid=${uuid_gpt_super};" \
25 "name=userdata,size=12274M,uuid=${uuid_gpt_userdata};" \
Guillaume La Roquebe2ffa12019-10-11 17:33:58 +020026 "name=rootfs,size=-,uuid=" ROOT_UUID
27
28#include <configs/meson64_android.h>
29
30#endif /* __CONFIG_H */