summaryrefslogtreecommitdiffstats
path: root/README.u2
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-07-12 12:19:39 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2007-07-12 12:19:39 +0200
commit9994dfb818c7b2d796544965fee8f515285020c6 (patch)
tree784cf9a862da39de67f7c46ec60186ce268976f8 /README.u2
parentd757720766629dcd94af70ea65ccd8ba5eb47e4b (diff)
downloadbarebox-9994dfb818c7b2d796544965fee8f515285020c6.tar.gz
barebox-9994dfb818c7b2d796544965fee8f515285020c6.tar.xz
rename linux target to sandbox
Diffstat (limited to 'README.u2')
-rw-r--r--README.u28
1 files changed, 4 insertions, 4 deletions
diff --git a/README.u2 b/README.u2
index e77092b224..6f978a3dbf 100644
--- a/README.u2
+++ b/README.u2
@@ -83,17 +83,17 @@ kernel.
For the examples below, we use the User Mode U-Boot implementation, which
is a port of U-Boot to the Linux userspace. This makes it possible to
test drive the code without having real hardware. So for this test
-scenario, ARCH=linux is the valid architecture selection. This currently
+scenario, ARCH=sandbox is the valid architecture selection. This currently
only works on ia32 hosts and partly on x86-64.
Selection of the architecture and the cross compiler can be done in two
ways. You can either specify it using the environment variables ARCH
and CROSS_COMPILE, or you can create the soft links cross_arch and
-cross_compile pointing to your architecture and compiler. For ARCH=linux
+cross_compile pointing to your architecture and compiler. For ARCH=sandbox
we do not need a cross compiler so it is sufficient to specify the
architecture:
- # ln -s linux cross_arch
+ # ln -s sandbox cross_arch
In order to configure the various aspects of U-Boot, start the U-Boot
configuration system:
@@ -103,7 +103,7 @@ configuration system:
This command starts a menu box and lets you select all the different
options available for your architecture. Once the configuration was
finished (you can simulate this by using the standard demo config file
-with 'make linux_defconfig'), there is a .config file in the toplevel
+with 'make sandbox_defconfig'), there is a .config file in the toplevel
directory of the sourcode.
Once U-Boot is configured, we can start the compilation