Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
5a50d02c
Commit
5a50d02c
authored
Nov 26, 2002
by
Miles Bader
Committed by
Linus Torvalds
Nov 26, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] Add v850 support for initramfs
Add v850 support for initramfs
parent
98960e9e
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
41 additions
and
3 deletions
+41
-3
arch/v850/anna-rom.ld
arch/v850/anna-rom.ld
+5
-0
arch/v850/anna.ld
arch/v850/anna.ld
+6
-0
arch/v850/rte_ma1_cb-ksram.ld
arch/v850/rte_ma1_cb-ksram.ld
+5
-0
arch/v850/rte_ma1_cb-rom.ld
arch/v850/rte_ma1_cb-rom.ld
+6
-1
arch/v850/rte_ma1_cb.ld
arch/v850/rte_ma1_cb.ld
+7
-2
arch/v850/sim.ld
arch/v850/sim.ld
+6
-0
arch/v850/sim85e2c.ld
arch/v850/sim85e2c.ld
+6
-0
No files found.
arch/v850/anna-rom.ld
View file @
5a50d02c
...
...
@@ -80,6 +80,11 @@ SECTIONS {
__root_fs_image_start = . ;
*(.root)
__root_fs_image_end = . ;
. = ALIGN (4) ;
___initramfs_start = . ;
*(.init.ramfs)
___initramfs_end = . ;
} > ROM
__rom_copy_src_start = . ;
...
...
arch/v850/anna.ld
View file @
5a50d02c
...
...
@@ -103,6 +103,12 @@ SECTIONS {
*(.initcall7.init)
. = ALIGN (4) ;
___initcall_end = . ;
. = ALIGN (4) ;
___initramfs_start = . ;
*(.init.ramfs)
___initramfs_end = . ;
__init_end = . ;
__kram_end = . ;
...
...
arch/v850/rte_ma1_cb-ksram.ld
View file @
5a50d02c
...
...
@@ -93,6 +93,11 @@ SECTIONS {
*(.initcall7.init)
. = ALIGN (4) ;
___initcall_end = . ;
. = ALIGN (4) ;
___initramfs_start = . ;
*(.init.ramfs)
___initramfs_end = . ;
} > SRAM
/* This provides address at which the interrupt vectors are
...
...
arch/v850/rte_ma1_cb-rom.ld
View file @
5a50d02c
...
...
@@ -45,9 +45,14 @@ SECTIONS {
___stop___ksymtab = . ;
. = ALIGN (4) ;
__etext = . ;
. = ALIGN (4) ;
___initramfs_start = . ;
*(.init.ramfs)
___initramfs_end = . ;
} > ROM
__
data_load
_start = . ;
__
rom_copy_src
_start = . ;
.data : {
__kram_start = . ;
...
...
arch/v850/rte_ma1_cb.ld
View file @
5a50d02c
...
...
@@ -98,10 +98,15 @@ SECTIONS {
*(.initcall7.init)
. = ALIGN (4) ;
___initcall_end = . ;
. = ALIGN (4) ;
___initramfs_start = . ;
*(.init.ramfs)
___initramfs_end = . ;
} > SDRAM
/* Th
is provides address at which the interrupt vectors are
initially
loaded by the loader. */
/* Th
e address at which the interrupt vectors are initially
loaded by the loader. */
__intv_load_start = ALIGN (0x10) ;
/* Interrupt vector space. Because we're using the monitor
...
...
arch/v850/sim.ld
View file @
5a50d02c
...
...
@@ -96,6 +96,12 @@ SECTIONS {
*(.initcall7.init)
. = ALIGN (4) ;
___initcall_end = . ;
. = ALIGN (4) ;
___initramfs_start = . ;
*(.init.ramfs)
___initramfs_end = . ;
__init_end = . ;
__kram_end = . ;
...
...
arch/v850/sim85e2c.ld
View file @
5a50d02c
...
...
@@ -86,6 +86,12 @@ SECTIONS {
*(.initcall7.init)
. = ALIGN (4) ;
___initcall_end = . ;
. = ALIGN (4) ;
___initramfs_start = . ;
*(.init.ramfs)
___initramfs_end = . ;
__init_end = . ;
} > IRAM
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment