From 3027f98b805acad7b350e04021135dda5ce96927 Mon Sep 17 00:00:00 2001 From: oliverschmidt Date: Sun, 25 Nov 2007 22:16:59 +0000 Subject: [PATCH] Switched to lowercase file name to allow for successful driver loading from C64 DOS file system. --- platform/c64/contiki-main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/c64/contiki-main.c b/platform/c64/contiki-main.c index 14f61039e..978c106ad 100644 --- a/platform/c64/contiki-main.c +++ b/platform/c64/contiki-main.c @@ -30,7 +30,7 @@ * * Author: Oliver Schmidt * - * $Id: contiki-main.c,v 1.7 2007/11/25 15:15:05 oliverschmidt Exp $ + * $Id: contiki-main.c,v 1.8 2007/11/25 22:16:59 oliverschmidt Exp $ */ #include @@ -88,7 +88,7 @@ main(void) #if 1 { - static struct ethernet_config config = {0xDE08, "CS8900A.ETH"}; + static struct ethernet_config config = {0xDE08, "cs8900a.eth"}; uip_ipaddr_t addr; process_start((struct process *)ðernet_process, (char *)&config);