soc/software/bios: update default ip addresses (local: 192.168.1.50 / remote: 192.168.1.100)

This commit is contained in:
Florent Kermarrec 2016-03-30 15:26:44 +02:00
parent 1d4f44e7db
commit 7e62cdf601
1 changed files with 4 additions and 4 deletions

View File

@ -181,15 +181,15 @@ void serialboot(void)
#ifndef LOCALIP1
#define LOCALIP1 192
#define LOCALIP2 168
#define LOCALIP3 0
#define LOCALIP4 42
#define LOCALIP3 1
#define LOCALIP4 50
#endif
#ifndef REMOTEIP1
#define REMOTEIP1 192
#define REMOTEIP2 168
#define REMOTEIP3 0
#define REMOTEIP4 14
#define REMOTEIP3 1
#define REMOTEIP4 100
#endif
static int tftp_get_v(unsigned int ip, const char *filename, char *buffer)