|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH 2/6][TOOLS][XM-TEST] Remove hard coded reference to i
Remove hard coded reference to i386.
In preperation for other architectures.
Signed-off-by: Tony Breeds <tony@xxxxxxxxxxxxxxxxxx>
---
tools/xm-test/ramdisk/Makefile.am | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff -r 3207a28bb29d -r 5017ce424246 tools/xm-test/ramdisk/Makefile.am
--- a/tools/xm-test/ramdisk/Makefile.am Fri Sep 29 15:51:20 2006 +1000
+++ b/tools/xm-test/ramdisk/Makefile.am Fri Sep 29 15:52:31 2006 +1000
@@ -2,12 +2,14 @@ INITRD ?= http://xm-test.xensource.com/r
EXTRA_DIST = skel configs patches
+BR_ARCH = $(shell uname -m | sed -e s/i.86/i386/)
+
BR_TAR = buildroot-snapshot.tar.bz2
BR_URL = http://buildroot.uclibc.org/downloads/snapshots/$(BR_TAR)
BR_SRC = buildroot
-BR_IMG = $(BR_SRC)/rootfs.i386.ext2
+BR_IMG = $(BR_SRC)/rootfs.$(BR_ARCH).ext2
-BR_ROOT = build_i386/root
+BR_ROOT = build_$(BR_ARCH)/root
HVM_SCRIPT = bin/create_disk_image
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|