From accaaca3c2e7a685b85fc124ae5c8adbf544eda3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20Pe=C4=8Dovnik?= Date: Wed, 8 Oct 2014 15:18:42 +0200 Subject: [PATCH] Update common.sh --- common.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common.sh b/common.sh index 1bcc0b99a..a7cb2e23e 100644 --- a/common.sh +++ b/common.sh @@ -46,8 +46,8 @@ patching_sources(){ cd $DEST/$LINUXSOURCE # sunxi if [[ $LINUXSOURCE == "linux-sunxi" ]] ; then - patch --batch -N -p1 < $SRC/lib/patch/gpio.patch - patch --batch -N -p1 < $SRC/lib/patch/spi.patch + patch --batch -t -p1 < $SRC/lib/patch/gpio.patch + patch --batch -t -p1 < $SRC/lib/patch/spi.patch if [[ $BOARD == "bananapi" ]] ; then patch --batch -N -p1 < $SRC/patch/bananagmac.patch fi @@ -56,7 +56,7 @@ if [[ $LINUXSOURCE == "linux-sunxi" ]] ; then fi # cubox / hummingboard if [[ $LINUXSOURCE == "linux-cubox-next" ]] ; then - patch --batch -N -p1 < $SRC/lib/patch/hb-i2c-spi.patch + patch --batch -t -p1 < $SRC/lib/patch/hb-i2c-spi.patch fi }