diff --git a/core/linux-odroid/PKGBUILD b/core/linux-odroid/PKGBUILD index e9dd140d4..4c8c2cdbb 100644 --- a/core/linux-odroid/PKGBUILD +++ b/core/linux-odroid/PKGBUILD @@ -7,7 +7,7 @@ pkgbase=linux-odroid pkgname=('linux-odroid-x' 'linux-odroid-u2' 'linux-odroid-x-mali' 'linux-odroid-u2-mali' 'linux-headers-odroid') _kernelname=${pkgname#linux} _basekernel=3.0 -pkgver=${_basekernel}.70 +pkgver=${_basekernel}.75 pkgrel=1 arch=('armv7h') url="http://github.com/hardkernel/linux/" @@ -20,10 +20,10 @@ source=('change-default-console-loglevel.patch' 'config_x_mali' 'config_u2_mali') md5sums=('9d3c56a4b999c8bfbd4018089a62f662' - 'ff8db445dd673ba84302e99becdcff54' - '8d9173de8d70768bda84a796a2a557c5' - '0de2c9a461a3a00306be502119406f5a' - '12f0e0ecc3aa995f3fd993c6ebb3d8fc') + '4a6798e25ac28d5282029e20c999756b' + '8f8106eadb75168ae5d139daeb4a5c16' + 'cb7b258c519ec63c87e2caf7cae66e9e' + 'd985adac4b90bf1898457f5b787cd59e') __gitroot="git://github.com/hardkernel/linux.git" __gitname="linux" diff --git a/core/linux-odroid/config_u2 b/core/linux-odroid/config_u2 index a326b4a75..e8e18798e 100644 --- a/core/linux-odroid/config_u2 +++ b/core/linux-odroid/config_u2 @@ -1,6 +1,6 @@ # # Automatically generated make config: don't edit -# Linux/arm 3.0.68 Kernel Configuration +# Linux/arm 3.0.75 Kernel Configuration # CONFIG_ARM=y CONFIG_HAVE_PWM=y @@ -2133,6 +2133,7 @@ CONFIG_VIDEO_EXYNOS_MIXER=y # CONFIG_VIDEO_EXYNOS_HDMI_CEC is not set CONFIG_VIDEO_SAMSUNG_MEMSIZE_TV=16200 # CONFIG_VIDEO_EXYNOS_MIXER_DEBUG is not set +# CONFIG_VIDEO_EXYNOS_24_FORCE is not set # CONFIG_VIDEO_EXYNOS_ROTATOR is not set # CONFIG_VIDEO_EXYNOS_FIMC_IS is not set CONFIG_MEDIA_EXYNOS=y diff --git a/core/linux-odroid/config_u2_mali b/core/linux-odroid/config_u2_mali index 9208d12c2..3cce60b1e 100644 --- a/core/linux-odroid/config_u2_mali +++ b/core/linux-odroid/config_u2_mali @@ -1,6 +1,6 @@ # # Automatically generated make config: don't edit -# Linux/arm 3.0.68 Kernel Configuration +# Linux/arm 3.0.75 Kernel Configuration # CONFIG_ARM=y CONFIG_HAVE_PWM=y @@ -2015,6 +2015,7 @@ CONFIG_VIDEO_EXYNOS_MIXER=y # CONFIG_VIDEO_EXYNOS_HDMI_CEC is not set CONFIG_VIDEO_SAMSUNG_MEMSIZE_TV=16200 # CONFIG_VIDEO_EXYNOS_MIXER_DEBUG is not set +# CONFIG_VIDEO_EXYNOS_24_FORCE is not set # CONFIG_VIDEO_EXYNOS_ROTATOR is not set # CONFIG_VIDEO_EXYNOS_FIMC_IS is not set CONFIG_MEDIA_EXYNOS=y diff --git a/core/linux-odroid/config_x b/core/linux-odroid/config_x index 0f3d1e104..403887d3b 100644 --- a/core/linux-odroid/config_x +++ b/core/linux-odroid/config_x @@ -1,6 +1,6 @@ # # Automatically generated make config: don't edit -# Linux/arm 3.0.68 Kernel Configuration +# Linux/arm 3.0.75 Kernel Configuration # CONFIG_ARM=y CONFIG_HAVE_PWM=y @@ -2132,6 +2132,7 @@ CONFIG_VIDEO_EXYNOS_MIXER=y # CONFIG_VIDEO_EXYNOS_HDMI_CEC is not set CONFIG_VIDEO_SAMSUNG_MEMSIZE_TV=16200 # CONFIG_VIDEO_EXYNOS_MIXER_DEBUG is not set +# CONFIG_VIDEO_EXYNOS_24_FORCE is not set # CONFIG_VIDEO_EXYNOS_ROTATOR is not set # CONFIG_VIDEO_EXYNOS_FIMC_IS is not set CONFIG_MEDIA_EXYNOS=y diff --git a/core/linux-odroid/config_x_mali b/core/linux-odroid/config_x_mali index f2cbc6a15..664796074 100644 --- a/core/linux-odroid/config_x_mali +++ b/core/linux-odroid/config_x_mali @@ -1,6 +1,6 @@ # # Automatically generated make config: don't edit -# Linux/arm 3.0.68 Kernel Configuration +# Linux/arm 3.0.75 Kernel Configuration # CONFIG_ARM=y CONFIG_HAVE_PWM=y @@ -2015,6 +2015,7 @@ CONFIG_VIDEO_EXYNOS_MIXER=y # CONFIG_VIDEO_EXYNOS_HDMI_CEC is not set CONFIG_VIDEO_SAMSUNG_MEMSIZE_TV=16200 # CONFIG_VIDEO_EXYNOS_MIXER_DEBUG is not set +# CONFIG_VIDEO_EXYNOS_24_FORCE is not set # CONFIG_VIDEO_EXYNOS_ROTATOR is not set # CONFIG_VIDEO_EXYNOS_FIMC_IS is not set CONFIG_MEDIA_EXYNOS=y diff --git a/core/linux-odroid/linux-odroid.install b/core/linux-odroid/linux-odroid.install new file mode 100644 index 000000000..7e0f04a6d --- /dev/null +++ b/core/linux-odroid/linux-odroid.install @@ -0,0 +1,31 @@ +# arg 1: the new package version +# arg 2: the old package versio + +KERNEL_VERSION=3.0.6-rc6-ARCH + +post_install () { + # updating module dependencies + echo ">>> Updating module dependencies. Please wait ..." + depmod ${KERNEL_VERSION} + sync + + # echo "NOTE: You will probably need to copy /boot/uImage to the first partition" + # echo " of your SD card." +} + +post_upgrade() { + if grep "^[^#]*[[:space:]]/boot" etc/fstab 2>&1 >/dev/null; then + if ! grep "[[:space:]]/boot" etc/mtab 2>&1 >/dev/null; then + echo "WARNING: /boot appears to be a seperate partition but is not mounted" + echo " This is most likely not what you want. Please mount your /boot" + echo " partition and reinstall the kernel unless you are sure this is OK" + fi + fi + + # updating module dependencies + echo ">>> Updating module dependencies. Please wait ..." + depmod ${KERNEL_VERSION} + sync +# echo "NOTE: You will probably need to copy /boot/uImage to the first partition" +# echo " of your SD card." +}