Merge branch 'master' of git://git.denx.de/u-boot-mips
This commit is contained in:
commit
32907339c2
|
@ -27,18 +27,12 @@ typedef unsigned short __u16;
|
||||||
typedef __signed__ int __s32;
|
typedef __signed__ int __s32;
|
||||||
typedef unsigned int __u32;
|
typedef unsigned int __u32;
|
||||||
|
|
||||||
#if (_MIPS_SZLONG == 64)
|
|
||||||
|
|
||||||
typedef __signed__ long __s64;
|
|
||||||
typedef unsigned long __u64;
|
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
#if defined(__GNUC__)
|
#if defined(__GNUC__)
|
||||||
__extension__ typedef __signed__ long long __s64;
|
__extension__ typedef __signed__ long long __s64;
|
||||||
__extension__ typedef unsigned long long __u64;
|
__extension__ typedef unsigned long long __u64;
|
||||||
#endif
|
#else
|
||||||
|
typedef __signed__ long long __s64;
|
||||||
|
typedef unsigned long long __u64;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* __ASSEMBLY__ */
|
#endif /* __ASSEMBLY__ */
|
||||||
|
@ -61,19 +55,8 @@ typedef unsigned short u16;
|
||||||
typedef __signed int s32;
|
typedef __signed int s32;
|
||||||
typedef unsigned int u32;
|
typedef unsigned int u32;
|
||||||
|
|
||||||
#if (_MIPS_SZLONG == 64)
|
|
||||||
|
|
||||||
typedef __signed__ long s64;
|
|
||||||
typedef unsigned long u64;
|
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
#if defined(__GNUC__) && !defined(__STRICT_ANSI__)
|
|
||||||
typedef __signed__ long long s64;
|
typedef __signed__ long long s64;
|
||||||
typedef unsigned long long u64;
|
typedef unsigned long long u64;
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if (defined(CONFIG_HIGHMEM) && defined(CONFIG_64BIT_PHYS_ADDR)) \
|
#if (defined(CONFIG_HIGHMEM) && defined(CONFIG_64BIT_PHYS_ADDR)) \
|
||||||
|| defined(CONFIG_64BIT)
|
|| defined(CONFIG_64BIT)
|
||||||
|
|
|
@ -9,7 +9,7 @@ How to flash using a MIPS Navigator Probe:
|
||||||
|
|
||||||
- Within Navigator Console run the following commands:
|
- Within Navigator Console run the following commands:
|
||||||
|
|
||||||
source /path/to/u-boot/board/malta/flash-malta-boot.tcl
|
source /path/to/u-boot/board/imgtec/malta/flash-malta-boot.tcl
|
||||||
reset
|
reset
|
||||||
flash-boot /path/to/u-boot/u-boot.bin
|
flash-boot /path/to/u-boot/u-boot.bin
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue