1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Configuration for the SEI610 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 ROOT_UUID "ddb8c3f6-d94d-4394-b633-3134139cc2e0;" 14 15 #define PARTS_DEFAULT \ 16 "uuid_disk=${uuid_gpt_disk};" \ 17 "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};" \ 23 "name=cache,size=256M,uuid=${uuid_gpt_cache};" \ 24 "name=super,size=2304M,uuid=${uuid_gpt_super};" \ 25 "name=userdata,size=12274M,uuid=${uuid_gpt_userdata};" \ 26 "name=rootfs,size=-,uuid=" ROOT_UUID 27 28 #include <configs/meson64_android.h> 29 30 #endif /* __CONFIG_H */ 31