diff options
-rw-r--r-- | sys/boot/sparc64/boot1/Makefile | 2 | ||||
-rw-r--r-- | sys/boot/sparc64/boot1/_start.S | 8 |
2 files changed, 1 insertions, 9 deletions
diff --git a/sys/boot/sparc64/boot1/Makefile b/sys/boot/sparc64/boot1/Makefile index 6ad039b..93d213d 100644 --- a/sys/boot/sparc64/boot1/Makefile +++ b/sys/boot/sparc64/boot1/Makefile @@ -4,7 +4,7 @@ PROG= boot1.elf INTERNALPROG= NOMAN= FILES= boot1 -SRCS= _start.S boot1.c +SRCS= _start.s boot1.c BOOTBLOCKBASE= 0x4000 diff --git a/sys/boot/sparc64/boot1/_start.S b/sys/boot/sparc64/boot1/_start.S deleted file mode 100644 index 30f8019..0000000 --- a/sys/boot/sparc64/boot1/_start.S +++ /dev/null @@ -1,8 +0,0 @@ -/* $FreeBSD$ */ - - .text - .globl _start -_start: - call ofw_init - nop - sir |