diff options
| author | Greg Ungerer <gerg@snapgear.com> | 2003-05-28 18:34:26 -0700 |
|---|---|---|
| committer | David Woodhouse <dwmw2@infradead.org> | 2003-05-28 18:34:26 -0700 |
| commit | b5939debbbf7152ef7a644891139227f29570f7a (patch) | |
| tree | 3eccfbc549907784b634db04623ab25b3d593f71 | |
| parent | 2e869a2a51faf2bb6b0d04cf42316ca61d2b8d6a (diff) | |
[PATCH] security init call support in linker script
Linker script updates for m68knommu architecture:
- fix _ramend for DragonEngine2 board
- add security init call support
| -rw-r--r-- | arch/m68knommu/vmlinux.lds.S | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/m68knommu/vmlinux.lds.S b/arch/m68knommu/vmlinux.lds.S index 82de2a0f26e0..1ab8a31ef964 100644 --- a/arch/m68knommu/vmlinux.lds.S +++ b/arch/m68knommu/vmlinux.lds.S @@ -27,6 +27,7 @@ #define RAM_START 0x10000400 #define RAM_LENGTH 0xffc00 #define RAM_END 0x10100000 +#define _ramend _ram_end_notused #define DATA_ADDR RAM_START #endif @@ -276,6 +277,9 @@ SECTIONS { __con_initcall_start = .; *(.con_initcall.init) __con_initcall_end = .; + __security_initcall_start = .; + *(.security_initcall.init) + __security_initcall_end = .; . = ALIGN(4); __initramfs_start = .; *(.init.ramfs) |
