Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 182081
b: refs/heads/master
c: aae7e8d
h: refs/heads/master
i:
  182079: 7af2a49
v: v3
  • Loading branch information
Manuel Lauss authored and Ralf Baechle committed Feb 27, 2010
1 parent f46a2ce commit e473496
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 780019ddf02f214ad61e641b57b8ac30c837e2a7
refs/heads/master: aae7e8da806e1536fdee0632a40aaaeed97a2f1b
1 change: 1 addition & 0 deletions trunk/arch/mips/boot/compressed/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ KBUILD_AFLAGS := $(LINUXINCLUDE) $(KBUILD_AFLAGS) -D__ASSEMBLY__ \
obj-y := $(obj)/head.o $(obj)/decompress.o $(obj)/dbg.o

obj-$(CONFIG_SYS_SUPPORTS_ZBOOT_UART16550) += $(obj)/uart-16550.o
obj-$(CONFIG_MACH_ALCHEMY) += $(obj)/uart-alchemy.o

OBJCOPYFLAGS_vmlinux.bin := $(OBJCOPYFLAGS) -O binary -R .comment -S
$(obj)/vmlinux.bin: $(KBUILD_IMAGE)
Expand Down
7 changes: 7 additions & 0 deletions trunk/arch/mips/boot/compressed/uart-alchemy.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#include <asm/mach-au1x00/au1000.h>

void putc(char c)
{
/* all current (Jan. 2010) in-kernel boards */
alchemy_uart_putchar(UART0_PHYS_ADDR, c);
}

0 comments on commit e473496

Please sign in to comment.