soc/software/boot: add #ifndef on LOCALIP and REMOTEIP to allow definition in the...
authorFlorent Kermarrec <florent@enjoy-digital.fr>
Mon, 23 Nov 2015 10:08:04 +0000 (11:08 +0100)
committerFlorent Kermarrec <florent@enjoy-digital.fr>
Mon, 23 Nov 2015 10:08:04 +0000 (11:08 +0100)
litex/soc/software/bios/boot.c

index 635bd649304e651d5f99a6e0c404eccc23bea86a..e9257b1a90a2eec06c49464ada9f6327e5546347 100644 (file)
@@ -178,14 +178,19 @@ void serialboot(void)
 
 #ifdef CSR_ETHMAC_BASE
 
+#ifndef LOCALIP1
 #define LOCALIP1 192
 #define LOCALIP2 168
 #define LOCALIP3 0
 #define LOCALIP4 42
+#endif
+
+#ifndef REMOTEIP1
 #define REMOTEIP1 192
 #define REMOTEIP2 168
 #define REMOTEIP3 0
 #define REMOTEIP4 14
+#endif
 
 static int tftp_get_v(unsigned int ip, const char *filename, char *buffer)
 {