|
|
|
|
|
|
|
|
|
|
xen-changelog
[Xen-changelog] [xen-4.1-testing] xen: fix reloc.S generation for non-gn
# HG changeset patch
# User Christoph Egger <Christoph.Egger@xxxxxxx>
# Date 1301756805 -3600
# Node ID 8c372258147b870f4146b2ce1ced6ff2ecdaba37
# Parent 952eb1beec07dc275c12070ccf56700ec911d2e8
xen: fix reloc.S generation for non-gnu toolchain
The output of AT&T UNIX and GNU od(1) are different.
Signed-off-by: Christoph Egger <Christoph.Egger@xxxxxxx>
xen-unstable changeset: 23130:0e88c781a8a8
xen-unstable date: Sat Apr 02 15:53:35 2011 +0100
---
diff -r 952eb1beec07 -r 8c372258147b xen/arch/x86/boot/build32.mk
--- a/xen/arch/x86/boot/build32.mk Sat Apr 02 16:06:12 2011 +0100
+++ b/xen/arch/x86/boot/build32.mk Sat Apr 02 16:06:45 2011 +0100
@@ -9,8 +9,8 @@
# NB. awk invocation is a portable alternative to 'head -n -1'
%.S: %.bin
- (od -v -t x $< | awk 'NR > 1 {print s} {s=$$0}' | \
- sed 's/ /,0x/g' | sed 's/^[0-9]*,/ .long /') >$@
+ (od -v -t x $< | tr -s ' ' | awk 'NR > 1 {print s} {s=$$0}' | \
+ sed 's/ /,0x/g' | sed 's/,0x$$//' | sed 's/^[0-9]*,/ .long /') >$@
%.bin: %.lnk
$(OBJCOPY) -O binary $< $@
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-changelog] [xen-4.1-testing] xen: fix reloc.S generation for non-gnu toolchain,
Xen patchbot-4 . 1-testing <=
|
|
|
|
|