[LEDE-DEV] [PATCH 00/25] Add support for kernel 4.14

Hauke Mehrtens hauke at hauke-m.de
Sun Dec 10 14:12:06 PST 2017


This adds support for kernel 4.14 to LEDE.
This ports the generic patches to kernel 4.14 and also adds support for 
kernel 4.14 to the x86 target, I am also working on adding support for 
the lantiq target, but there are still some problems with the xrx200 
Ethernet driver.
I would like to use this on some arm64 boards where the main kernel 
development happens in the upstream kernel, for these boards it should 
be much easier to make them work on kernel 4.14 compared to kernel 4.9. 

My development tree can be found here:
https://git.lede-project.org/?p=lede/hauke/staging.git;a=shortlog;h=refs/heads/kernel-4.14
I will update this tree more often than these patches sets, but it will 
also be rebased.
It could be that not all patches went to the mailing list because they 
are too big.
Ypu can also find the patches on github:
https://github.com/lede-project/source/pull/1546


This is my current state and everything should compile for the x86 
target, I think this is now in  a state to request some comments.
If some of my changes are looking suspicious to you please send a mail, 
I am also not sure about everything and I assume that there are probably 
some kernel configuration options set to the wrong value and some 
patches probably still have some problems.

This was tested in qemu on x86, in a ramdisk on a lantiq device and on 
some sunxi devices.

Changes since:
RFC:
 * do not deactivate kmod-sched-cake, it compiles with 4.14
 * deactivate kmod-fbcon for kernel 4.14, this needs bigger rework
 * kmod-mt76 patch removed as it is integrated already
 * added a lot more config options to target/linux/generic/config-4.14
 * fixed b53/b53_common.c compile problem
 * migrated to kernel 4.14.5
 * based on current kernel 4.9 code
 * added config option CONFIG_104_QUAD_8 to x86 target
 * update xtables-addons to new version which already includes one fix

Hauke Mehrtens (25):
  xtables-addons: update to version 2.14
  kernel: generic: add some more 4.9 configure options
  x86: refresh configuration
  kernel: generic: copy kernel 4.9 patches and config to 4.14
  kernel: generic: make patches apply on top of kernel 4.14
  kernel: tg3: deactivate hwmon for kernel 4.14
  kernel: add kmod-dax
  kernel: add kmod-lib-zstd
  kernel: add kmod-crypto-acompress
  kernel: add kmod-crypto-rsa
  kernel: add kmod-crypto-ecdh
  kernel: unset CONFIG_CIFS_SMB311 in kmod-fs-cifs
  kernel: deactivate some new network features
  kernel: kmod-rxrpc: handle renamed kernel module
  kernel: kmod-mmc: handle moved mmc_block.ko
  kernel: kmod-sound-core: handle moved snd-seq-device.ko
  kernel: kmod-fbcon: deactivate for kernel 4.14
  xtables-addons: fix compile with kernel 4.14
  kernel: kmod-zram: deactivate CONFIG_ZRAM_WRITEBACK for kernel 4.14
  kernel: kmod-iio-bmp280: allow compile with kernel 4.14
  kernel: kmod-rtc-ds1307: add dependency to regmap
  kernel: add missing dependencies to kmod-crypto-acompress
  kernel: include: remove last .0 from kernel versions again
  x86: copy kernel 4.9 patches and config to 4.14
  x86: update config and make patches apply for kernel 4.14

 include/kernel-version.mk                          |    2 +
 include/kernel.mk                                  |    2 +-
 package/kernel/linux/modules/block.mk              |   13 +-
 package/kernel/linux/modules/crypto.mk             |   61 +-
 package/kernel/linux/modules/fs.mk                 |    5 +-
 package/kernel/linux/modules/iio.mk                |    2 +-
 package/kernel/linux/modules/lib.mk                |   24 +
 package/kernel/linux/modules/netdevices.mk         |    5 +-
 package/kernel/linux/modules/netsupport.mk         |   13 +-
 package/kernel/linux/modules/other.mk              |    8 +-
 package/kernel/linux/modules/sound.mk              |    3 +-
 package/kernel/linux/modules/video.mk              |    2 +-
 package/network/utils/xtables-addons/Makefile      |    4 +-
 .../patches/201-fix-lua-packetscript.patch         |    9 +
 ...t-hardcode-path-to-awk-in-scripts-ld-vers.patch |   30 +
 .../backport-4.14/011-kbuild-export-SUBARCH.patch  |   23 +
 .../020-backport_netfilter_rtcache.patch           |  558 +++
 .../025-tcp-allow-drivers-to-tweak-TSQ-logic.patch |   85 +
 ...fix-typo-in-KPP-dependency-of-CRYPTO_ECDH.patch |   25 +
 ...nable-master-mode-for-BCM54210E-and-B5021.patch |   50 +
 ...adcom-support-new-device-flag-for-setting.patch |   54 +
 ...fix-typo-in-KPP-dependency-of-CRYPTO_ECDH.patch |   25 +
 target/linux/generic/{config-4.9 => config-4.14}   |  286 +-
 target/linux/generic/config-4.9                    |    9 +
 .../generic/files/drivers/net/phy/b53/b53_common.c |    1 +
 .../linux/generic/files/drivers/net/phy/rtl8306.c  |    3 +
 .../linux/generic/files/drivers/net/phy/swconfig.c |   36 +-
 .../generic/hack-4.14/202-reduce_module_size.patch |   24 +
 .../linux/generic/hack-4.14/204-module_strip.patch |  205 +
 .../generic/hack-4.14/207-disable-modorder.patch   |   44 +
 .../hack-4.14/210-darwin_scripts_include.patch     | 3065 ++++++++++++
 .../hack-4.14/211-host_tools_portability.patch     |   40 +
 .../hack-4.14/212-byteshift_portability.patch      |   65 +
 .../hack-4.14/214-spidev_h_portability.patch       |   24 +
 .../linux/generic/hack-4.14/220-gc_sections.patch  |  258 +
 .../generic/hack-4.14/221-module_exports.patch     |  101 +
 .../hack-4.14/230-openwrt_lzma_options.patch       |   71 +
 .../generic/hack-4.14/250-netfilter_depends.patch  |   27 +
 .../generic/hack-4.14/251-sound_kconfig.patch      |  197 +
 .../generic/hack-4.14/259-regmap_dynamic.patch     |  109 +
 .../hack-4.14/260-crypto_test_dependencies.patch   |   60 +
 .../linux/generic/hack-4.14/280-rfkill-stubs.patch |   84 +
 .../hack-4.14/301-mips_image_cmdline_hack.patch    |   38 +
 .../hack-4.14/321-powerpc_crtsavres_prereq.patch   |   38 +
 .../{hack-4.9 => hack-4.14}/531-debloat_lzma.patch |    0
 .../640-bridge-only-accept-EAP-locally.patch       |   32 +
 .../hack-4.14/641-bridge_port_isolate.patch        |   76 +
 .../hack-4.14/651-wireless_mesh_header.patch       |   24 +
 .../generic/hack-4.14/660-fq_codel_defaults.patch  |   27 +
 .../hack-4.14/661-use_fq_codel_by_default.patch    |   94 +
 .../generic/hack-4.14/662-remove_pfifo_fast.patch  |  159 +
 .../hack-4.14/700-swconfig_switch_drivers.patch    |  128 +
 .../hack-4.14/702-phy_add_aneg_done_function.patch |   27 +
 .../linux/generic/hack-4.14/721-phy_packets.patch  |  176 +
 .../hack-4.14/773-bgmac-add-srab-switch.patch      |   98 +
 .../generic/hack-4.14/835-misc-owl_loader.patch    |   52 +
 .../generic/hack-4.14/901-debloat_sock_diag.patch  |  136 +
 .../linux/generic/hack-4.14/902-debloat_proc.patch |  405 ++
 .../generic/hack-4.14/904-debloat_dma_buf.patch    |   64 +
 .../generic/hack-4.14/910-kobject_uevent.patch     |   32 +
 .../911-kobject_add_broadcast_uevent.patch         |   76 +
 ...1-always-create-console-node-in-initramfs.patch |    0
 target/linux/generic/hack-4.14/930-crashlog.patch  |  338 ++
 ...MIPS-fix-cache-flushing-for-highmem-pages.patch |   30 +
 .../pending-4.14/110-ehci_hcd_ignore_oc.patch      |   79 +
 ...c_node_mem_map-with-ARCH_PFN_OFFSET-calcu.patch |   82 +
 .../130-add-linux-spidev-compatible-si3210.patch   |   18 +
 ...o_set_value_cansleep-for-setting-chipsele.patch |   20 +
 ...-.rename2-and-add-RENAME_WHITEOUT-support.patch |    0
 .../141-jffs2-add-RENAME_EXCHANGE-support.patch    |    0
 ...-bridge_allow_receiption_on_disabled_port.patch |   43 +
 ...t-add-generic-parsing-of-linux-part-probe.patch |  161 +
 ...180-net-phy-at803x-add-support-for-AT8032.patch |   70 +
 ...x-wrong-comment-related-to-link-detection.patch |   43 +
 .../pending-4.14/201-extra_optimization.patch      |   32 +
 .../pending-4.14/203-kallsyms_uncompressed.patch   |  119 +
 .../pending-4.14/205-backtrace_module_info.patch   |   45 +
 .../pending-4.14/206-mips-disable-vdso.patch       |   23 +
 ...unsane-filenames-from-deps_initramfs-list.patch |   46 +
 ...61-enable_wilink_platform_without_drivers.patch |    0
 ...l.h-glibc-specific-inclusion-of-sysinfo.h.patch |   32 +
 ...pi-libc-compat.h-do-not-rely-on-__GLIBC__.patch |  105 +
 ...er.h-prevent-redefinition-of-struct-ethhd.patch |   65 +
 .../pending-4.14/300-mips_expose_boot_raw.patch    |   40 +
 .../302-mips_no_branch_likely.patch                |    0
 .../pending-4.14/304-mips_disable_fpu.patch        |  137 +
 .../pending-4.14/305-mips_module_reloc.patch       |  366 ++
 .../306-mips_mem_functions_performance.patch       |  106 +
 .../307-mips_highmem_offset.patch                  |    0
 .../generic/pending-4.14/308-mips32r2_tune.patch   |   22 +
 .../310-arm_module_unresolved_weak_sym.patch       |   22 +
 ...Accept-command-line-parameters-from-users.patch |  272 +
 .../pending-4.14/332-arc-add-OWRTDTB-section.patch |   80 +
 ...rc-enable-unaligned-access-in-kernel-mode.patch |    0
 ...340-MIPS-mm-remove-mips_dma_mapping_error.patch |   32 +
 ...m-remove-no-op-dma_map_ops-where-possible.patch |  140 +
 .../400-mtd-add-rootfs-split-support.patch         |  123 +
 ...port-for-different-partition-parser-types.patch |  110 +
 ...mtd-parsers-for-rootfs-and-firmware-split.patch |   81 +
 .../403-mtd-hook-mtdsplit-to-Kbuild.patch          |   32 +
 .../404-mtd-add-more-helper-functions.patch        |   94 +
 .../411-mtd-partial_eraseblock_write.patch         |  154 +
 .../412-mtd-partial_eraseblock_unlock.patch        |    0
 .../420-mtd-redboot_space.patch                    |    0
 .../430-mtd-add-myloader-partition-parser.patch    |   47 +
 ...part-check-for-bad-blocks-when-calculatin.patch |    0
 ...-mtd-bcm47xxpart-detect-T_Meter-partition.patch |    0
 .../440-block2mtd_init.patch                       |    0
 .../441-block2mtd_probe.patch                      |    0
 .../460-mtd-cfi_cmdset_0002-no-erase_suspend.patch |   25 +
 ..._cmdset_0002-add-buffer-write-cmd-timeout.patch |   17 +
 ...465-m25p80-mx-disable-software-protection.patch |   18 +
 ...-support-limiting-4K-sectors-support-base.patch |   56 +
 .../476-mtd-spi-nor-add-eon-en25q128.patch         |    0
 .../477-mtd-add-spi-nor-add-mx25u3235f.patch       |   18 +
 .../480-mtd-set-rootfs-to-be-root-dev.patch        |   38 +
 ...tach-mtd-device-named-ubi-or-data-on-boot.patch |   73 +
 ...bi-auto-create-ubiblock-device-for-rootfs.patch |   66 +
 ...-mounting-ubi0-rootfs-in-init-do_mounts.c.patch |    0
 ...-set-ROOT_DEV-to-ubiblock-rootfs-if-unset.patch |   34 +
 .../494-mtd-ubi-add-EOF-marker-support.patch       |   60 +
 .../530-jffs2_make_lzma_available.patch            | 5180 ++++++++++++++++++++
 .../532-jffs2_eofdetect.patch                      |    0
 ...1-ubifs-fix-default-compression-selection.patch |   37 +
 .../600-netfilter_conntrack_flush.patch            |   95 +
 ...610-netfilter_match_bypass_default_checks.patch |  110 +
 .../611-netfilter_match_bypass_default_table.patch |  111 +
 .../612-netfilter_match_reduce_memory_access.patch |   22 +
 .../613-netfilter_optional_tcp_window_check.patch  |   44 +
 .../pending-4.14/616-net_optimize_xfrm_calls.patch |   20 +
 .../pending-4.14/630-packet_socket_type.patch      |  138 +
 .../650-pppoe_header_pad.patch                     |    0
 .../pending-4.14/655-increase_skb_pad.patch        |   20 +
 .../666-Add-support-for-MAP-E-FMRs-mesh-mode.patch |  500 ++
 ...jecting-with-source-address-failed-policy.patch |  247 +
 ...-defines-for-_POLICY_FAILED-until-all-cod.patch |   50 +
 ...80-NET-skip-GRO-for-foreign-MAC-addresses.patch |  145 +
 .../681-NET-add-of_get_mac_address_mtd.patch       |    0
 .../generic/pending-4.14/701-phy_extension.patch   |   95 +
 ...-add-detach-callback-to-struct-phy_driver.patch |   38 +
 ...t-phy-at803x-allow-to-configure-via-pdata.patch |  142 +
 .../735-net-phy-at803x-fix-at8033-sgmii-mode.patch |   54 +
 .../810-pci_disable_common_quirks.patch            |   60 +
 .../811-pci_disable_usb_common_quirks.patch        |  113 +
 ...b-Remove-annoying-warning-about-bogus-URB.patch |   76 +
 .../generic/pending-4.14/831-ledtrig_netdev.patch  |   74 +
 .../generic/pending-4.14/834-ledtrig-libata.patch  |  149 +
 .../generic/pending-4.14/920-mangle_bootargs.patch |   71 +
 target/linux/x86/64/config-default                 |   47 +-
 target/linux/x86/config-4.14                       |  525 ++
 target/linux/x86/generic/config-default            |   54 +-
 target/linux/x86/geode/config-default              |   12 +-
 target/linux/x86/legacy/config-default             |   30 +-
 .../x86/patches-4.14/011-tune_lzma_options.patch   |   22 +
 .../100-fix_cs5535_clockevt.patch                  |    0
 .../patches-4.14/200-pcengines-apu2-reboot.patch   |   19 +
 .../800-hwmon-w83627ehf-dont-claim-nct677x.patch   |   30 +
 157 files changed, 19268 insertions(+), 70 deletions(-)
 create mode 100644 target/linux/generic/backport-4.14/010-Kbuild-don-t-hardcode-path-to-awk-in-scripts-ld-vers.patch
 create mode 100644 target/linux/generic/backport-4.14/011-kbuild-export-SUBARCH.patch
 create mode 100644 target/linux/generic/backport-4.14/020-backport_netfilter_rtcache.patch
 create mode 100644 target/linux/generic/backport-4.14/025-tcp-allow-drivers-to-tweak-TSQ-logic.patch
 create mode 100644 target/linux/generic/backport-4.14/040-crypto-fix-typo-in-KPP-dependency-of-CRYPTO_ECDH.patch
 create mode 100644 target/linux/generic/backport-4.14/071-v4.15-0001-net-bgmac-enable-master-mode-for-BCM54210E-and-B5021.patch
 create mode 100644 target/linux/generic/backport-4.14/076-v4.15-0001-net-phy-broadcom-support-new-device-flag-for-setting.patch
 create mode 100644 target/linux/generic/backport-4.9/040-crypto-fix-typo-in-KPP-dependency-of-CRYPTO_ECDH.patch
 copy target/linux/generic/{config-4.9 => config-4.14} (94%)
 create mode 100644 target/linux/generic/hack-4.14/202-reduce_module_size.patch
 create mode 100644 target/linux/generic/hack-4.14/204-module_strip.patch
 create mode 100644 target/linux/generic/hack-4.14/207-disable-modorder.patch
 create mode 100644 target/linux/generic/hack-4.14/210-darwin_scripts_include.patch
 create mode 100644 target/linux/generic/hack-4.14/211-host_tools_portability.patch
 create mode 100644 target/linux/generic/hack-4.14/212-byteshift_portability.patch
 create mode 100644 target/linux/generic/hack-4.14/214-spidev_h_portability.patch
 create mode 100644 target/linux/generic/hack-4.14/220-gc_sections.patch
 create mode 100644 target/linux/generic/hack-4.14/221-module_exports.patch
 create mode 100644 target/linux/generic/hack-4.14/230-openwrt_lzma_options.patch
 create mode 100644 target/linux/generic/hack-4.14/250-netfilter_depends.patch
 create mode 100644 target/linux/generic/hack-4.14/251-sound_kconfig.patch
 create mode 100644 target/linux/generic/hack-4.14/259-regmap_dynamic.patch
 create mode 100644 target/linux/generic/hack-4.14/260-crypto_test_dependencies.patch
 create mode 100644 target/linux/generic/hack-4.14/280-rfkill-stubs.patch
 create mode 100644 target/linux/generic/hack-4.14/301-mips_image_cmdline_hack.patch
 create mode 100644 target/linux/generic/hack-4.14/321-powerpc_crtsavres_prereq.patch
 copy target/linux/generic/{hack-4.9 => hack-4.14}/531-debloat_lzma.patch (100%)
 create mode 100644 target/linux/generic/hack-4.14/640-bridge-only-accept-EAP-locally.patch
 create mode 100644 target/linux/generic/hack-4.14/641-bridge_port_isolate.patch
 create mode 100644 target/linux/generic/hack-4.14/651-wireless_mesh_header.patch
 create mode 100644 target/linux/generic/hack-4.14/660-fq_codel_defaults.patch
 create mode 100644 target/linux/generic/hack-4.14/661-use_fq_codel_by_default.patch
 create mode 100644 target/linux/generic/hack-4.14/662-remove_pfifo_fast.patch
 create mode 100644 target/linux/generic/hack-4.14/700-swconfig_switch_drivers.patch
 create mode 100644 target/linux/generic/hack-4.14/702-phy_add_aneg_done_function.patch
 create mode 100644 target/linux/generic/hack-4.14/721-phy_packets.patch
 create mode 100644 target/linux/generic/hack-4.14/773-bgmac-add-srab-switch.patch
 create mode 100644 target/linux/generic/hack-4.14/835-misc-owl_loader.patch
 create mode 100644 target/linux/generic/hack-4.14/901-debloat_sock_diag.patch
 create mode 100644 target/linux/generic/hack-4.14/902-debloat_proc.patch
 create mode 100644 target/linux/generic/hack-4.14/904-debloat_dma_buf.patch
 create mode 100644 target/linux/generic/hack-4.14/910-kobject_uevent.patch
 create mode 100644 target/linux/generic/hack-4.14/911-kobject_add_broadcast_uevent.patch
 copy target/linux/generic/{hack-4.9 => hack-4.14}/921-always-create-console-node-in-initramfs.patch (100%)
 create mode 100644 target/linux/generic/hack-4.14/930-crashlog.patch
 create mode 100644 target/linux/generic/pending-4.14/100-MIPS-fix-cache-flushing-for-highmem-pages.patch
 create mode 100644 target/linux/generic/pending-4.14/110-ehci_hcd_ignore_oc.patch
 create mode 100644 target/linux/generic/pending-4.14/120-Fix-alloc_node_mem_map-with-ARCH_PFN_OFFSET-calcu.patch
 create mode 100644 target/linux/generic/pending-4.14/130-add-linux-spidev-compatible-si3210.patch
 create mode 100644 target/linux/generic/pending-4.14/131-spi-use-gpio_set_value_cansleep-for-setting-chipsele.patch
 copy target/linux/generic/{pending-4.9 => pending-4.14}/140-jffs2-use-.rename2-and-add-RENAME_WHITEOUT-support.patch (100%)
 copy target/linux/generic/{pending-4.9 => pending-4.14}/141-jffs2-add-RENAME_EXCHANGE-support.patch (100%)
 create mode 100644 target/linux/generic/pending-4.14/150-bridge_allow_receiption_on_disabled_port.patch
 create mode 100644 target/linux/generic/pending-4.14/160-mtd-part-add-generic-parsing-of-linux-part-probe.patch
 create mode 100644 target/linux/generic/pending-4.14/180-net-phy-at803x-add-support-for-AT8032.patch
 create mode 100644 target/linux/generic/pending-4.14/190-2-5-e1000e-Fix-wrong-comment-related-to-link-detection.patch
 create mode 100644 target/linux/generic/pending-4.14/201-extra_optimization.patch
 create mode 100644 target/linux/generic/pending-4.14/203-kallsyms_uncompressed.patch
 create mode 100644 target/linux/generic/pending-4.14/205-backtrace_module_info.patch
 create mode 100644 target/linux/generic/pending-4.14/206-mips-disable-vdso.patch
 create mode 100644 target/linux/generic/pending-4.14/240-remove-unsane-filenames-from-deps_initramfs-list.patch
 copy target/linux/generic/{pending-4.9 => pending-4.14}/261-enable_wilink_platform_without_drivers.patch (100%)
 create mode 100644 target/linux/generic/pending-4.14/270-uapi-kernel.h-glibc-specific-inclusion-of-sysinfo.h.patch
 create mode 100644 target/linux/generic/pending-4.14/271-uapi-libc-compat.h-do-not-rely-on-__GLIBC__.patch
 create mode 100644 target/linux/generic/pending-4.14/272-uapi-if_ether.h-prevent-redefinition-of-struct-ethhd.patch
 create mode 100644 target/linux/generic/pending-4.14/300-mips_expose_boot_raw.patch
 copy target/linux/generic/{pending-4.9 => pending-4.14}/302-mips_no_branch_likely.patch (100%)
 create mode 100644 target/linux/generic/pending-4.14/304-mips_disable_fpu.patch
 create mode 100644 target/linux/generic/pending-4.14/305-mips_module_reloc.patch
 create mode 100644 target/linux/generic/pending-4.14/306-mips_mem_functions_performance.patch
 copy target/linux/generic/{pending-4.9 => pending-4.14}/307-mips_highmem_offset.patch (100%)
 create mode 100644 target/linux/generic/pending-4.14/308-mips32r2_tune.patch
 create mode 100644 target/linux/generic/pending-4.14/310-arm_module_unresolved_weak_sym.patch
 create mode 100644 target/linux/generic/pending-4.14/330-MIPS-kexec-Accept-command-line-parameters-from-users.patch
 create mode 100644 target/linux/generic/pending-4.14/332-arc-add-OWRTDTB-section.patch
 copy target/linux/generic/{pending-4.9 => pending-4.14}/333-arc-enable-unaligned-access-in-kernel-mode.patch (100%)
 create mode 100644 target/linux/generic/pending-4.14/340-MIPS-mm-remove-mips_dma_mapping_error.patch
 create mode 100644 target/linux/generic/pending-4.14/341-MIPS-mm-remove-no-op-dma_map_ops-where-possible.patch
 create mode 100644 target/linux/generic/pending-4.14/400-mtd-add-rootfs-split-support.patch
 create mode 100644 target/linux/generic/pending-4.14/401-mtd-add-support-for-different-partition-parser-types.patch
 create mode 100644 target/linux/generic/pending-4.14/402-mtd-use-typed-mtd-parsers-for-rootfs-and-firmware-split.patch
 create mode 100644 target/linux/generic/pending-4.14/403-mtd-hook-mtdsplit-to-Kbuild.patch
 create mode 100644 target/linux/generic/pending-4.14/404-mtd-add-more-helper-functions.patch
 create mode 100644 target/linux/generic/pending-4.14/411-mtd-partial_eraseblock_write.patch
 copy target/linux/generic/{pending-4.9 => pending-4.14}/412-mtd-partial_eraseblock_unlock.patch (100%)
 copy target/linux/generic/{pending-4.9 => pending-4.14}/420-mtd-redboot_space.patch (100%)
 create mode 100644 target/linux/generic/pending-4.14/430-mtd-add-myloader-partition-parser.patch
 copy target/linux/generic/{pending-4.9 => pending-4.14}/431-mtd-bcm47xxpart-check-for-bad-blocks-when-calculatin.patch (100%)
 copy target/linux/generic/{pending-4.9 => pending-4.14}/432-mtd-bcm47xxpart-detect-T_Meter-partition.patch (100%)
 copy target/linux/generic/{pending-4.9 => pending-4.14}/440-block2mtd_init.patch (100%)
 copy target/linux/generic/{pending-4.9 => pending-4.14}/441-block2mtd_probe.patch (100%)
 create mode 100644 target/linux/generic/pending-4.14/460-mtd-cfi_cmdset_0002-no-erase_suspend.patch
 create mode 100644 target/linux/generic/pending-4.14/461-mtd-cfi_cmdset_0002-add-buffer-write-cmd-timeout.patch
 create mode 100644 target/linux/generic/pending-4.14/465-m25p80-mx-disable-software-protection.patch
 create mode 100644 target/linux/generic/pending-4.14/470-mtd-spi-nor-support-limiting-4K-sectors-support-base.patch
 copy target/linux/generic/{pending-4.9 => pending-4.14}/476-mtd-spi-nor-add-eon-en25q128.patch (100%)
 create mode 100644 target/linux/generic/pending-4.14/477-mtd-add-spi-nor-add-mx25u3235f.patch
 create mode 100644 target/linux/generic/pending-4.14/480-mtd-set-rootfs-to-be-root-dev.patch
 create mode 100644 target/linux/generic/pending-4.14/490-ubi-auto-attach-mtd-device-named-ubi-or-data-on-boot.patch
 create mode 100644 target/linux/generic/pending-4.14/491-ubi-auto-create-ubiblock-device-for-rootfs.patch
 copy target/linux/generic/{pending-4.9 => pending-4.14}/492-try-auto-mounting-ubi0-rootfs-in-init-do_mounts.c.patch (100%)
 create mode 100644 target/linux/generic/pending-4.14/493-ubi-set-ROOT_DEV-to-ubiblock-rootfs-if-unset.patch
 create mode 100644 target/linux/generic/pending-4.14/494-mtd-ubi-add-EOF-marker-support.patch
 create mode 100644 target/linux/generic/pending-4.14/530-jffs2_make_lzma_available.patch
 copy target/linux/generic/{pending-4.9 => pending-4.14}/532-jffs2_eofdetect.patch (100%)
 create mode 100644 target/linux/generic/pending-4.14/551-ubifs-fix-default-compression-selection.patch
 create mode 100644 target/linux/generic/pending-4.14/600-netfilter_conntrack_flush.patch
 create mode 100644 target/linux/generic/pending-4.14/610-netfilter_match_bypass_default_checks.patch
 create mode 100644 target/linux/generic/pending-4.14/611-netfilter_match_bypass_default_table.patch
 create mode 100644 target/linux/generic/pending-4.14/612-netfilter_match_reduce_memory_access.patch
 create mode 100644 target/linux/generic/pending-4.14/613-netfilter_optional_tcp_window_check.patch
 create mode 100644 target/linux/generic/pending-4.14/616-net_optimize_xfrm_calls.patch
 create mode 100644 target/linux/generic/pending-4.14/630-packet_socket_type.patch
 copy target/linux/generic/{pending-4.9 => pending-4.14}/650-pppoe_header_pad.patch (100%)
 create mode 100644 target/linux/generic/pending-4.14/655-increase_skb_pad.patch
 create mode 100644 target/linux/generic/pending-4.14/666-Add-support-for-MAP-E-FMRs-mesh-mode.patch
 create mode 100644 target/linux/generic/pending-4.14/670-ipv6-allow-rejecting-with-source-address-failed-policy.patch
 create mode 100644 target/linux/generic/pending-4.14/671-net-provide-defines-for-_POLICY_FAILED-until-all-cod.patch
 create mode 100644 target/linux/generic/pending-4.14/680-NET-skip-GRO-for-foreign-MAC-addresses.patch
 copy target/linux/generic/{pending-4.9 => pending-4.14}/681-NET-add-of_get_mac_address_mtd.patch (100%)
 create mode 100644 target/linux/generic/pending-4.14/701-phy_extension.patch
 create mode 100644 target/linux/generic/pending-4.14/703-phy-add-detach-callback-to-struct-phy_driver.patch
 create mode 100644 target/linux/generic/pending-4.14/734-net-phy-at803x-allow-to-configure-via-pdata.patch
 create mode 100644 target/linux/generic/pending-4.14/735-net-phy-at803x-fix-at8033-sgmii-mode.patch
 create mode 100644 target/linux/generic/pending-4.14/810-pci_disable_common_quirks.patch
 create mode 100644 target/linux/generic/pending-4.14/811-pci_disable_usb_common_quirks.patch
 create mode 100644 target/linux/generic/pending-4.14/821-usb-Remove-annoying-warning-about-bogus-URB.patch
 create mode 100644 target/linux/generic/pending-4.14/831-ledtrig_netdev.patch
 create mode 100644 target/linux/generic/pending-4.14/834-ledtrig-libata.patch
 create mode 100644 target/linux/generic/pending-4.14/920-mangle_bootargs.patch
 create mode 100644 target/linux/x86/config-4.14
 create mode 100644 target/linux/x86/patches-4.14/011-tune_lzma_options.patch
 copy target/linux/x86/{patches-4.9 => patches-4.14}/100-fix_cs5535_clockevt.patch (100%)
 create mode 100644 target/linux/x86/patches-4.14/200-pcengines-apu2-reboot.patch
 create mode 100644 target/linux/x86/patches-4.14/800-hwmon-w83627ehf-dont-claim-nct677x.patch

-- 
2.11.0




More information about the Lede-dev mailing list