From: Frans Meulenbroeks Date: Mon, 27 Mar 2006 17:39:14 +0000 (+0000) Subject: ixp4xx kernel: added patch for copypage-xscale.c X-Git-Tag: Release-2010-05/1~9453^2~2112^2~3 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a780ea25fb3b5d0261149e3a4b91bcd25386daa;p=openembedded.git ixp4xx kernel: added patch for copypage-xscale.c this patch exports scale_mc_clear_user_page so video-buf can be loaded again; this symbol got lost between 2.6.15 and 2.6.16 --- diff --git a/packages/linux/ixp4xx-kernel/2.6.16/copypage-xscale.patch b/packages/linux/ixp4xx-kernel/2.6.16/copypage-xscale.patch new file mode 100644 index 0000000000..b73d219708 --- /dev/null +++ b/packages/linux/ixp4xx-kernel/2.6.16/copypage-xscale.patch @@ -0,0 +1,21 @@ +*** linux-2.6.16/arch/arm/mm/copypage-xscale.c- Mon Mar 27 19:10:25 2006 +--- linux-2.6.16/arch/arm/mm/copypage-xscale.c Sun Mar 26 19:32:53 2006 +*************** +*** 15,20 **** +--- 15,21 ---- + */ + #include + #include ++ #include + + #include + #include +*************** +*** 129,131 **** +--- 130,135 ---- + .cpu_clear_user_page = xscale_mc_clear_user_page, + .cpu_copy_user_page = xscale_mc_copy_user_page, + }; ++ ++ EXPORT_SYMBOL(xscale_mc_clear_user_page); ++ EXPORT_SYMBOL(xscale_mc_copy_user_page); diff --git a/packages/linux/ixp4xx-kernel_2.6.16.bb b/packages/linux/ixp4xx-kernel_2.6.16.bb index 7c19cc9b1d..ba9a2522f7 100644 --- a/packages/linux/ixp4xx-kernel_2.6.16.bb +++ b/packages/linux/ixp4xx-kernel_2.6.16.bb @@ -8,7 +8,7 @@ PR_CONFIG = "1" # Increment the number below (i.e. the digits after PR) when # making changes within this file or for changes to the patches # applied to the kernel. -PR = "r0.${PR_CONFIG}" +PR = "r1.${PR_CONFIG}" include ixp4xx-kernel.inc @@ -17,8 +17,9 @@ include ixp4xx-kernel.inc # IXP4XX_PATCHES - full list of patches to apply IXP4XX_PATCHES = "" -IXP4XX_PATCHES += "file://patch-2.6.16-rc6-ide1;patch=1" +IXP4XX_PATCHES += "file://patch-2.6.16-rc4-ide2;patch=1" IXP4XX_PATCHES += "file://leds-class.patch;patch=1" +IXP4XX_PATCHES += "file://copypage-xscale.patch;patch=1" # IXP4XX_PATCHES += "file://06-remove-extraversion.patch;patch=1" IXP4XX_PATCHES += "file://10-ixp4xx-fix-irq.patch;patch=1" IXP4XX_PATCHES += "file://11-mtdpart-redboot-config-byteswap.patch;patch=1"