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
44ca5ad7
Commit
44ca5ad7
authored
Oct 16, 2003
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://bk.arm.linux.org.uk/linux-2.6-rmk
into home.osdl.org:/home/torvalds/v2.5/linux
parents
eb1a40d9
a02f3ee8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
6 deletions
+20
-6
arch/arm/Makefile
arch/arm/Makefile
+1
-1
arch/arm/boot/Makefile
arch/arm/boot/Makefile
+17
-3
arch/arm/boot/bootp/bootp.lds
arch/arm/boot/bootp/bootp.lds
+2
-2
No files found.
arch/arm/Makefile
View file @
44ca5ad7
...
...
@@ -149,7 +149,7 @@ maketools: include/asm-arm/.arch \
bzImage
:
vmlinux
$(Q)$(MAKE)
$(build)
=
$(boot)
$(boot)
/zImage
zImage Image bootpImage
:
vmlinux
zImage Image bootpImage
uImage
:
vmlinux
$(Q)$(MAKE)
$(build)
=
$(boot)
$(boot)
/
$@
zinstall install
:
vmlinux
...
...
arch/arm/boot/Makefile
View file @
44ca5ad7
...
...
@@ -8,6 +8,8 @@
# Copyright (C) 1995-2002 Russell King
#
MKIMAGE
:=
$(srctree)
/scripts/mkuboot.sh
# Note: the following conditions must always be true:
# ZRELADDR == virt_to_phys(TEXTADDR)
# PARAMS_PHYS must be with 4MB of ZRELADDR
...
...
@@ -42,12 +44,14 @@ initrd_phys-$(CONFIG_ARCH_CDB89712) := 0x00700000
ifeq
($(CONFIG_ARCH_SA1100),y)
zreladdr-$(CONFIG_SA1111)
:=
0xc0208000
endif
params_phys-$(CONFIG_ARCH_SA1100)
:=
0xc0000100
initrd_phys-$(CONFIG_ARCH_SA1100)
:=
0xc0800000
zreladdr-$(CONFIG_ARCH_PXA)
:=
0xa0008000
zreladdr-$(CONFIG_ARCH_ANAKIN)
:=
0x20008000
zreladdr-$(CONFIG_ARCH_IOP3XX)
:=
0xa0008000
params
-
phys-$(CONFIG_ARCH_IOP3XX)
:=
0xa0000100
params
_
phys-$(CONFIG_ARCH_IOP3XX)
:=
0xa0000100
zreladdr-$(CONFIG_ARCH_ADIFCC)
:=
0xc0008000
params
-
phys-$(CONFIG_ARCH_ADIFCC)
:=
0xc0000100
params
_
phys-$(CONFIG_ARCH_ADIFCC)
:=
0xc0000100
ZRELADDR
:=
$
(
zreladdr-y
)
ZTEXTADDR
:=
$
(
ztextaddr-y
)
...
...
@@ -78,6 +82,16 @@ $(obj)/zImage: $(obj)/compressed/vmlinux FORCE
$(
call
if_changed,objcopy
)
@
echo
' Kernel: $@ is ready'
quite_cmd_uimage
=
UIMAGE
$@
cmd_uimage
=
$(CONFIG_SHELL)
$(MKIMAGE)
-A
arm
-O
linux
-T
kernel
\
-C
none
-a
$(ZRELADDR)
-e
$(ZRELADDR)
\
-n
'Linux-
$(KERNELRELEASE)
'
-d
$<
$@
targets
+=
uImage
$(obj)/uImage
:
$(obj)/zImage
$(
call
if_changed,uimage
)
@
echo
' Image $@ is ready'
$(obj)/bootpImage
:
$(obj)/bootp/bootp FORCE
$(
call
if_changed,objcopy
)
@
echo
' Kernel: $@ is ready'
...
...
@@ -86,7 +100,7 @@ $(obj)/compressed/vmlinux: vmlinux FORCE
$(Q)$(MAKE)
$(build)
=
$(obj)
/compressed
$@
$(obj)/bootp/bootp
:
$(obj)/zImage initrd FORCE
$(Q)$(MAKE)
$(build)
=
$(obj)
/
compressed
$@
$(Q)$(MAKE)
$(build)
=
$(obj)
/
bootp
$@
.PHONY
:
initrd
initrd
:
...
...
arch/arm/boot/bootp/bootp.lds
View file @
44ca5ad7
...
...
@@ -16,10 +16,10 @@ SECTIONS
.text : {
_stext = .;
*(.start)
kernel.o
arch/arm/boot/bootp/
kernel.o
. = ALIGN(32);
initrd_start = .;
initrd.o
arch/arm/boot/bootp/
initrd.o
initrd_len = . - initrd_start;
. = ALIGN(32);
_etext = .;
...
...
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