Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch Don't need to specify OUTPUT_FORMAT/OUTPUT_ARCH.



details:   https://anonhg.NetBSD.org/src/rev/ac0f26640cf4
branches:  trunk
changeset: 810247:ac0f26640cf4
user:      uebayasi <uebayasi%NetBSD.org@localhost>
date:      Sun Aug 23 08:57:24 2015 +0000

description:
Don't need to specify OUTPUT_FORMAT/OUTPUT_ARCH.

diffstat:

 sys/arch/arm/conf/kern.ldscript.head  |  5 +----
 sys/arch/cats/conf/kern.ldscript      |  5 +----
 sys/arch/cats/conf/ldscript.elf       |  3 +--
 sys/arch/epoc32/conf/ldscript.epoc32  |  3 +--
 sys/arch/evbarm/conf/ldscript.evbarm  |  3 +--
 sys/arch/netwinder/conf/kern.ldscript |  5 +----
 sys/arch/shark/conf/kern.ldscript     |  5 +----
 sys/arch/zaurus/conf/ldscript.zaurus  |  3 +--
 8 files changed, 8 insertions(+), 24 deletions(-)

diffs (96 lines):

diff -r 6f4090dfebcc -r ac0f26640cf4 sys/arch/arm/conf/kern.ldscript.head
--- a/sys/arch/arm/conf/kern.ldscript.head      Sun Aug 23 07:47:52 2015 +0000
+++ b/sys/arch/arm/conf/kern.ldscript.head      Sun Aug 23 08:57:24 2015 +0000
@@ -1,8 +1,5 @@
-/*     $NetBSD: kern.ldscript.head,v 1.4 2012/09/01 12:17:04 matt Exp $        */
+/*     $NetBSD: kern.ldscript.head,v 1.5 2015/08/23 08:57:24 uebayasi Exp $    */
 
-OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm",
-             "elf32-littlearm")
-OUTPUT_ARCH(arm)
 SECTIONS
 {
   . = 0xf0000020;      /* 0x20 == sizeof(a.out header) */
diff -r 6f4090dfebcc -r ac0f26640cf4 sys/arch/cats/conf/kern.ldscript
--- a/sys/arch/cats/conf/kern.ldscript  Sun Aug 23 07:47:52 2015 +0000
+++ b/sys/arch/cats/conf/kern.ldscript  Sun Aug 23 08:57:24 2015 +0000
@@ -1,8 +1,5 @@
-/*     $NetBSD: kern.ldscript,v 1.4 2015/08/22 23:19:55 uebayasi Exp $ */
+/*     $NetBSD: kern.ldscript,v 1.5 2015/08/23 08:57:25 uebayasi Exp $ */
 
-OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm",
-             "elf32-littlearm")
-OUTPUT_ARCH(arm)
 SECTIONS
 {
   . = 0xf0000020;      /* 0x20 == sizeof(a.out header) */
diff -r 6f4090dfebcc -r ac0f26640cf4 sys/arch/cats/conf/ldscript.elf
--- a/sys/arch/cats/conf/ldscript.elf   Sun Aug 23 07:47:52 2015 +0000
+++ b/sys/arch/cats/conf/ldscript.elf   Sun Aug 23 08:57:24 2015 +0000
@@ -1,6 +1,5 @@
-/*     $NetBSD: ldscript.elf,v 1.5 2015/08/21 03:42:29 uebayasi Exp $  */
+/*     $NetBSD: ldscript.elf,v 1.6 2015/08/23 08:57:25 uebayasi Exp $  */
 
-OUTPUT_ARCH(arm)
 ENTRY(KERNEL_BASE_phys)
 SECTIONS
 {
diff -r 6f4090dfebcc -r ac0f26640cf4 sys/arch/epoc32/conf/ldscript.epoc32
--- a/sys/arch/epoc32/conf/ldscript.epoc32      Sun Aug 23 07:47:52 2015 +0000
+++ b/sys/arch/epoc32/conf/ldscript.epoc32      Sun Aug 23 08:57:24 2015 +0000
@@ -1,6 +1,5 @@
-/*     $NetBSD: ldscript.epoc32,v 1.6 2015/08/22 23:19:55 uebayasi Exp $       */
+/*     $NetBSD: ldscript.epoc32,v 1.7 2015/08/23 08:57:25 uebayasi Exp $       */
 
-OUTPUT_ARCH(arm)
 ENTRY(KERNEL_BASE_phys)
 SECTIONS
 {
diff -r 6f4090dfebcc -r ac0f26640cf4 sys/arch/evbarm/conf/ldscript.evbarm
--- a/sys/arch/evbarm/conf/ldscript.evbarm      Sun Aug 23 07:47:52 2015 +0000
+++ b/sys/arch/evbarm/conf/ldscript.evbarm      Sun Aug 23 08:57:24 2015 +0000
@@ -1,6 +1,5 @@
-/*     $NetBSD: ldscript.evbarm,v 1.11 2015/08/22 23:19:55 uebayasi Exp $      */
+/*     $NetBSD: ldscript.evbarm,v 1.12 2015/08/23 08:57:25 uebayasi Exp $      */
 
-OUTPUT_ARCH(arm)
 ENTRY(KERNEL_BASE_phys)
 SECTIONS
 {
diff -r 6f4090dfebcc -r ac0f26640cf4 sys/arch/netwinder/conf/kern.ldscript
--- a/sys/arch/netwinder/conf/kern.ldscript     Sun Aug 23 07:47:52 2015 +0000
+++ b/sys/arch/netwinder/conf/kern.ldscript     Sun Aug 23 08:57:24 2015 +0000
@@ -1,8 +1,5 @@
-/*     $NetBSD: kern.ldscript,v 1.9 2015/08/22 23:19:55 uebayasi Exp $ */
+/*     $NetBSD: kern.ldscript,v 1.10 2015/08/23 08:57:25 uebayasi Exp $        */
 
-OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm",
-             "elf32-littlearm")
-OUTPUT_ARCH(arm)
 ENTRY(KERNEL_BASE_phys)
 SECTIONS
 {
diff -r 6f4090dfebcc -r ac0f26640cf4 sys/arch/shark/conf/kern.ldscript
--- a/sys/arch/shark/conf/kern.ldscript Sun Aug 23 07:47:52 2015 +0000
+++ b/sys/arch/shark/conf/kern.ldscript Sun Aug 23 08:57:24 2015 +0000
@@ -1,8 +1,5 @@
-/*     $NetBSD: kern.ldscript,v 1.4 2015/08/22 23:19:55 uebayasi Exp $ */
+/*     $NetBSD: kern.ldscript,v 1.5 2015/08/23 08:57:25 uebayasi Exp $ */
 
-OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm",
-             "elf32-littlearm")
-OUTPUT_ARCH(arm)
 SECTIONS
 {
   . = 0xf0000020;      /* 0x20 == sizeof(a.out header) */
diff -r 6f4090dfebcc -r ac0f26640cf4 sys/arch/zaurus/conf/ldscript.zaurus
--- a/sys/arch/zaurus/conf/ldscript.zaurus      Sun Aug 23 07:47:52 2015 +0000
+++ b/sys/arch/zaurus/conf/ldscript.zaurus      Sun Aug 23 08:57:24 2015 +0000
@@ -1,6 +1,5 @@
-/*     $NetBSD: ldscript.zaurus,v 1.10 2015/08/22 23:49:54 uebayasi Exp $      */
+/*     $NetBSD: ldscript.zaurus,v 1.11 2015/08/23 08:57:25 uebayasi Exp $      */
 
-OUTPUT_ARCH(arm)
 ENTRY(KERNEL_BASE_phys)
 SECTIONS
 {



Home | Main Index | Thread Index | Old Index