mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 05:34:28 +00:00
83d290c56f
When U-Boot started using SPDX tags we were among the early adopters and there weren't a lot of other examples to borrow from. So we picked the area of the file that usually had a full license text and replaced it with an appropriate SPDX-License-Identifier: entry. Since then, the Linux Kernel has adopted SPDX tags and they place it as the very first line in a file (except where shebangs are used, then it's second line) and with slightly different comment styles than us. In part due to community overlap, in part due to better tag visibility and in part for other minor reasons, switch over to that style. This commit changes all instances where we have a single declared license in the tag as both the before and after are identical in tag contents. There's also a few places where I found we did not have a tag and have introduced one. Signed-off-by: Tom Rini <trini@konsulko.com>
55 lines
1.6 KiB
C
55 lines
1.6 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) Copyright 2017 Rockchip Electronics Co., Ltd
|
|
*/
|
|
|
|
#ifndef __CONFIG_H
|
|
#define __CONFIG_H
|
|
|
|
#include <configs/rk322x_common.h>
|
|
|
|
|
|
/* Store env in emmc */
|
|
#define CONFIG_SYS_MMC_ENV_DEV 0
|
|
#define CONFIG_SYS_MMC_ENV_PART 0
|
|
#define CONFIG_SYS_REDUNDAND_ENVIRONMENT
|
|
|
|
#ifndef CONFIG_SPL_BUILD
|
|
/* Enable gpt partition table */
|
|
#undef PARTS_DEFAULT
|
|
#define PARTS_DEFAULT \
|
|
"uuid_disk=${uuid_gpt_disk};" \
|
|
"name=loader_a,start=4M,size=4M,uuid=${uuid_gpt_loader};" \
|
|
"name=loader_b,size=4M,uuid=${uuid_gpt_reserved};" \
|
|
"name=trust_a,size=4M,uuid=${uuid_gpt_reserved};" \
|
|
"name=trust_b,size=4M,uuid=${uuid_gpt_reserved};" \
|
|
"name=misc,size=4M,uuid=${uuid_gpt_misc};" \
|
|
"name=metadata,size=16M,uuid=${uuid_gpt_metadata};" \
|
|
"name=boot_a,size=32M,uuid=${uuid_gpt_boot_a};" \
|
|
"name=boot_b,size=32M,uuid=${uuid_gpt_boot_b};" \
|
|
"name=system_a,size=818M,uuid=${uuid_gpt_system_a};" \
|
|
"name=system_b,size=818M,uuid=${uuid_gpt_system_b};" \
|
|
"name=vendor_a,size=50M,uuid=${uuid_gpt_vendor_a};" \
|
|
"name=vendor_b,size=50M,uuid=${uuid_gpt_vendor_b};" \
|
|
"name=cache,size=100M,uuid=${uuid_gpt_cache};" \
|
|
"name=persist,size=4M,uuid=${uuid_gpt_persist};" \
|
|
"name=userdata,size=-,uuid=${uuid_gpt_userdata};\0" \
|
|
|
|
#define CONFIG_PREBOOT
|
|
|
|
#define CONFIG_SYS_BOOT_RAMDISK_HIGH
|
|
|
|
#undef CONFIG_BOOTCOMMAND
|
|
#define CONFIG_BOOTCOMMAND \
|
|
"mmc read 0x61000000 0x8000 0x5000;" \
|
|
"bootm 0x61000000" \
|
|
|
|
/* Enable atags */
|
|
#define CONFIG_SYS_BOOTPARAMS_LEN (64*1024)
|
|
#define CONFIG_INITRD_TAG
|
|
#define CONFIG_SETUP_MEMORY_TAGS
|
|
#define CONFIG_CMDLINE_TAG
|
|
|
|
#endif
|
|
|
|
#endif
|