changeset 221:a0a17e78c07d

Install the qemu-setup.sh script into the target.
author Rob Landley <rob@landley.net>
date Tue, 18 Sep 2007 15:10:29 -0500
parents 8d2d0feff1ef
children 8b0d2080707c
files mini-native.sh
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mini-native.sh	Tue Sep 18 15:10:13 2007 -0500
+++ b/mini-native.sh	Tue Sep 18 15:10:29 2007 -0500
@@ -160,10 +160,11 @@
 [ $? -ne 0 ] && dienow
 
 # Put statically and dynamically linked hello world programs on there for
-# test purposes.
+# test purposes, and a qemu setup script.
 
 "${ARCH}-gcc" "${SOURCES}/toys/hello.c" -Os -s -o "${TOOLS}/bin/hello-dynamic"  &&
 "${ARCH}-gcc" "${SOURCES}/toys/hello.c" -Os -s -static -o "${TOOLS}/bin/hello-static" &&
+cp "${SOURCES}/native/setup.sh" "${TOOLS}/bin/qemu-setup.sh"
 
 [ $? -ne 0 ] && dienow