mirror of https://github.com/acidanthera/audk.git
Fix the definition differences issue of termios.h in different version of kernel header and cygwin's include files.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2622 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
418a943d66
commit
061f40e796
|
@ -132,6 +132,54 @@ extern EFI_COMPONENT_NAME_PROTOCOL gUnixSerialIoComponentName;
|
|||
//
|
||||
#define SERIAL_PORT_MAX_BAUD_RATE 115400
|
||||
|
||||
//
|
||||
// Fix the differences issue of linux header files termios.h
|
||||
//
|
||||
#ifndef B460800
|
||||
#define B460800 0010004
|
||||
#endif
|
||||
#ifndef B500000
|
||||
#define B500000 0010005
|
||||
#endif
|
||||
#ifndef B576000
|
||||
#define B576000 0010006
|
||||
#endif
|
||||
#ifndef B921600
|
||||
#define B921600 0010007
|
||||
#endif
|
||||
#ifndef B1000000
|
||||
#define B1000000 0010010
|
||||
#endif
|
||||
#ifndef B1152000
|
||||
#define B1152000 0010011
|
||||
#endif
|
||||
#ifndef B1500000
|
||||
#define B1500000 0010012
|
||||
#endif
|
||||
#ifndef B2000000
|
||||
#define B2000000 0010013
|
||||
#endif
|
||||
#ifndef B2500000
|
||||
#define B2500000 0010014
|
||||
#endif
|
||||
#ifndef B3000000
|
||||
#define B3000000 0010015
|
||||
#endif
|
||||
#ifndef B3500000
|
||||
#define B3500000 0010016
|
||||
#endif
|
||||
#ifndef B4000000
|
||||
#define B4000000 0010017
|
||||
#endif
|
||||
#ifndef __MAX_BAUD
|
||||
#define __MAX_BAUD B4000000
|
||||
#endif
|
||||
#ifndef CMSPAR
|
||||
#define CMSPAR 010000000000 /* mark or space (stick) parity */
|
||||
#endif
|
||||
#ifndef FIONREAD
|
||||
#define FIONREAD 0x541B
|
||||
#endif
|
||||
//
|
||||
// Function Prototypes
|
||||
//
|
||||
|
|
|
@ -651,7 +651,7 @@ Returns:
|
|||
//
|
||||
// Initialize strings to HII database
|
||||
//
|
||||
PackageList = PreparePackages (1, &gEfiProcessorProducerGuid, STRING_ARRAY_NAME);
|
||||
PackageList = PreparePackages (1, &gEfiProcessorProducerGuid, CpuStrings);
|
||||
|
||||
Status = Hii->NewPack (Hii, PackageList, &StringHandle);
|
||||
ASSERT (!EFI_ERROR (Status));
|
||||
|
|
|
@ -24,7 +24,7 @@ Abstract:
|
|||
|
||||
|
||||
|
||||
extern UINT8 STRING_ARRAY_NAME[];
|
||||
extern UINT8 CpuStrings[];
|
||||
|
||||
//
|
||||
// Internal Data Structures
|
||||
|
|
|
@ -40,6 +40,8 @@ Abstract:
|
|||
#include <stdlib.h>
|
||||
#include <termio.h>
|
||||
|
||||
extern ioctl (int fd, unsigned long int __request, ...);
|
||||
|
||||
static int settimer_initialized;
|
||||
static struct timeval settimer_timeval;
|
||||
static void (*settimer_callback)(UINT64 delta);
|
||||
|
|
Loading…
Reference in New Issue