* Patch by Anders Larsen, 18 Sep 2003:

allow mkimage to build and run on Cygwin-hosted systems

* Patch by Frank Mller, 18 Sep 2003:
  use bi_intfreq instead of bi_busfreq to compute fec_mii_speed in
  cpu/mpc8xx/fec.c

* Patch by Pantelis Antoniou, 16 Sep 2003:
  add tool to compute fileds in the PLPRCR register for MPC86x
This commit is contained in:
wdenk
2003-10-08 22:14:02 +00:00
parent d9a405aaf6
commit ef1464cc01
7 changed files with 245 additions and 16 deletions

View File

@@ -43,13 +43,6 @@
#include <stdint.h>
#endif
#ifdef __CYGWIN__
#include <sys/types.h>
typedef unsigned long int uint32_t;
typedef unsigned short uint16_t;
typedef unsigned char uint8_t;
#endif /* __CYGWIN__ */
/*
* This version doesn't work for 64-bit ABIs - Erik.
*/

View File

@@ -124,11 +124,6 @@
#define IH_MAGIC 0x27051956 /* Image Magic Number */
#define IH_NMLEN 32 /* Image Name Length */
#ifdef __CYGWIN__
typedef unsigned long uint32_t;
typedef unsigned char uint8_t;
#endif /* __CYGWIN__ */
/*
* all data in network byte order (aka natural aka bigendian)
*/