From fe57382d04b46c37f34cf8d3b3ad876554fd12bf Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Tue, 12 Jun 2012 15:55:49 +0100 Subject: u-boot: build and install some of the tools Having looked at the tools, all the others appear to be for development and maintanence, rather than redistribution. {jtag,net}console appear to be for communicating with u-boot running on a target device. mk{env,}image are for making images u-boot can load. img2brec.sh is for converting a u-boot.bin image into another format. --- u-boot.morph | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 u-boot.morph diff --git a/u-boot.morph b/u-boot.morph new file mode 100644 index 0000000000..a9f7f50130 --- /dev/null +++ b/u-boot.morph @@ -0,0 +1,16 @@ +{ + "name": "u-boot", + "kind": "chunk", + "build-system": "manual", + "build-commands": [ + "make tools" + ], + "install-commands": [ + "mkdir -p \"$DESTDIR$PREFIX/bin\"", + "install -m 755 tools/img2brec.sh \"$DESTDIR$PREFIX/bin/.\"", + "install -m 755 tools/jtagconsole \"$DESTDIR$PREFIX/bin/.\"", + "install -m 755 tools/netconsole \"$DESTDIR$PREFIX/bin/.\"", + "install -m 755 tools/mkenvimage \"$DESTDIR$PREFIX/bin/.\"", + "install -m 755 tools/mkimage \"$DESTDIR$PREFIX/bin/.\"" + ] +} -- cgit v1.2.1