blob: 7affc3e448f45eb5ec134a767c209cdcb445d4f4 [file] [log] [blame]
Mattijs Korpershoek7f834cb2021-11-22 16:22:05 +01001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Configuration for the khadas VIM3L Android
4 *
5 * Copyright (C) 2021 Baylibre, SAS
6 * Author: Guillaume LA ROQUE <glaroque@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=1792M,uuid=${uuid_gpt_super};" \
25 "name=userdata,size=12786M,uuid=${uuid_gpt_userdata};" \
26 "name=rootfs,size=-,uuid=" ROOT_UUID
27
28#define EXTRA_ANDROID_ENV_SETTINGS \
29 "board=vim3l\0" \
30 "board_name=vim3l\0" \
31
32#include <configs/meson64_android.h>
33
34#endif /* __CONFIG_H */