2019-10-11 15:33:58 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
|
|
/*
|
2021-07-29 07:21:08 +00:00
|
|
|
* Configuration for the SEI610
|
2019-10-11 15:33:58 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2019 Baylibre, SAS
|
|
|
|
* Author: Jerome Brunet <jbrunet@baylibre.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
|
|
|
#define LOGO_UUID "43a3305d-150f-4cc9-bd3b-38fca8693846;"
|
|
|
|
#define ROOT_UUID "ddb8c3f6-d94d-4394-b633-3134139cc2e0;"
|
|
|
|
|
2021-08-05 15:17:26 +00:00
|
|
|
#define PARTS_DEFAULT \
|
|
|
|
"uuid_disk=${uuid_gpt_disk};" \
|
2021-08-05 15:17:28 +00:00
|
|
|
"name=logo,start=512K,size=2M,uuid=" LOGO_UUID \
|
|
|
|
"name=misc,size=512K,uuid=${uuid_gpt_misc};" \
|
|
|
|
"name=dtbo,size=8M,uuid=${uuid_gpt_dtbo};" \
|
|
|
|
"name=vbmeta,size=512K,uuid=${uuid_gpt_vbmeta};" \
|
|
|
|
"name=boot,size=32M,bootable,uuid=${uuid_gpt_boot};" \
|
|
|
|
"name=recovery,size=32M,uuid=${uuid_gpt_recovery};" \
|
2021-08-05 15:17:27 +00:00
|
|
|
"name=cache,size=256M,uuid=${uuid_gpt_cache};" \
|
2021-08-05 15:17:28 +00:00
|
|
|
"name=super,size=2304M,uuid=${uuid_gpt_super};" \
|
|
|
|
"name=userdata,size=12274M,uuid=${uuid_gpt_userdata};" \
|
2019-10-11 15:33:58 +00:00
|
|
|
"name=rootfs,size=-,uuid=" ROOT_UUID
|
|
|
|
|
|
|
|
#include <configs/meson64_android.h>
|
|
|
|
|
|
|
|
#endif /* __CONFIG_H */
|