commit 080facf00fb3c944530ebb90423a4e9eecc163be
parent bcd30f48845f703778a9a7bf5b1e58d768fb4ad8
Author: oblique <psyberbits@gmail.com>
Date: Fri, 24 May 2013 05:49:56 +0300
panda_usbboot.sh: fix an if statement
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/panda_usbboot.sh b/scripts/panda_usbboot.sh
@@ -17,7 +17,7 @@ fi
if [ -z "$OMAP4BOOT_PATH" ]; then
OMAP4BOOT_PATH="${PWD}/boot/omap4boot/out/panda"
- if [ ! -f "${OMAP4BOOT_PATH}/boot" -o ! -f "${OMAP4BOOT_PATH}/aboot.bin" ]; then
+ if [ ! -f "${OMAP4BOOT_PATH}/usbboot" -o ! -f "${OMAP4BOOT_PATH}/aboot.bin" ]; then
git submodule init || exit 1
git submodule update || exit 1
cd boot/omap4boot || exit 1