upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
557 B
25 lines
557 B
/*
|
|
* (C) Copyright 2010
|
|
* Renesas Solutions Corp.
|
|
* Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _ASM_ZIMAGE_H_
|
|
#define _ASM_ZIMAGE_H_
|
|
|
|
#define MOUNT_ROOT_RDONLY 0x000
|
|
#define RAMDISK_FLAGS 0x004
|
|
#define ORIG_ROOT_DEV 0x008
|
|
#define LOADER_TYPE 0x00c
|
|
#define INITRD_START 0x010
|
|
#define INITRD_SIZE 0x014
|
|
#define COMMAND_LINE 0x100
|
|
|
|
#define RD_PROMPT (1<<15)
|
|
#define RD_DOLOAD (1<<14)
|
|
#define CMD_ARG_RD_PROMPT "prompt_ramdisk="
|
|
#define CMD_ARG_RD_DOLOAD "load_ramdisk="
|
|
|
|
#endif
|
|
|