mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* 2.5.44 on Alpha
@ 2002-10-20 18:20 Jan-Benedict Glaw
  2002-10-21 11:49 ` Ivan Kokshaysky
  0 siblings, 1 reply; 2+ messages in thread
From: Jan-Benedict Glaw @ 2002-10-20 18:20 UTC (permalink / raw)
  To: linux-kernel

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

Hi!

I've successfully build (and used) 2.5.4[123] on Alphas (NoNames and
Miatas), but I can't get 2.5.44 up'n'running. Using my old .config files
(from the respective previously running kernel) now first gives me
'Unable to open an initial console', followed by 'No init found. Try
passing init=... ...'.

I can't figure out what had changed between 2.5.43 and 2.5.44. I've
looked over the patch, but I cannot find the offender:-( Has anybody
seen the same (and got some hint for me)?

MfG, JBG

-- 
   - Eine Freie Meinung in einem Freien Kopf für
   - einen Freien Staat voll Freier Bürger
   						Gegen Zensur im Internet
Jan-Benedict Glaw   .   jbglaw@lug-owl.de   .   +49-172-7608481
	 -- New APT-Proxy written in shell script --
	   http://lug-owl.de/~jbglaw/software/ap2/

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: 2.5.44 on Alpha
  2002-10-20 18:20 2.5.44 on Alpha Jan-Benedict Glaw
@ 2002-10-21 11:49 ` Ivan Kokshaysky
  0 siblings, 0 replies; 2+ messages in thread
From: Ivan Kokshaysky @ 2002-10-21 11:49 UTC (permalink / raw)
  To: linux-kernel

On Sun, Oct 20, 2002 at 08:20:53PM +0200, Jan-Benedict Glaw wrote:
> I can't figure out what had changed between 2.5.43 and 2.5.44. I've
> looked over the patch, but I cannot find the offender:-( Has anybody
> seen the same (and got some hint for me)?

See changes in linux/init.h.
Here is the patch from Jeff Wiedemeier that fixes this and
some other compile problems.

Ivan.

--- 2.5.44/drivers/pnp/isapnp/core.c	Sat Oct 19 08:01:56 2002
+++ linux/drivers/pnp/isapnp/core.c	Mon Oct 21 15:33:14 2002
@@ -43,6 +43,7 @@
 #include <linux/init.h>
 #include <linux/isapnp.h>
 #include <linux/pnp.h>
+#include <asm/io.h>
 
 LIST_HEAD(isapnp_cards);
 LIST_HEAD(isapnp_devices);
--- 2.5.44/arch/alpha/kernel/irq_impl.h	Sat Oct 19 08:02:35 2002
+++ linux/arch/alpha/kernel/irq_impl.h	Mon Oct 21 14:52:51 2002
@@ -10,6 +10,7 @@
 
 #include <linux/interrupt.h>
 #include <linux/irq.h>
+#include <linux/profile.h>
 
 
 #define RTC_IRQ    8
--- 2.5.44/arch/alpha/vmlinux.lds.S	Sat Oct 19 08:01:54 2002
+++ linux/arch/alpha/vmlinux.lds.S	Mon Oct 21 14:54:31 2002
@@ -31,18 +31,27 @@ SECTIONS
 	*(__ksymtab)
 	__stop___ksymtab = .;
   }
+
+  /* All kernel symbols */
+  __kallsyms ALIGN(8) : {
+	__start___kallsyms = .;
+	*(__kallsyms)
+	__stop___kallsyms = .;
+  }
+
   .kstrtab : { *(.kstrtab) }
+  .rodata : { *(.rodata) *(.rodata.*) }
 
   /* Startup code */
-  .text.init ALIGN(8192) : {
+  .init.text ALIGN(8192) : {
 	__init_begin = .;
-	*(.text.init)
+	*(.init.text)
   }
-  .data.init : { *(.data.init) }
+  .init.data : { *(.init.data) }
 
-  .setup.init ALIGN(16): {
+  .init.setup ALIGN(16): {
 	__setup_start = .;
-	*(.setup.init)
+	*(.init.setup)
 	__setup_end = .;
   }
 
@@ -71,11 +80,11 @@ SECTIONS
   }
 
   /* Global data */
-  .data.cacheline_aligned : {
+  .data.page_aligned ALIGN(8192) : {
 	_data = .;
-	*(.data.cacheline_aligned)
+	*(.data.page_aligned) 
   }
-  .rodata : { *(.rodata) *(.rodata.*) }
+  .data.cacheline_aligned : { *(.data.cacheline_aligned) }
   .data : { *(.data) CONSTRUCTORS }
   .got : { *(.got) }
   .sdata : {
@@ -120,5 +129,5 @@ SECTIONS
   .debug_typenames 0 : { *(.debug_typenames) }
   .debug_varnames  0 : { *(.debug_varnames) }
 
-  /DISCARD/ : { *(.text.exit) *(.data.exit) *(.exitcall.exit) }
+  /DISCARD/ : { *(.exit.text) *(.exit.data) *(.exitcall.exit) }
 }

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2002-10-21 11:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-10-20 18:20 2.5.44 on Alpha Jan-Benedict Glaw
2002-10-21 11:49 ` Ivan Kokshaysky

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome