make_netboot: Fix syntax error.

http://chromeos-botmaster.mtv.corp.google.com:8026/builders/tegra2_dev-board-binary/builds/199/steps/cbuildbot/logs/stdio

BUG=None
TEST=Adhoc
Ran it. No error.

Change-Id: I7a6a2745bbde4a773b9c3a79df9ca135af823149
Signed-off-by: Elly Jones <ellyjones@chromium.org>
Reviewed-on: http://gerrit.chromium.org/gerrit/3017
Reviewed-by: Grant Grundler <grundler@chromium.org>
This commit is contained in:
Elly Jones 2011-06-22 14:58:55 -04:00
parent 7c4328a65f
commit c871ba2df4

View File

@ -75,7 +75,7 @@ cp "${SYSROOT}/boot/vmlinux.uimg" "netboot"
# env modification is available.
# TODO(nsanders): ARM generic doesn't build chromeos-u-boot package.
# When ARM generic goes away, delete the test.
if [ -r "${SYSROOT}/u-boot/legacy_image.bin" ]
if [ -r "${SYSROOT}/u-boot/legacy_image.bin" ]; then
echo "Copying netboot firmware legacy_image.bin"
cp "${SYSROOT}/u-boot/legacy_image.bin" "netboot"
else