From 5345925ce67655ea4c319c46cb3e0d3f5e2c0ff8 Mon Sep 17 00:00:00 2001 From: bg- Date: Fri, 1 Dec 2006 14:55:15 +0000 Subject: [PATCH] * Kernel ssd.c is gone. * New kernel client.c with static IP configuration. * Replace elfloader.c with new cle.c and elfloader_compat.c. Taken together they requires less ROM and RAM than the old version. --- platform/sky/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/platform/sky/Makefile b/platform/sky/Makefile index f86ae2a07..d66963fc7 100644 --- a/platform/sky/Makefile +++ b/platform/sky/Makefile @@ -1,16 +1,16 @@ -# $Id: Makefile,v 1.5 2006/09/27 10:00:42 bg- Exp $ +# $Id: Makefile,v 1.6 2006/12/01 14:55:15 bg- Exp $ # # This makefile requires GNU make! LIB = libcontiki.a -KERNELS = gateway.ihex dhclient.ihex ssd.ihex +KERNELS = gateway.ihex client.ihex dhclient.ihex PROGS = loadable_prg.ko udpsend.ko udprecv.ko TOOLS = tunslip scat codeprop all: $(LIB) $(KERNELS) $(PROGS) $(TOOLS) -ssd.out: ssd.o $(LIB) gateway.out: gateway.o $(LIB) +client.out: client.o $(LIB) dhclient.out: dhclient.o $(LIB) CORE = ../../core @@ -21,7 +21,7 @@ MCU=msp430x1611 ARCH=msp430.o minileds.o watchdog.o light.o button.o spi.o ds2411.o rom.o xmem.o i2c.o SYSTEM=process.o procinit.o service.o clock.o etimer.o timer.o \ - elfloader.o symtab.o + elfloader_compat.o cle.o symtab.o UIP=uip.o uiplib.o tcpip.o uip-fw.o uip-fw-service.o uipbuf.o \ tcpdump.o psock.o dhcpc.o uaodv.o uaodv-rt.o uip-udp-packet.o UIPDRIVERS=slip.o slip_uart1.o \