mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 09:54:35 +00:00

Enable bootstd for Sheevaplug board. Remove JFFS2 support. See JFFS2 Vulnerability[1]. Enable LTO to keep board size within limit. Move default envs to text-base environment [1] https://lore.kernel.org/u-boot/20241114233005.GN3600562@bill-the-cat/T/#m2fc25da1d2c019bc3cd8676991fdd64b8a21aa9b Signed-off-by: Tony Dinh <mibodhi@gmail.com> Reviewed-by: Stefan Roese <sr@denx.de>
20 lines
445 B
Bash
20 lines
445 B
Bash
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) Copyright 2024 Tony Dinh <mibodhi@gmail.com>
|
|
*
|
|
* Environment variables configurations
|
|
*/
|
|
|
|
kernel_addr_r=0x800000
|
|
fdt_addr_r=0x2c00000
|
|
ramdisk_addr_r=0x01100000
|
|
scriptaddr=0x200000
|
|
fdtfile=CONFIG_DEFAULT_DEVICE_TREE.dtb
|
|
mtdparts=CONFIG_MTDPARTS_DEFAULT
|
|
console=ttyS0,115200
|
|
|
|
/* Standard Boot */
|
|
bootcmd=
|
|
bootflow scan -lb
|
|
failed=
|
|
echo CONFIG_SYS_BOARD boot failed - please check your image
|