X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=include%2Fasm-arm%2Fu-boot-arm.h;h=4ee5a327e5f594da73c28d4ccbea8718513141c0;hb=8d949aff38cfb4388cbd73876e77bcd06d601f20;hp=4c92b1f361cb46b213bbdd3a48aacb8e04a48b7f;hpb=a8c7c708a9e0051c6358718c53572a4681eaa22b;p=oweals%2Fu-boot.git diff --git a/include/asm-arm/u-boot-arm.h b/include/asm-arm/u-boot-arm.h index 4c92b1f361..4ee5a327e5 100644 --- a/include/asm-arm/u-boot-arm.h +++ b/include/asm-arm/u-boot-arm.h @@ -31,8 +31,8 @@ /* for the following variables, see start.S */ extern ulong _armboot_start; /* code start */ -extern ulong _armboot_end_data; /* code + data end */ -extern ulong _armboot_end; /* BSS end */ +extern ulong _bss_start; /* code + data end == BSS start */ +extern ulong _bss_end; /* BSS end */ extern ulong IRQ_STACK_START; /* top of IRQ stack */ extern ulong FIQ_STACK_START; /* top of FIQ stack */ @@ -43,6 +43,8 @@ int cleanup_before_linux(void); /* board/.../... */ int board_init(void); int dram_init (void); +void setup_serial_tag (struct tag **params); +void setup_revision_tag (struct tag **params); /* ------------------------------------------------------------ */ /* Here is a list of some prototypes which are incompatible to */ @@ -50,7 +52,7 @@ int dram_init (void); /* To be fixed! */ /* ------------------------------------------------------------ */ /* common/cmd_nvedit.c */ -void setenv (char *, char *); +int setenv (char *, char *); /* cpu/.../interrupt.c */ void reset_timer_masked (void);