From 3d105584960b8eac3fd46e8d0679be747e0ef93e Mon Sep 17 00:00:00 2001 From: Mariano Alvira Date: Sun, 29 Mar 2009 09:35:10 -0400 Subject: [PATCH] changed name over to test-blink.c removed hardcoded source name from the linker script --- Makefile | 2 +- boot.lds | 1 - src/{blink.c => test-blink.c} | 0 3 files changed, 1 insertion(+), 2 deletions(-) rename src/{blink.c => test-blink.c} (100%) diff --git a/Makefile b/Makefile index 64aabf564..c0be548b6 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,7 @@ include $(TOPDIR)/config.mk AOBJS = COBJS = $(patsubst %.c,%.o,$(wildcard src/*.c)) -TARGETS = blink.o +TARGETS = test-blink.o # Add GCC lib PLATFORM_LIBS += --no-warn-mismatch -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc diff --git a/boot.lds b/boot.lds index a3e3cfc5c..b800cb3c9 100644 --- a/boot.lds +++ b/boot.lds @@ -32,7 +32,6 @@ SECTIONS . = ALIGN(4); .text : { - src/blink.o (.text) *(.text) } diff --git a/src/blink.c b/src/test-blink.c similarity index 100% rename from src/blink.c rename to src/test-blink.c