mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 21:54:45 +00:00
33b5176558
Activate the following Kconfig options: * AVB for Android Verified Boot support * ADTIMG for merging DTBOs * ABOOTIMG for extracting Android boot image Also rework the partitioning tables: - add a misc partition to handle BCB messages - add a dtbo partition to store various DTBOs - add a vbmeta partition for AVB hashes - Merge vendor and system into the "super" partition Note: avb support is disables by default. To activate it: => setenv force_avb 1; => saveenv; Signed-off-by: Guillaume La Roque <glaroque@baylibre.com> Signed-off-by: Mattijs Korpershoek <mkorpershoek@baylibre.com> Acked-by: Neil Armstrong <narmstrong@baylibre.com> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
31 lines
935 B
C
31 lines
935 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Configuration for the SEI510
|
|
*
|
|
* 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;"
|
|
|
|
#define PARTS_DEFAULT \
|
|
"uuid_disk=${uuid_gpt_disk};" \
|
|
"name=logo,size=2M,uuid=" LOGO_UUID \
|
|
"name=misc,size=128K,uuid=${uuid_gpt_misc};" \
|
|
"name=dtbo,size=8M,uuid=${uuid_gpt_dtbo};" \
|
|
"name=vbmeta,size=64K,uuid=${uuid_gpt_vbmeta};" \
|
|
"name=boot,size=32M,bootable,uuid=${uuid_gpt_boot};" \
|
|
"name=recovery,size=32M,uuid=${uuid_gpt_recovery};" \
|
|
"name=cache,size=256M,uuid=${uuid_gpt_cache};" \
|
|
"name=super,size=2304M,uuid=${uuid_gpt_super};" \
|
|
"name=userdata,size=4820M,uuid=${uuid_gpt_userdata};" \
|
|
"name=rootfs,size=-,uuid=" ROOT_UUID
|
|
|
|
|
|
#include <configs/meson64_android.h>
|
|
|
|
#endif /* __CONFIG_H */
|