Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 148644
b: refs/heads/master
c: 4b2368f
h: refs/heads/master
v: v3
  • Loading branch information
Michal Simek committed May 26, 2009
1 parent 8e90c5f commit c8c03fe
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a116f6d5db4476d0c941b495a6122b0130bbf20b
refs/heads/master: 4b2368ffd6e3563b73b8391c133822a58b1b432a
4 changes: 4 additions & 0 deletions trunk/arch/microblaze/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
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
Expand Down
2 changes: 2 additions & 0 deletions trunk/arch/microblaze/boot/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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`')'

Expand Down
1 change: 1 addition & 0 deletions trunk/arch/microblaze/kernel/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 2 additions & 1 deletion trunk/arch/microblaze/lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 2 additions & 0 deletions trunk/arch/microblaze/mm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
#

obj-y := init.o

obj-$(CONFIG_MMU) += pgtable.o mmu_context.o fault.o

0 comments on commit c8c03fe

Please sign in to comment.