Skip to content

Commit

Permalink
UDOO legacy kernel compilation fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
igorpecovnik committed Nov 12, 2015
1 parent ac1b23d commit 8f65ce6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 18 deletions.
9 changes: 8 additions & 1 deletion config/linux-udoo.config
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
# Linux/arm 3.14.28 Kernel Configuration
# Linux/arm 3.14.57 Kernel Configuration
#
CONFIG_ARM=y
CONFIG_MIGHT_HAVE_PCI=y
Expand Down Expand Up @@ -1432,6 +1432,7 @@ CONFIG_INPUT_TOUCHSCREEN=y
CONFIG_TOUCHSCREEN_EGALAX=y
CONFIG_TOUCHSCREEN_ELAN=y
# CONFIG_TOUCHSCREEN_FUJITSU is not set
CONFIG_TOUCHSCREEN_GOODIX=m
# CONFIG_TOUCHSCREEN_ILI210X is not set
# CONFIG_TOUCHSCREEN_GUNZE is not set
# CONFIG_TOUCHSCREEN_ELO is not set
Expand Down Expand Up @@ -1996,6 +1997,7 @@ CONFIG_MFD_SYSCON=y
# CONFIG_MFD_WM831X_SPI is not set
# CONFIG_MFD_WM8350_I2C is not set
# CONFIG_MFD_WM8994 is not set
# CONFIG_MFD_TDA1997X is not set
# CONFIG_VEXPRESS_CONFIG is not set
CONFIG_REGULATOR=y
# CONFIG_REGULATOR_DEBUG is not set
Expand All @@ -2014,6 +2016,7 @@ CONFIG_REGULATOR_DA9052=y
# CONFIG_REGULATOR_LP3972 is not set
# CONFIG_REGULATOR_LP872X is not set
# CONFIG_REGULATOR_LP8755 is not set
CONFIG_REGULATOR_LTC3676=m
# CONFIG_REGULATOR_MAX1586 is not set
CONFIG_REGULATOR_MAX17135=y
# CONFIG_REGULATOR_MAX8649 is not set
Expand Down Expand Up @@ -2154,6 +2157,7 @@ CONFIG_VIDEO_V4L2_MXC_INT_DEVICE=m
# MXC Camera/V4L2 PRP Features support
#
CONFIG_VIDEO_MXC_IPU_CAMERA=y
# CONFIG_MXC_TVIN_TDA1997X is not set
CONFIG_MXC_CAMERA_OV5640=m
CONFIG_MXC_CAMERA_OV5642=m
CONFIG_MXC_CAMERA_OV5640_MIPI=m
Expand Down Expand Up @@ -2366,6 +2370,7 @@ CONFIG_BACKLIGHT_PWM=y
# CONFIG_BACKLIGHT_BD6107 is not set
CONFIG_FB_MXC=y
CONFIG_FB_MXC_SYNC_PANEL=y
# CONFIG_FB_MXC_TVOUT_ADV739X is not set
CONFIG_FB_MXC_LDB=y
CONFIG_FB_MXC_MIPI_DSI=y
CONFIG_FB_MXC_TRULY_WVGA_SYNC_PANEL=y
Expand Down Expand Up @@ -2464,11 +2469,13 @@ CONFIG_SND_SOC_IMX_SPDIF=y
# CONFIG_SND_SOC_IMX_MC13783 is not set
CONFIG_SND_SOC_IMX_HDMI=y
# CONFIG_SND_SOC_IMX_SI476X is not set
# CONFIG_SND_SOC_IMX_TDA1997X is not set
CONFIG_SND_SOC_I2C_AND_SPI=y
CONFIG_SND_SOC_CS42XX8=m
CONFIG_SND_SOC_CS42XX8_I2C=m
CONFIG_SND_SOC_FSL_MQS=y
CONFIG_SND_SOC_HDMI_CODEC=y
# CONFIG_SND_SOC_TDA1997X is not set
CONFIG_SND_SOC_VT1613=y
# CONFIG_SND_SIMPLE_CARD is not set
# CONFIG_SOUND_PRIME is not set
Expand Down
19 changes: 2 additions & 17 deletions patching.sh
Expand Up @@ -151,23 +151,8 @@ if [[ $BOARD == udoo* ]] ; then
patchme "Upgrade to 4.2.6" "patch-4.2.5-6" "default" "kernel"
else
#
#patchme "remove strange DTBs from tree" "udoo_dtb.patch" "default" "kernel"
#patchme "remove n/a v4l2-capture from Udoo DTS" "udoo_dts_fix.patch" "default" "kernel"
# patchme "deb packaging fix" "packaging-udoo-fix.patch" "default" "kernel"
# temp instead of this patch

# Upgrade to 3.14.55 (until 34 auto)
for (( c=28; c<=34; c++ ))
do
display_alert "Patching" "3.14.$c-$(( $c+1 ))" "info"
wget wget -qO - "https://www.kernel.org/pub/linux/kernel/v3.x/incr/patch-3.14.$c-$(( $c+1 )).gz" | gzip -d | patch -p1 -l -f -s >/dev/null 2>&1
done

patchme "Upgrade to 3.14.36" "neo-patch-3.14.35-36" "default" "kernel"
patchme "Upgrade to 3.14.37" "neo-patch-3.14.36-37" "default" "kernel"
patchme "Upgrade to 3.14.38" "neo-patch-3.14.37-38" "default" "kernel"
patchme "Upgrade to 3.14.39" "neo-patch-3.14.38-39" "default" "kernel"
for (( c=39; c<=56; c++ ))
patchme "remove strange DTBs from tree" "udoo_dtb.patch" "default" "kernel"
for (( c=56; c<=56; c++ ))
do
display_alert "Patching" "3.14.$c-$(( $c+1 ))" "info"
wget wget -qO - "https://www.kernel.org/pub/linux/kernel/v3.x/incr/patch-3.14.$c-$(( $c+1 )).gz" | gzip -d | patch -p1 -l -f -s >/dev/null 2>&1
Expand Down

0 comments on commit 8f65ce6

Please sign in to comment.