core/linux-odroid to 3.0.75-1

This commit is contained in:
Kevin Mihelich 2013-04-30 19:05:52 +00:00
parent b3d2d75cd3
commit 7b4c83aebf
6 changed files with 44 additions and 9 deletions

View file

@ -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"

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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."
}