* grub-core/kern/uboot/init.c: Move grub_uboot_machine_type and
grub_uboot_boot_data to asm part.
This commit is contained in:
parent
c9cd02c965
commit
16a22c3851
2 changed files with 8 additions and 6 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2013-11-13 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/kern/uboot/init.c: Move grub_uboot_machine_type and
|
||||||
|
grub_uboot_boot_data to asm part.
|
||||||
|
|
||||||
2013-11-13 Vladimir Serbinenko <phcoder@gmail.com>
|
2013-11-13 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/kern/arm/uboot/startup.S: Remove = by replacing with
|
* grub-core/kern/arm/uboot/startup.S: Remove = by replacing with
|
||||||
|
|
|
@ -35,14 +35,11 @@ extern char __bss_start[];
|
||||||
extern char _end[];
|
extern char _end[];
|
||||||
extern grub_size_t grub_total_module_size;
|
extern grub_size_t grub_total_module_size;
|
||||||
extern int (*grub_uboot_syscall_ptr) (int, int *, ...);
|
extern int (*grub_uboot_syscall_ptr) (int, int *, ...);
|
||||||
|
|
||||||
/* Set to anything other than zero so it lands in .data and not .bss. */
|
|
||||||
grub_addr_t grub_modbase = 0x55aa55aa;
|
|
||||||
grub_uint32_t grub_uboot_machine_type = 0x55aa55aa;
|
|
||||||
grub_addr_t grub_uboot_boot_data = 0x55aa55aa;
|
|
||||||
|
|
||||||
static unsigned long timer_start;
|
static unsigned long timer_start;
|
||||||
|
|
||||||
|
extern grub_uint32_t grub_uboot_machine_type;
|
||||||
|
extern grub_addr_t grub_uboot_boot_data;
|
||||||
|
|
||||||
void
|
void
|
||||||
grub_exit (void)
|
grub_exit (void)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue