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
4b2368ff
Commit
4b2368ff
authored
May 26, 2009
by
Michal Simek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
microblaze_mmu_v2: Makefiles
Signed-off-by:
Michal Simek
<
monstr@monstr.eu
>
parent
a116f6d5
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
1 deletion
+11
-1
arch/microblaze/Makefile
arch/microblaze/Makefile
+4
-0
arch/microblaze/boot/Makefile
arch/microblaze/boot/Makefile
+2
-0
arch/microblaze/kernel/Makefile
arch/microblaze/kernel/Makefile
+1
-0
arch/microblaze/lib/Makefile
arch/microblaze/lib/Makefile
+2
-1
arch/microblaze/mm/Makefile
arch/microblaze/mm/Makefile
+2
-0
No files found.
arch/microblaze/Makefile
View file @
4b2368ff
ifeq
($(CONFIG_MMU),y)
UTS_SYSNAME
=
-DUTS_SYSNAME
=
\"
Linux
\"
else
UTS_SYSNAME
=
-DUTS_SYSNAME
=
\"
uClinux
\"
endif
# What CPU vesion are we building for, and crack it open
# as major.minor.rev
...
...
arch/microblaze/boot/Makefile
View file @
4b2368ff
...
...
@@ -7,6 +7,8 @@ targets := linux.bin linux.bin.gz
OBJCOPYFLAGS_linux.bin
:=
-O
binary
$(obj)/linux.bin
:
vmlinux FORCE
[
-n
$(CONFIG_INITRAMFS_SOURCE)
]
&&
[
!
-e
$(CONFIG_INITRAMFS_SOURCE)
]
&&
\
touch
$(CONFIG_INITRAMFS_SOURCE)
||
echo
"No CPIO image"
$(
call
if_changed,objcopy
)
@
echo
'Kernel: $@ is ready'
' (#'
`
cat
.version
`
')'
...
...
arch/microblaze/kernel/Makefile
View file @
4b2368ff
...
...
@@ -15,5 +15,6 @@ obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
obj-$(CONFIG_SELFMOD)
+=
selfmod.o
obj-$(CONFIG_HEART_BEAT)
+=
heartbeat.o
obj-$(CONFIG_MODULES)
+=
microblaze_ksyms.o module.o
obj-$(CONFIG_MMU)
+=
misc.o
obj-y
+=
entry
$(MMUEXT)
.o
arch/microblaze/lib/Makefile
View file @
4b2368ff
...
...
@@ -10,4 +10,5 @@ else
lib-y
+=
memcpy.o memmove.o
endif
lib-y
+=
uaccess.o
lib-$(CONFIG_NO_MMU)
+=
uaccess.o
lib-$(CONFIG_MMU)
+=
uaccess_old.o
arch/microblaze/mm/Makefile
View file @
4b2368ff
...
...
@@ -3,3 +3,5 @@
#
obj-y
:=
init.o
obj-$(CONFIG_MMU)
+=
pgtable.o mmu_context.o fault.o
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