From 7e62cdf6011fd47849a0a4b89ce0d17551b653be Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Wed, 30 Mar 2016 15:26:44 +0200 Subject: [PATCH] soc/software/bios: update default ip addresses (local: 192.168.1.50 / remote: 192.168.1.100) --- litex/soc/software/bios/boot.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/litex/soc/software/bios/boot.c b/litex/soc/software/bios/boot.c index e9257b1a9..f7c0150b7 100644 --- a/litex/soc/software/bios/boot.c +++ b/litex/soc/software/bios/boot.c @@ -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)