Remove multi-node related symbols from k_boot.h

Multi-node systems are not supported.

Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com>
Change-Id: Ic08f2e2cd69fb9db346d2282ddefa206f662fcad
This commit is contained in:
Peter Mitsis 2015-04-15 15:23:44 -04:00 committed by Anas Nashif
commit ae0639c73d

View file

@ -39,36 +39,14 @@
extern "C" {
#endif
#define LOAD_COMMAND 0x00010000
#define START_COMMAND 0x00020000
#define BOOT_REPLY 0x00030000
#define LOAD_PASS 0
#define LOAD_BOOT 1
struct boot_struct {
uint32_t data;
uint32_t reserved;
};
typedef int (*PortAccessFunction)(struct boot_struct *);
struct port_access {
PortAccessFunction GETCALL;
PortAccessFunction PUTCALL;
};
extern int K_BootPort;
extern int K_NumBootPorts;
extern struct port_access K_PortAccess[];
inline void netload(void)
{
}
extern int ReadNextWordFromFlash(struct boot_struct *pBootStruct);
extern int PutWordToDevNull(struct boot_struct *pBootStruct);
#ifdef __cplusplus
}
#endif