diff --git a/packages/linux/package.mk b/packages/linux/package.mk index a7c9afd560..7149e6071f 100644 --- a/packages/linux/package.mk +++ b/packages/linux/package.mk @@ -19,8 +19,8 @@ PKG_NAME="linux" case "$LINUX" in 3.13) - PKG_VERSION="3.13.0-rc6" - PKG_SOURCE_DIR="$PKG_NAME-3.13-rc6" + PKG_VERSION="3.13.0-rc7" + PKG_SOURCE_DIR="$PKG_NAME-3.13-rc7" PKG_URL="http://www.kernel.org/pub/linux/kernel/v3.x/testing/$PKG_SOURCE_DIR.tar.xz" ;; *) diff --git a/packages/linux/patches/3.13.0-rc6/linux-992-0001-drm-radeon-set-correct-pipe-config-for-Hawaii-in-DCE.patch b/packages/linux/patches/3.13.0-rc6/linux-992-0001-drm-radeon-set-correct-pipe-config-for-Hawaii-in-DCE.patch deleted file mode 100644 index 86cfa6ef9d..0000000000 --- a/packages/linux/patches/3.13.0-rc6/linux-992-0001-drm-radeon-set-correct-pipe-config-for-Hawaii-in-DCE.patch +++ /dev/null @@ -1,47 +0,0 @@ -From 35a905282b20e556cd09f348f9c2bc8a22ea26d5 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Marek=20Ol=C5=A1=C3=A1k?= -Date: Mon, 23 Dec 2013 17:11:35 +0100 -Subject: [PATCH 2/4] drm/radeon: set correct pipe config for Hawaii in DCE -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Signed-off-by: Marek Olšák -Signed-off-by: Alex Deucher ---- - drivers/gpu/drm/radeon/atombios_crtc.c | 19 ++++++------------- - 1 file changed, 6 insertions(+), 13 deletions(-) - -diff --git a/drivers/gpu/drm/radeon/atombios_crtc.c b/drivers/gpu/drm/radeon/atombios_crtc.c -index b197059..ec97bad 100644 ---- a/drivers/gpu/drm/radeon/atombios_crtc.c -+++ b/drivers/gpu/drm/radeon/atombios_crtc.c -@@ -1180,19 +1180,12 @@ static int dce4_crtc_do_set_base(struct drm_crtc *crtc, - fb_format |= EVERGREEN_GRPH_ARRAY_MODE(EVERGREEN_GRPH_ARRAY_1D_TILED_THIN1); - - if (rdev->family >= CHIP_BONAIRE) { -- u32 num_pipe_configs = rdev->config.cik.max_tile_pipes; -- u32 num_rb = rdev->config.cik.max_backends_per_se; -- if (num_pipe_configs > 8) -- num_pipe_configs = 8; -- if (num_pipe_configs == 8) -- fb_format |= CIK_GRPH_PIPE_CONFIG(CIK_ADDR_SURF_P8_32x32_16x16); -- else if (num_pipe_configs == 4) { -- if (num_rb == 4) -- fb_format |= CIK_GRPH_PIPE_CONFIG(CIK_ADDR_SURF_P4_16x16); -- else if (num_rb < 4) -- fb_format |= CIK_GRPH_PIPE_CONFIG(CIK_ADDR_SURF_P4_8x16); -- } else if (num_pipe_configs == 2) -- fb_format |= CIK_GRPH_PIPE_CONFIG(CIK_ADDR_SURF_P2); -+ /* Read the pipe config from the 2D TILED SCANOUT mode. -+ * It should be the same for the other modes too, but not all -+ * modes set the pipe config field. */ -+ u32 pipe_config = (rdev->config.cik.tile_mode_array[10] >> 6) & 0x1f; -+ -+ fb_format |= CIK_GRPH_PIPE_CONFIG(pipe_config); - } else if ((rdev->family == CHIP_TAHITI) || - (rdev->family == CHIP_PITCAIRN)) - fb_format |= SI_GRPH_PIPE_CONFIG(SI_ADDR_SURF_P8_32x32_8x16); --- -1.8.3.2 - diff --git a/packages/linux/patches/3.13.0-rc6/linux-992-0002-drm-radeon-expose-render-backend-mask-to-the-userspa.patch b/packages/linux/patches/3.13.0-rc6/linux-992-0002-drm-radeon-expose-render-backend-mask-to-the-userspa.patch deleted file mode 100644 index 1bea9a6ca5..0000000000 --- a/packages/linux/patches/3.13.0-rc6/linux-992-0002-drm-radeon-expose-render-backend-mask-to-the-userspa.patch +++ /dev/null @@ -1,106 +0,0 @@ -From 439a1cfffe2c1a06e5a6394ccd5d18a8e89b15d3 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Marek=20Ol=C5=A1=C3=A1k?= -Date: Sun, 22 Dec 2013 02:18:01 +0100 -Subject: [PATCH 1/4] drm/radeon: expose render backend mask to the userspace -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -This will allow userspace to correctly program the PA_SC_RASTER_CONFIG -register, so it can be considered a fix. - -Signed-off-by: Marek Olšák -Signed-off-by: Alex Deucher -Cc: stable@vger.kernel.org ---- - drivers/gpu/drm/radeon/cik.c | 2 ++ - drivers/gpu/drm/radeon/radeon.h | 4 ++-- - drivers/gpu/drm/radeon/radeon_kms.c | 9 +++++++++ - drivers/gpu/drm/radeon/si.c | 2 ++ - include/uapi/drm/radeon_drm.h | 2 ++ - 5 files changed, 17 insertions(+), 2 deletions(-) - -diff --git a/drivers/gpu/drm/radeon/cik.c b/drivers/gpu/drm/radeon/cik.c -index 138a776..e950fab 100644 ---- a/drivers/gpu/drm/radeon/cik.c -+++ b/drivers/gpu/drm/radeon/cik.c -@@ -3114,6 +3114,8 @@ static void cik_setup_rb(struct radeon_device *rdev, - mask <<= 1; - } - -+ rdev->config.cik.backend_enable_mask = enabled_rbs; -+ - for (i = 0; i < se_num; i++) { - cik_select_se_sh(rdev, i, 0xffffffff); - data = 0; -diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeon.h -index b1f990d..45e1f44 100644 ---- a/drivers/gpu/drm/radeon/radeon.h -+++ b/drivers/gpu/drm/radeon/radeon.h -@@ -1940,7 +1940,7 @@ struct si_asic { - unsigned sc_earlyz_tile_fifo_size; - - unsigned num_tile_pipes; -- unsigned num_backends_per_se; -+ unsigned backend_enable_mask; - unsigned backend_disable_mask_per_asic; - unsigned backend_map; - unsigned num_texture_channel_caches; -@@ -1970,7 +1970,7 @@ struct cik_asic { - unsigned sc_earlyz_tile_fifo_size; - - unsigned num_tile_pipes; -- unsigned num_backends_per_se; -+ unsigned backend_enable_mask; - unsigned backend_disable_mask_per_asic; - unsigned backend_map; - unsigned num_texture_channel_caches; -diff --git a/drivers/gpu/drm/radeon/radeon_kms.c b/drivers/gpu/drm/radeon/radeon_kms.c -index 55d0b47..21d593c 100644 ---- a/drivers/gpu/drm/radeon/radeon_kms.c -+++ b/drivers/gpu/drm/radeon/radeon_kms.c -@@ -461,6 +461,15 @@ int radeon_info_ioctl(struct drm_device *dev, void *data, struct drm_file *filp) - case RADEON_INFO_SI_CP_DMA_COMPUTE: - *value = 1; - break; -+ case RADEON_INFO_SI_BACKEND_ENABLED_MASK: -+ if (rdev->family >= CHIP_BONAIRE) { -+ *value = rdev->config.cik.backend_enable_mask; -+ } else if (rdev->family >= CHIP_TAHITI) { -+ *value = rdev->config.si.backend_enable_mask; -+ } else { -+ DRM_DEBUG_KMS("BACKEND_ENABLED_MASK is si+ only!\n"); -+ } -+ break; - default: - DRM_DEBUG_KMS("Invalid request %d\n", info->request); - return -EINVAL; -diff --git a/drivers/gpu/drm/radeon/si.c b/drivers/gpu/drm/radeon/si.c -index 3eed9a1..85e1edf 100644 ---- a/drivers/gpu/drm/radeon/si.c -+++ b/drivers/gpu/drm/radeon/si.c -@@ -2855,6 +2855,8 @@ static void si_setup_rb(struct radeon_device *rdev, - mask <<= 1; - } - -+ rdev->config.si.backend_enable_mask = enabled_rbs; -+ - for (i = 0; i < se_num; i++) { - si_select_se_sh(rdev, i, 0xffffffff); - data = 0; -diff --git a/include/uapi/drm/radeon_drm.h b/include/uapi/drm/radeon_drm.h -index 2f3f7ea..fe421e8 100644 ---- a/include/uapi/drm/radeon_drm.h -+++ b/include/uapi/drm/radeon_drm.h -@@ -983,6 +983,8 @@ struct drm_radeon_cs { - #define RADEON_INFO_SI_CP_DMA_COMPUTE 0x17 - /* CIK macrotile mode array */ - #define RADEON_INFO_CIK_MACROTILE_MODE_ARRAY 0x18 -+/* query the number of render backends */ -+#define RADEON_INFO_SI_BACKEND_ENABLED_MASK 0x19 - - - struct drm_radeon_info { --- -1.8.3.2 - diff --git a/packages/linux/patches/3.13.0-rc6/linux-992-0003-drm-radeon-set-correct-pipe-config-for-Hawaii-in-DCE.patch b/packages/linux/patches/3.13.0-rc6/linux-992-0003-drm-radeon-set-correct-pipe-config-for-Hawaii-in-DCE.patch deleted file mode 100644 index 6b168ab984..0000000000 --- a/packages/linux/patches/3.13.0-rc6/linux-992-0003-drm-radeon-set-correct-pipe-config-for-Hawaii-in-DCE.patch +++ /dev/null @@ -1,102 +0,0 @@ -From e3ea94a60f12025a3a547964c31245e71ac8fa77 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Marek=20Ol=C5=A1=C3=A1k?= -Date: Mon, 23 Dec 2013 17:11:36 +0100 -Subject: [PATCH 3/4] drm/radeon: set correct number of banks for CIK chips in - DCE -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -We don't have the NUM_BANKS parameter, so we have to calculate it -from the other parameters. NUM_BANKS is not constant on CIK. - -This fixes 2D tiling for the display engine on CIK. - -Signed-off-by: Marek Olšák -Signed-off-by: Alex Deucher ---- - drivers/gpu/drm/radeon/atombios_crtc.c | 64 +++++++++++++++++++++++----------- - 1 file changed, 43 insertions(+), 21 deletions(-) - -diff --git a/drivers/gpu/drm/radeon/atombios_crtc.c b/drivers/gpu/drm/radeon/atombios_crtc.c -index ec97bad..0b9621c 100644 ---- a/drivers/gpu/drm/radeon/atombios_crtc.c -+++ b/drivers/gpu/drm/radeon/atombios_crtc.c -@@ -1143,31 +1143,53 @@ static int dce4_crtc_do_set_base(struct drm_crtc *crtc, - } - - if (tiling_flags & RADEON_TILING_MACRO) { -- if (rdev->family >= CHIP_BONAIRE) -- tmp = rdev->config.cik.tile_config; -- else if (rdev->family >= CHIP_TAHITI) -- tmp = rdev->config.si.tile_config; -- else if (rdev->family >= CHIP_CAYMAN) -- tmp = rdev->config.cayman.tile_config; -- else -- tmp = rdev->config.evergreen.tile_config; -+ evergreen_tiling_fields(tiling_flags, &bankw, &bankh, &mtaspect, &tile_split); - -- switch ((tmp & 0xf0) >> 4) { -- case 0: /* 4 banks */ -- fb_format |= EVERGREEN_GRPH_NUM_BANKS(EVERGREEN_ADDR_SURF_4_BANK); -- break; -- case 1: /* 8 banks */ -- default: -- fb_format |= EVERGREEN_GRPH_NUM_BANKS(EVERGREEN_ADDR_SURF_8_BANK); -- break; -- case 2: /* 16 banks */ -- fb_format |= EVERGREEN_GRPH_NUM_BANKS(EVERGREEN_ADDR_SURF_16_BANK); -- break; -+ /* Set NUM_BANKS. */ -+ if (rdev->family >= CHIP_BONAIRE) { -+ unsigned tileb, index, num_banks, tile_split_bytes; -+ -+ /* Calculate the macrotile mode index. */ -+ tile_split_bytes = 64 << tile_split; -+ tileb = 8 * 8 * target_fb->bits_per_pixel / 8; -+ tileb = min(tile_split_bytes, tileb); -+ -+ for (index = 0; tileb > 64; index++) { -+ tileb >>= 1; -+ } -+ -+ if (index >= 16) { -+ DRM_ERROR("Wrong screen bpp (%u) or tile split (%u)\n", -+ target_fb->bits_per_pixel, tile_split); -+ return -EINVAL; -+ } -+ -+ num_banks = (rdev->config.cik.macrotile_mode_array[index] >> 6) & 0x3; -+ fb_format |= EVERGREEN_GRPH_NUM_BANKS(num_banks); -+ } else { -+ /* SI and older. */ -+ if (rdev->family >= CHIP_TAHITI) -+ tmp = rdev->config.si.tile_config; -+ else if (rdev->family >= CHIP_CAYMAN) -+ tmp = rdev->config.cayman.tile_config; -+ else -+ tmp = rdev->config.evergreen.tile_config; -+ -+ switch ((tmp & 0xf0) >> 4) { -+ case 0: /* 4 banks */ -+ fb_format |= EVERGREEN_GRPH_NUM_BANKS(EVERGREEN_ADDR_SURF_4_BANK); -+ break; -+ case 1: /* 8 banks */ -+ default: -+ fb_format |= EVERGREEN_GRPH_NUM_BANKS(EVERGREEN_ADDR_SURF_8_BANK); -+ break; -+ case 2: /* 16 banks */ -+ fb_format |= EVERGREEN_GRPH_NUM_BANKS(EVERGREEN_ADDR_SURF_16_BANK); -+ break; -+ } - } - - fb_format |= EVERGREEN_GRPH_ARRAY_MODE(EVERGREEN_GRPH_ARRAY_2D_TILED_THIN1); -- -- evergreen_tiling_fields(tiling_flags, &bankw, &bankh, &mtaspect, &tile_split); - fb_format |= EVERGREEN_GRPH_TILE_SPLIT(tile_split); - fb_format |= EVERGREEN_GRPH_BANK_WIDTH(bankw); - fb_format |= EVERGREEN_GRPH_BANK_HEIGHT(bankh); --- -1.8.3.2 - diff --git a/packages/linux/patches/3.13.0-rc6/linux-992-0004-drm-radeon-Bump-version-for-CIK-DCE-tiling-fix.patch b/packages/linux/patches/3.13.0-rc6/linux-992-0004-drm-radeon-Bump-version-for-CIK-DCE-tiling-fix.patch deleted file mode 100644 index 228a8e0ff4..0000000000 --- a/packages/linux/patches/3.13.0-rc6/linux-992-0004-drm-radeon-Bump-version-for-CIK-DCE-tiling-fix.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 9482d0d37b46d2bd968d357bbd912cae49caf163 Mon Sep 17 00:00:00 2001 -From: Alex Deucher -Date: Mon, 23 Dec 2013 11:31:44 -0500 -Subject: [PATCH 4/4] drm/radeon: Bump version for CIK DCE tiling fix - -Note when CIK DCE tiling was fixed. - -Signed-off-by: Alex Deucher ---- - drivers/gpu/drm/radeon/radeon_drv.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/drivers/gpu/drm/radeon/radeon_drv.c b/drivers/gpu/drm/radeon/radeon_drv.c -index 1958b36a..db39ea3 100644 ---- a/drivers/gpu/drm/radeon/radeon_drv.c -+++ b/drivers/gpu/drm/radeon/radeon_drv.c -@@ -77,9 +77,10 @@ - * 2.33.0 - Add SI tiling mode array query - * 2.34.0 - Add CIK tiling mode array query - * 2.35.0 - Add CIK macrotile mode array query -+ * 2.36.0 - Fix CIK DCE tiling setup - */ - #define KMS_DRIVER_MAJOR 2 --#define KMS_DRIVER_MINOR 35 -+#define KMS_DRIVER_MINOR 36 - #define KMS_DRIVER_PATCHLEVEL 0 - int radeon_driver_load_kms(struct drm_device *dev, unsigned long flags); - int radeon_driver_unload_kms(struct drm_device *dev); --- -1.8.3.2 - diff --git a/packages/linux/patches/3.13.0-rc6/linux-003-no_dev_console.patch b/packages/linux/patches/3.13.0-rc7/linux-003-no_dev_console.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-003-no_dev_console.patch rename to packages/linux/patches/3.13.0-rc7/linux-003-no_dev_console.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-052-XBOX_remote_support.patch b/packages/linux/patches/3.13.0-rc7/linux-052-XBOX_remote_support.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-052-XBOX_remote_support.patch rename to packages/linux/patches/3.13.0-rc7/linux-052-XBOX_remote_support.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-053-spinelplus-remote-0.2.patch b/packages/linux/patches/3.13.0-rc7/linux-053-spinelplus-remote-0.2.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-053-spinelplus-remote-0.2.patch rename to packages/linux/patches/3.13.0-rc7/linux-053-spinelplus-remote-0.2.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-054-nuvoton_revert_d7b290a1056c5564eec8a1b169c6e84ff3.6.114c13.patch b/packages/linux/patches/3.13.0-rc7/linux-054-nuvoton_revert_d7b290a1056c5564eec8a1b169c6e84ff3.6.114c13.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-054-nuvoton_revert_d7b290a1056c5564eec8a1b169c6e84ff3.6.114c13.patch rename to packages/linux/patches/3.13.0-rc7/linux-054-nuvoton_revert_d7b290a1056c5564eec8a1b169c6e84ff3.6.114c13.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-055-add_Formosa_eHome_Infrared_Receiver.patch b/packages/linux/patches/3.13.0-rc7/linux-055-add_Formosa_eHome_Infrared_Receiver.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-055-add_Formosa_eHome_Infrared_Receiver.patch rename to packages/linux/patches/3.13.0-rc7/linux-055-add_Formosa_eHome_Infrared_Receiver.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-056-add_Adaptec_eHome_Infrared_Receiver.patch b/packages/linux/patches/3.13.0-rc7/linux-056-add_Adaptec_eHome_Infrared_Receiver.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-056-add_Adaptec_eHome_Infrared_Receiver.patch rename to packages/linux/patches/3.13.0-rc7/linux-056-add_Adaptec_eHome_Infrared_Receiver.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-057-Removed-MCE-customer-code-restriction-in-rc6-decode.patch b/packages/linux/patches/3.13.0-rc7/linux-057-Removed-MCE-customer-code-restriction-in-rc6-decode.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-057-Removed-MCE-customer-code-restriction-in-rc6-decode.patch rename to packages/linux/patches/3.13.0-rc7/linux-057-Removed-MCE-customer-code-restriction-in-rc6-decode.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-057-add_SMK_Manufacturing_Inc_Infrared_Receiver.patch b/packages/linux/patches/3.13.0-rc7/linux-057-add_SMK_Manufacturing_Inc_Infrared_Receiver.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-057-add_SMK_Manufacturing_Inc_Infrared_Receiver.patch rename to packages/linux/patches/3.13.0-rc7/linux-057-add_SMK_Manufacturing_Inc_Infrared_Receiver.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-058.05-hid_sony-add_autorepeat_for_PS3_remotes.patch b/packages/linux/patches/3.13.0-rc7/linux-058.05-hid_sony-add_autorepeat_for_PS3_remotes.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-058.05-hid_sony-add_autorepeat_for_PS3_remotes.patch rename to packages/linux/patches/3.13.0-rc7/linux-058.05-hid_sony-add_autorepeat_for_PS3_remotes.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-058.06-hid_sony-add_SMK_link.patch b/packages/linux/patches/3.13.0-rc7/linux-058.06-hid_sony-add_SMK_link.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-058.06-hid_sony-add_SMK_link.patch rename to packages/linux/patches/3.13.0-rc7/linux-058.06-hid_sony-add_SMK_link.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-059-remove_some_xpad_pids-0.2.patch b/packages/linux/patches/3.13.0-rc7/linux-059-remove_some_xpad_pids-0.2.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-059-remove_some_xpad_pids-0.2.patch rename to packages/linux/patches/3.13.0-rc7/linux-059-remove_some_xpad_pids-0.2.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-060-add_AUGUST_DVB-T205.patch b/packages/linux/patches/3.13.0-rc7/linux-060-add_AUGUST_DVB-T205.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-060-add_AUGUST_DVB-T205.patch rename to packages/linux/patches/3.13.0-rc7/linux-060-add_AUGUST_DVB-T205.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-203-stb0899_enable_low_symbol_rate.patch b/packages/linux/patches/3.13.0-rc7/linux-203-stb0899_enable_low_symbol_rate.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-203-stb0899_enable_low_symbol_rate.patch rename to packages/linux/patches/3.13.0-rc7/linux-203-stb0899_enable_low_symbol_rate.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-210-dvbsky.patch b/packages/linux/patches/3.13.0-rc7/linux-210-dvbsky.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-210-dvbsky.patch rename to packages/linux/patches/3.13.0-rc7/linux-210-dvbsky.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-212-mantis_stb0899_faster_lock.patch b/packages/linux/patches/3.13.0-rc7/linux-212-mantis_stb0899_faster_lock.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-212-mantis_stb0899_faster_lock.patch rename to packages/linux/patches/3.13.0-rc7/linux-212-mantis_stb0899_faster_lock.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-221-ngene-octopus.patch b/packages/linux/patches/3.13.0-rc7/linux-221-ngene-octopus.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-221-ngene-octopus.patch rename to packages/linux/patches/3.13.0-rc7/linux-221-ngene-octopus.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-222-stb0899_signal_quality.patch b/packages/linux/patches/3.13.0-rc7/linux-222-stb0899_signal_quality.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-222-stb0899_signal_quality.patch rename to packages/linux/patches/3.13.0-rc7/linux-222-stb0899_signal_quality.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-223-Fix-video-artifacts-with-tt-3600-s2-usb.patch b/packages/linux/patches/3.13.0-rc7/linux-223-Fix-video-artifacts-with-tt-3600-s2-usb.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-223-Fix-video-artifacts-with-tt-3600-s2-usb.patch rename to packages/linux/patches/3.13.0-rc7/linux-223-Fix-video-artifacts-with-tt-3600-s2-usb.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-701-linksys_aes2500_brcmfmac.patch b/packages/linux/patches/3.13.0-rc7/linux-701-linksys_aes2500_brcmfmac.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-701-linksys_aes2500_brcmfmac.patch rename to packages/linux/patches/3.13.0-rc7/linux-701-linksys_aes2500_brcmfmac.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-703-macmini2012-ethernet.patch b/packages/linux/patches/3.13.0-rc7/linux-703-macmini2012-ethernet.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-703-macmini2012-ethernet.patch rename to packages/linux/patches/3.13.0-rc7/linux-703-macmini2012-ethernet.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-704-Support-for-Ubiquiti-WifiStation.patch b/packages/linux/patches/3.13.0-rc7/linux-704-Support-for-Ubiquiti-WifiStation.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-704-Support-for-Ubiquiti-WifiStation.patch rename to packages/linux/patches/3.13.0-rc7/linux-704-Support-for-Ubiquiti-WifiStation.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-705-Support-for-Buffalo-WLI-UC-G300HP-V1.patch b/packages/linux/patches/3.13.0-rc7/linux-705-Support-for-Buffalo-WLI-UC-G300HP-V1.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-705-Support-for-Buffalo-WLI-UC-G300HP-V1.patch rename to packages/linux/patches/3.13.0-rc7/linux-705-Support-for-Buffalo-WLI-UC-G300HP-V1.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-706-Sitecom-N300.patch b/packages/linux/patches/3.13.0-rc7/linux-706-Sitecom-N300.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-706-Sitecom-N300.patch rename to packages/linux/patches/3.13.0-rc7/linux-706-Sitecom-N300.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-900-hide_tsc_error.patch b/packages/linux/patches/3.13.0-rc7/linux-900-hide_tsc_error.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-900-hide_tsc_error.patch rename to packages/linux/patches/3.13.0-rc7/linux-900-hide_tsc_error.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-950-saa716x_PCIe_interface_chipset.patch b/packages/linux/patches/3.13.0-rc7/linux-950-saa716x_PCIe_interface_chipset.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-950-saa716x_PCIe_interface_chipset.patch rename to packages/linux/patches/3.13.0-rc7/linux-950-saa716x_PCIe_interface_chipset.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-990.06-hda-Avoid-outputting-HDMI-audio-before-prepare-.patch b/packages/linux/patches/3.13.0-rc7/linux-990.06-hda-Avoid-outputting-HDMI-audio-before-prepare-.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-990.06-hda-Avoid-outputting-HDMI-audio-before-prepare-.patch rename to packages/linux/patches/3.13.0-rc7/linux-990.06-hda-Avoid-outputting-HDMI-audio-before-prepare-.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-991.01-ptrace_fix.patch b/packages/linux/patches/3.13.0-rc7/linux-991.01-ptrace_fix.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-991.01-ptrace_fix.patch rename to packages/linux/patches/3.13.0-rc7/linux-991.01-ptrace_fix.patch diff --git a/packages/linux/patches/3.13.0-rc6/linux-995-CX24120-13Z_frontend.patch b/packages/linux/patches/3.13.0-rc7/linux-995-CX24120-13Z_frontend.patch similarity index 100% rename from packages/linux/patches/3.13.0-rc6/linux-995-CX24120-13Z_frontend.patch rename to packages/linux/patches/3.13.0-rc7/linux-995-CX24120-13Z_frontend.patch