mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-11 20:46:00 +01:00
Some board may want to have a different boot priority(a laptop may want to usb has the highest boot priority for third-part os installation). So let the board can define it's own boot_targets. Signed-off-by: Andy Yan <andyshrk@163.com> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
36 lines
879 B
C
36 lines
879 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) Copyright 2016 Rockchip Electronics Co., Ltd
|
|
*/
|
|
|
|
#ifndef _ROCKCHIP_COMMON_H_
|
|
#define _ROCKCHIP_COMMON_H_
|
|
#include <linux/sizes.h>
|
|
|
|
#ifndef CFG_CPUID_OFFSET
|
|
#define CFG_CPUID_OFFSET 0x7
|
|
#endif
|
|
|
|
#ifndef CONFIG_XPL_BUILD
|
|
|
|
#ifndef BOOT_TARGETS
|
|
#define BOOT_TARGETS "mmc1 mmc0 nvme scsi usb pxe dhcp spi"
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARM64
|
|
#define ROOT_UUID "B921B045-1DF0-41C3-AF44-4C6F280D3FAE;\0"
|
|
#else
|
|
#define ROOT_UUID "69DAD710-2CE4-4E3C-B16C-21A1D49ABED3;\0"
|
|
#endif
|
|
#define PARTS_DEFAULT \
|
|
"uuid_disk=${uuid_gpt_disk};" \
|
|
"name=loader1,start=32K,size=4000K,uuid=${uuid_gpt_loader1};" \
|
|
"name=loader2,start=8MB,size=4MB,uuid=${uuid_gpt_loader2};" \
|
|
"name=trust,size=4M,uuid=${uuid_gpt_atf};" \
|
|
"name=boot,size=112M,bootable,uuid=${uuid_gpt_boot};" \
|
|
"name=rootfs,size=-,uuid="ROOT_UUID
|
|
|
|
#endif
|
|
|
|
#endif /* _ROCKCHIP_COMMON_H_ */
|