mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-18 19:04:38 +00:00
common: Discard the __u_boot_cmd section
The command declaration now uses the new LG-array method to generate list of commands. Thus the __u_boot_cmd section is now superseded and redundant and therefore can be removed. Also, remove externed symbols associated with this section from include/command.h . Signed-off-by: Marek Vasut <marex@denx.de> Cc: Joe Hershberger <joe.hershberger@gmail.com> Cc: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
6c7c946cad
commit
8b493a5236
173 changed files with 1 additions and 583 deletions
4
Makefile
4
Makefile
|
@ -533,12 +533,10 @@ GEN_UBOOT = \
|
||||||
$(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map -o u-boot
|
$(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map -o u-boot
|
||||||
else
|
else
|
||||||
GEN_UBOOT = \
|
GEN_UBOOT = \
|
||||||
UNDEF_SYM=`$(OBJDUMP) -x $(LIBBOARD) $(LIBS) | \
|
|
||||||
sed -n -e 's/.*\($(SYM_PREFIX)__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
|
|
||||||
UNDEF_LST=`$(OBJDUMP) -x $(LIBBOARD) $(LIBS) | \
|
UNDEF_LST=`$(OBJDUMP) -x $(LIBBOARD) $(LIBS) | \
|
||||||
sed -n -e 's/.*\($(SYM_PREFIX)_u_boot_list_.*\)/-u\1/p'|sort|uniq`;\
|
sed -n -e 's/.*\($(SYM_PREFIX)_u_boot_list_.*\)/-u\1/p'|sort|uniq`;\
|
||||||
cd $(LNDIR) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) \
|
cd $(LNDIR) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) \
|
||||||
$$UNDEF_SYM $$UNDEF_LST $(__OBJS) \
|
$$UNDEF_LST $(__OBJS) \
|
||||||
--start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
|
--start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
|
||||||
-Map u-boot.map -o u-boot
|
-Map u-boot.map -o u-boot
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -48,9 +48,6 @@ SECTIONS
|
||||||
.got : { *(.got) }
|
.got : { *(.got) }
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -50,9 +50,6 @@ SECTIONS
|
||||||
}
|
}
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
#include <u-boot.lst>
|
#include <u-boot.lst>
|
||||||
|
|
|
@ -50,9 +50,6 @@ SECTIONS
|
||||||
}
|
}
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
#include <u-boot.lst>
|
#include <u-boot.lst>
|
||||||
|
|
|
@ -46,9 +46,6 @@ SECTIONS
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -49,9 +49,6 @@ SECTIONS
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -47,11 +47,6 @@ SECTIONS
|
||||||
}
|
}
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : {
|
|
||||||
KEEP(*(.u_boot_cmd))
|
|
||||||
}
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -112,12 +112,6 @@ SECTIONS
|
||||||
CONSTRUCTORS
|
CONSTRUCTORS
|
||||||
} >ram_data
|
} >ram_data
|
||||||
|
|
||||||
.u_boot_cmd :
|
|
||||||
{
|
|
||||||
___u_boot_cmd_start = .;
|
|
||||||
*(.u_boot_cmd)
|
|
||||||
___u_boot_cmd_end = .;
|
|
||||||
} >ram_data
|
|
||||||
|
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
#include <u-boot.lst>
|
#include <u-boot.lst>
|
||||||
|
|
|
@ -50,14 +50,6 @@ SECTIONS
|
||||||
__data_end = .;
|
__data_end = .;
|
||||||
}
|
}
|
||||||
|
|
||||||
.u_boot_cmd ALIGN(0x4):
|
|
||||||
{
|
|
||||||
. = .;
|
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
*(.u_boot_cmd)
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
}
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
#include <u-boot.lst>
|
#include <u-boot.lst>
|
||||||
|
|
|
@ -52,9 +52,6 @@ SECTIONS
|
||||||
}
|
}
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -45,13 +45,6 @@ SECTIONS
|
||||||
* the initialization code relocates the command table as
|
* the initialization code relocates the command table as
|
||||||
* well -- admittedly, this is just pure laziness ;-)
|
* well -- admittedly, this is just pure laziness ;-)
|
||||||
*/
|
*/
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd :
|
|
||||||
{
|
|
||||||
*(.u_boot_cmd)
|
|
||||||
}
|
|
||||||
. = ALIGN(4);
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -62,9 +62,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -57,9 +57,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -65,9 +65,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -66,9 +66,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
#include <u-boot.lst>
|
#include <u-boot.lst>
|
||||||
|
|
|
@ -60,9 +60,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -59,9 +59,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -60,9 +60,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -59,9 +59,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -58,9 +58,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -70,9 +70,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
#include <u-boot.lst>
|
#include <u-boot.lst>
|
||||||
|
|
|
@ -77,9 +77,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -64,9 +64,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -78,9 +78,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -24,9 +24,6 @@
|
||||||
|
|
||||||
SECTIONS
|
SECTIONS
|
||||||
{
|
{
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
_u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -72,13 +72,6 @@ SECTIONS
|
||||||
}
|
}
|
||||||
PROVIDE (_egot = .);
|
PROVIDE (_egot = .);
|
||||||
|
|
||||||
PROVIDE (__u_boot_cmd_start = .);
|
|
||||||
.u_boot_cmd :
|
|
||||||
{
|
|
||||||
*(.u_boot_cmd)
|
|
||||||
. = ALIGN(4);
|
|
||||||
}
|
|
||||||
PROVIDE (__u_boot_cmd_end = .);
|
|
||||||
|
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
#include <u-boot.lst>
|
#include <u-boot.lst>
|
||||||
|
|
|
@ -78,13 +78,6 @@ SECTIONS
|
||||||
}
|
}
|
||||||
PROVIDE (_egot = .);
|
PROVIDE (_egot = .);
|
||||||
|
|
||||||
PROVIDE (__u_boot_cmd_start = .);
|
|
||||||
.u_boot_cmd :
|
|
||||||
{
|
|
||||||
*(.u_boot_cmd)
|
|
||||||
. = ALIGN(4);
|
|
||||||
}
|
|
||||||
PROVIDE (__u_boot_cmd_end = .);
|
|
||||||
|
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
#include <u-boot.lst>
|
#include <u-boot.lst>
|
||||||
|
|
|
@ -75,13 +75,6 @@ SECTIONS
|
||||||
}
|
}
|
||||||
PROVIDE (_egot = .);
|
PROVIDE (_egot = .);
|
||||||
|
|
||||||
PROVIDE (__u_boot_cmd_start = .);
|
|
||||||
.u_boot_cmd :
|
|
||||||
{
|
|
||||||
*(.u_boot_cmd)
|
|
||||||
. = ALIGN(4);
|
|
||||||
}
|
|
||||||
PROVIDE (__u_boot_cmd_end = .);
|
|
||||||
|
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
#include <u-boot.lst>
|
#include <u-boot.lst>
|
||||||
|
|
|
@ -33,10 +33,6 @@ SECTIONS
|
||||||
.text : { *(.text*); }
|
.text : { *(.text*); }
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
. = ALIGN(4);
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -65,9 +65,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -86,9 +86,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -66,9 +66,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -106,9 +106,6 @@ SECTIONS
|
||||||
_edata = .;
|
_edata = .;
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -66,9 +66,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -106,9 +106,6 @@ SECTIONS
|
||||||
_edata = .;
|
_edata = .;
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -66,9 +66,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -106,9 +106,6 @@ SECTIONS
|
||||||
_edata = .;
|
_edata = .;
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -71,9 +71,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -54,11 +54,6 @@ SECTIONS
|
||||||
*(.got)
|
*(.got)
|
||||||
}
|
}
|
||||||
. =.;
|
. =.;
|
||||||
__u_boot_cmd_start =.;
|
|
||||||
.u_boot_cmd : {
|
|
||||||
*(.u_boot_cmd)
|
|
||||||
}
|
|
||||||
__u_boot_cmd_end =.;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -54,11 +54,6 @@ SECTIONS
|
||||||
*(.got)
|
*(.got)
|
||||||
}
|
}
|
||||||
. =.;
|
. =.;
|
||||||
__u_boot_cmd_start =.;
|
|
||||||
.u_boot_cmd : {
|
|
||||||
*(.u_boot_cmd)
|
|
||||||
}
|
|
||||||
__u_boot_cmd_end =.;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -54,11 +54,6 @@ SECTIONS
|
||||||
*(.got)
|
*(.got)
|
||||||
}
|
}
|
||||||
. =.;
|
. =.;
|
||||||
__u_boot_cmd_start =.;
|
|
||||||
.u_boot_cmd : {
|
|
||||||
*(.u_boot_cmd)
|
|
||||||
}
|
|
||||||
__u_boot_cmd_end =.;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -62,9 +62,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -46,13 +46,6 @@ SECTIONS
|
||||||
* the initialization code relocates the command table as
|
* the initialization code relocates the command table as
|
||||||
* well -- admittedly, this is just pure laziness ;-)
|
* well -- admittedly, this is just pure laziness ;-)
|
||||||
*/
|
*/
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd :
|
|
||||||
{
|
|
||||||
*(.u_boot_cmd)
|
|
||||||
}
|
|
||||||
. = ALIGN(4);
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -72,9 +72,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
#include <u-boot.lst>
|
#include <u-boot.lst>
|
||||||
|
|
|
@ -73,9 +73,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
#include <u-boot.lst>
|
#include <u-boot.lst>
|
||||||
|
|
|
@ -73,9 +73,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
#include <u-boot.lst>
|
#include <u-boot.lst>
|
||||||
|
|
|
@ -72,9 +72,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
#include <u-boot.lst>
|
#include <u-boot.lst>
|
||||||
|
|
|
@ -73,9 +73,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
#include <u-boot.lst>
|
#include <u-boot.lst>
|
||||||
|
|
|
@ -64,9 +64,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
#include <u-boot.lst>
|
#include <u-boot.lst>
|
||||||
|
|
|
@ -69,9 +69,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -74,9 +74,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -106,9 +106,6 @@ SECTIONS
|
||||||
_edata = .;
|
_edata = .;
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -68,9 +68,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -70,9 +70,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -106,9 +106,6 @@ SECTIONS
|
||||||
_edata = .;
|
_edata = .;
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -106,9 +106,6 @@ SECTIONS
|
||||||
_edata = .;
|
_edata = .;
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -74,9 +74,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -54,12 +54,6 @@ SECTIONS
|
||||||
|
|
||||||
.sdata : { *(.sdata*) }
|
.sdata : { *(.sdata*) }
|
||||||
|
|
||||||
.u_boot_cmd : {
|
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
*(.u_boot_cmd)
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
}
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
#include <u-boot.lst>
|
#include <u-boot.lst>
|
||||||
|
|
|
@ -54,11 +54,6 @@ SECTIONS
|
||||||
*(.got)
|
*(.got)
|
||||||
}
|
}
|
||||||
. =.;
|
. =.;
|
||||||
__u_boot_cmd_start =.;
|
|
||||||
.u_boot_cmd : {
|
|
||||||
*(.u_boot_cmd)
|
|
||||||
}
|
|
||||||
__u_boot_cmd_end =.;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -66,9 +66,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -106,9 +106,6 @@ SECTIONS
|
||||||
_edata = .;
|
_edata = .;
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -67,9 +67,6 @@ SECTIONS
|
||||||
|
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -62,9 +62,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -73,9 +73,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -102,9 +102,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
#include <u-boot.lst>
|
#include <u-boot.lst>
|
||||||
|
|
|
@ -65,9 +65,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -75,9 +75,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -75,9 +75,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -70,9 +70,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -68,9 +68,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -66,9 +66,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -106,9 +106,6 @@ SECTIONS
|
||||||
_edata = .;
|
_edata = .;
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -69,9 +69,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -68,9 +68,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -68,9 +68,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -68,9 +68,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -69,9 +69,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -68,9 +68,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -68,9 +68,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -68,9 +68,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -68,9 +68,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -68,9 +68,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -71,9 +71,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -69,9 +69,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -69,9 +69,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -66,9 +66,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -66,9 +66,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -66,9 +66,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -66,9 +66,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -57,9 +57,6 @@ SECTIONS
|
||||||
}
|
}
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -85,10 +85,6 @@ SECTIONS
|
||||||
|
|
||||||
/* CMD Table */
|
/* CMD Table */
|
||||||
|
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
. = ALIGN(4);
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -85,10 +85,6 @@ SECTIONS
|
||||||
|
|
||||||
/* CMD Table */
|
/* CMD Table */
|
||||||
|
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
. = ALIGN(4);
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -85,10 +85,6 @@ SECTIONS
|
||||||
|
|
||||||
/* CMD Table */
|
/* CMD Table */
|
||||||
|
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
. = ALIGN(4);
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -84,10 +84,6 @@ SECTIONS
|
||||||
|
|
||||||
/* CMD Table */
|
/* CMD Table */
|
||||||
|
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
. = ALIGN(4);
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -84,10 +84,6 @@ SECTIONS
|
||||||
|
|
||||||
/* CMD Table */
|
/* CMD Table */
|
||||||
|
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
. = ALIGN(4);
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -71,9 +71,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
#include <u-boot.lst>
|
#include <u-boot.lst>
|
||||||
|
|
|
@ -71,9 +71,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -80,9 +80,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -107,9 +107,6 @@ SECTIONS
|
||||||
_edata = .;
|
_edata = .;
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
|
@ -72,9 +72,6 @@ SECTIONS
|
||||||
PROVIDE (edata = .);
|
PROVIDE (edata = .);
|
||||||
|
|
||||||
. = .;
|
. = .;
|
||||||
__u_boot_cmd_start = .;
|
|
||||||
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
||||||
__u_boot_cmd_end = .;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
.u_boot_list : {
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue