All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] visws: make startup_32 kernel entry point (3/13)
@ 2003-02-14 12:58 Andrey Panin
  0 siblings, 0 replies; only message in thread
From: Andrey Panin @ 2003-02-14 12:58 UTC (permalink / raw)
  To: linux-kernel; +Cc: Linus Torvalds

[-- Attachment #1: Type: text/plain, Size: 315 bytes --]

Hi.

This patch marks startup_32 (in head.S) as kernel entry point, 
visws kernel loader uses raw elf kernel images and entry point 
at stext causes jump to wrong address.

Please consider applying.

Best regards.

-- 
Andrey Panin		| Embedded systems software developer
pazke@orbita1.ru	| PGP key: wwwkeys.pgp.net

[-- Attachment #2: patch-stext --]
[-- Type: text/plain, Size: 1298 bytes --]

diff -urN -X /usr/share/dontdiff linux-2.5.60.vanilla/arch/i386/Makefile linux-2.5.60/arch/i386/Makefile
--- linux-2.5.60.vanilla/arch/i386/Makefile	Thu Feb 13 20:29:07 2003
+++ linux-2.5.60/arch/i386/Makefile	Thu Feb 13 20:42:02 2003
@@ -17,7 +17,7 @@
 
 LDFLAGS		:= -m elf_i386
 OBJCOPYFLAGS	:= -O binary -R .note -R .comment -S
-LDFLAGS_vmlinux := -e stext
+LDFLAGS_vmlinux :=
 LDFLAGS_BLOB	:= --format binary --oformat elf32-i386
 
 CFLAGS += -pipe
diff -urN -X /usr/share/dontdiff linux-2.5.60.vanilla/arch/i386/kernel/head.S linux-2.5.60/arch/i386/kernel/head.S
--- linux-2.5.60.vanilla/arch/i386/kernel/head.S	Tue Jan 14 12:32:27 2003
+++ linux-2.5.60/arch/i386/kernel/head.S	Fri Feb 14 15:02:32 2003
@@ -42,7 +42,7 @@
  *
  * On entry, %esi points to the real-mode code as a 32-bit pointer.
  */
-startup_32:
+ENTRY(startup_32)
 /*
  * Set segments to known values
  */
diff -urN -X /usr/share/dontdiff linux-2.5.60.vanilla/arch/i386/vmlinux.lds.S linux-2.5.60/arch/i386/vmlinux.lds.S
--- linux-2.5.60.vanilla/arch/i386/vmlinux.lds.S	Thu Feb 13 20:29:07 2003
+++ linux-2.5.60/arch/i386/vmlinux.lds.S	Thu Feb 13 20:42:02 2003
@@ -6,7 +6,7 @@
 	
 OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
 OUTPUT_ARCH(i386)
-ENTRY(_start)
+ENTRY(startup_32)
 jiffies = jiffies_64;
 SECTIONS
 {

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2003-02-14 13:02 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-02-14 12:58 [PATCH] visws: make startup_32 kernel entry point (3/13) Andrey Panin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.