From 42ee9a2a6a95cfd1393a201b362014f6f8726149 Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Wed, 7 Sep 2011 01:41:17 -0700 Subject: [PATCH] now, we use on all SCCs the same IP (192.168.28.(COREID+1)) --- kernel/init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/init.c b/kernel/init.c index cbb9c32e..d17fbe9c 100644 --- a/kernel/init.c +++ b/kernel/init.c @@ -93,8 +93,8 @@ static int init_netifs(void) memset(default_netif, 0x00, sizeof(struct netif)); #ifdef CONFIG_ROCKCREEK /* Set network address variables */ - IP4_ADDR(&gw, 192,168,4,254); - IP4_ADDR(&ipaddr, 192,168,4,RCCE_ue()+1); + IP4_ADDR(&gw, 192,168,28,254); + IP4_ADDR(&ipaddr, 192,168,28,RCCE_ue()+1); IP4_ADDR(&netmask, 255,255,255,0); /* Bring up the network interface */