aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/via/k8t890/romstrap.lds
diff options
context:
space:
mode:
authorRudolf Marek <r.marek@assembler.cz>2007-10-22 19:59:57 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2007-10-22 19:59:57 +0000
commit1d4fc0cff913f0ace9ce150d53713b70eb20cf8f (patch)
treec0e1899b2c428b6e86eef7df9abca2f14440df8e /src/southbridge/via/k8t890/romstrap.lds
parentbed2f9c2fe1940a4eb83a22f1c84c8d87e836586 (diff)
This patch adds support for K8T890CE northbridge.
Signed-off-by: Rudolf Marek <r.marek@assembler.cz> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2883 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/via/k8t890/romstrap.lds')
-rw-r--r--src/southbridge/via/k8t890/romstrap.lds29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/southbridge/via/k8t890/romstrap.lds b/src/southbridge/via/k8t890/romstrap.lds
new file mode 100644
index 0000000000..9a3574339c
--- /dev/null
+++ b/src/southbridge/via/k8t890/romstrap.lds
@@ -0,0 +1,29 @@
+/*
+ * This file is part of the LinuxBIOS project.
+ *
+ * Copyright (C) 2007 AMD
+ * (Written by Yinghai Lu <yinghai.lu@amd.com> for AMD)
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+/* Modified for K8T890 ROM strap by Rudolf Marek <r.marek@assembler.cz>. */
+
+SECTIONS {
+ . = (_ROMBASE + ROM_IMAGE_SIZE - 0x2c) - (__romstrap_end - __romstrap_start);
+ .romstrap (.): {
+ *(.romstrap)
+ }
+}