コミット
3697022ce34cb6be196d62f1dbdf677bf6cabc22
by robimarko armsr: add patch (hack) to enable all "default" consoles A previous change added 'console=tty1' to the default kernel command line on armsr, in order to ensure the framebuffer console is enabled on systems capable of graphics output. Unfortunately, this change broke boards that used device tree (DT) firmware with serial consoles, as the serial console specified by the system firmware (stdout-path) was no longer setup by the kernel. A bit of probing determined that the SPCR (serial port console direction table) on ACPI systems was preventing Linux from setting up a default framebuffer console on these systems (which is why console=tty1 was added). (The affected ACPI systems are usually VMs using QEMU's 'virt' machine and EDK2 firmware. The firmware on these systems does not remove the SPCR when a screen is present) So to ensure all possible systems are setup correctly, we modify the kernel so all "default" console types (serial and screen) are setup when no console= arguments are specified on the kernel command line. Signed-off-by: Mathew McBride <matt@traverse.com.au> Fixes: c099523d66a3 ("use console=tty1 to make console more readily available") Link: https://github.com/openwrt/openwrt/pull/17012 Signed-off-by: Robert Marko <robimarko@gmail.com> (commit: 3697022 ) The file was added target/linux/armsr/patches-6.6/300-printk-always-setup-default-consoles.patch
コミット
bff179de73e36b0c27b5eefa1a967e956bb620cd
by robimarko armsr: remove 'console=tty1' from kernel command line We have modified the kernel to setup all "default" consoles, including serial ports and framebuffers/screens, providing no console= argument is supplied on the kernel command line. Adding 'console=tty1' caused the 'default' serial port on device tree systems to break, as the kernel would not carry over the settings (like baud rate) from the bootloader. The system administrator can still force the use of a specific console by adding their own console= arguments. Signed-off-by: Mathew McBride <matt@traverse.com.au> Fixes: c099523d66a3 ("armsr: use console=tty1 to make console more readily available") Link: https://github.com/openwrt/openwrt/pull/17012 Signed-off-by: Robert Marko <robimarko@gmail.com> (commit: bff179d ) The file was modified target/linux/armsr/image/Makefile (diff)
コミット
1bef83bb230fe1695050746b56175d35b50da6b1
by robimarko realtek: simplify RTL8214FC patches for ethtool copper/fiber switching There is a patch/bug cascade in the realtek target phy code that must be resolved. 1. The phy_driver structure is patched to add features ONLY needed for RTL8214FC 2. The kernel is patched to allow switching fiber/copper port of phys through ethtool by calling these new features. 3. With those patches applied the bootup always switches RTL8214FC ports to copper. Even if a SFP module was found before and the phy driver switched to fibre before. 3. So another patch is needed that reprobes the SFP module to activate fiber again. 4. Because of the reprobing we need a fourth patch that avoid duplicate devices. Simplify this by removing all patches and reusing the existing ethtool phy tunable interface. The command line usage might be counterintuitive but it avoids tons of problems in the code. In addition, this scenario is not used frequently. Before:ethtool -s lan25 port fibre/tp After: ethtool --set-phy-tunable lan25 downshift on/off Signed-off-by: Markus Stockhausen <markus.stockhausen@gmx.de> Link: https://github.com/openwrt/openwrt/pull/18816 Signed-off-by: Robert Marko <robimarko@gmail.com> (commit: 1bef83b ) The file was modified target/linux/realtek/patches-6.6/706-include-linux-add-phy-ops-for-rtl838x.patch (diff) The file was modified target/linux/realtek/patches-6.6/708-drivers-net-phy-eee-support-for-rtl838x.patch (diff) The file was modified target/linux/realtek/patches-6.6/714-net-phy-sfp-add-support-for-SMBus.patch (diff) The file was removed target/linux/realtek/patches-6.6/710-net-phy-sfp-re-probe-modules-on-DEV_UP-event.patch The file was modified target/linux/realtek/files-6.6/drivers/net/phy/rtl83xx-phy.c (diff)
コミット
32f408c95588f05c76fb8411ec3d92b9ca18cd6b
by robimarko realtek: refactor RTL838x mdio serdes read/write functions There are still a lot of mdio functions scattered around the code. Move the RTL838x serdes helpers closer to the bus, add the proper prefix and simplify the functions. Signed-off-by: Markus Stockhausen <markus.stockhausen@gmx.de> Link: https://github.com/openwrt/openwrt/pull/18847 Signed-off-by: Robert Marko <robimarko@gmail.com> (commit: 32f408c ) The file was modified target/linux/realtek/files-6.6/drivers/net/phy/rtl83xx-phy.c (diff) The file was modified target/linux/realtek/files-6.6/drivers/net/ethernet/rtl838x_eth.c (diff) The file was modified target/linux/generic/config-6.12 (diff)
コミット
47cfb09e4546fc848271ae6e0f9b8899ab8e8c6a
by daniel generic: 6.12: add hack patch for transition to new partition bindings Commit fa0f130764 ("generic: 6.12: update block NVMEM driver") switched to the upstream DT bindings for block partitions. Bring back the old/legacy downstream way to assign the OF node to a block device or partition in order to allow sharing a single DTS for both, Linux 6.6 (which exclusively uses the old/legacy binding) and Linux 6.12 (which will now support both, new/upstream binding and the old/legacy binding). Once we drop Linux 6.6 and all boards have been converted to the new binding we can drop this patch. Signed-off-by: Daniel Golle <daniel@makrotopia.org> (commit: 47cfb09 ) The file was added target/linux/generic/hack-6.12/499-LEGACY-block-partitions-populate-fwnode.patch The file was modified target/linux/generic/files/drivers/net/phy/rtl8261n/rtk_osal.c (diff) The file was modified target/linux/generic/files/drivers/net/phy/rtl8261n/phy_rtl826xb_patch.c (diff)
コミット
d092e7af4097a76a5eb6d213ed58252f610cc923
by daniel generic: 6.12: fix patch adding EEE-support to mtk_eth_soc Upstream now uses struct ethtool_keee instead of struct ethtool_eee as parameter to EEE-related functions. Follow that change and modify the patch accordingly. Signed-off-by: Daniel Golle <daniel@makrotopia.org> (commit: d092e7a ) The file was modified target/linux/generic/backport-6.12/753-v6.15-net-ethernet-mediatek-add-EEE-support.patch (diff)
コミット
34b176b56558b19f5cd81f8c032f981194cd5e86
by daniel generic: 6.12: mtk_eth_soc: adapt downstream SerDes patch While it will hopefully be replaced soon by an upstream solution for now we keep the downstream SerDes PCS implementation for MT7988A. In order to make it work with upstream mt7988a.dtsi we have to compensate for the changed start address of topmisc which was moved from 0x11d10000 to 0x11d10084 to accomodate a future power domain controller located at 0x11d10000~0x11d10080. Hence we need to change TOP_MISC_NETSYS_PCS_MUX from 0x84 to 0x0, so the Ethernet path/mux selection can work with upstream mt7988a.dtsi. Signed-off-by: Daniel Golle <daniel@makrotopia.org> (commit: 34b176b ) The file was modified target/linux/generic/pending-6.12/737-net-ethernet-mtk_eth_soc-add-paths-and-SerDes-modes-.patch (diff)
コミット
438ed53577ad16a6198ce0fc79de06dfa9374962
by daniel generic: 6.12: backport MediaTek Ethernet PHY changes The MediaTek Ethernet PHY drivers are going to be used by multiple targets (airoha, mediatek, ramips). Add generic backports of changes required for recently added Ethernet PHYs. Signed-off-by: Daniel Golle <daniel@makrotopia.org> (commit: 438ed53 ) The file was added target/linux/generic/backport-6.12/727-v6.13-net-phy-mediatek-add-MT7530-MT7531-s-PHY-ID-macros.patch The file was added target/linux/generic/backport-6.12/730-v6.15-net-phy-mediatek-Add-token-ring-access-helper-functi.patch The file was added target/linux/generic/backport-6.12/737-v6.16-net-phy-mediatek-init-val-in-.phy_led_polarity_set-f.patch The file was modified target/linux/generic/hack-6.12/725-net-phy-aquantia-add-PHY_IDs-for-AQR112-variants.patch (diff) The file was added target/linux/generic/backport-6.12/721-v6.13-net-phy-mediatek-ge-soc-Shrink-line-wrapping-to-80-c.patch The file was modified target/linux/generic/hack-6.12/735-net-phy-realtek-rtl8261n.patch (diff) The file was added target/linux/generic/backport-6.12/724-v6.13-net-phy-mediatek-Move-LED-helper-functions-into-mtk-.patch The file was added target/linux/generic/backport-6.12/733-v6.15-net-phy-mediatek-Move-some-macros-to-phy-lib-for-lat.patch The file was added target/linux/generic/backport-6.12/720-v6.13-net-phy-mediatek-ge-soc-Fix-coding-style.patch The file was added target/linux/generic/backport-6.12/731-v6.15-net-phy-mediatek-Add-token-ring-set-bit-operation-su.patch The file was added target/linux/generic/backport-6.12/732-v6.15-net-phy-mediatek-Add-token-ring-clear-bit-operation-.patch The file was added target/linux/generic/backport-6.12/723-v6.13-net-phy-mediatek-Re-organize-MediaTek-ethernet-phy-d.patch The file was added target/linux/generic/backport-6.12/726-v6.13-net-phy-mediatek-Integrate-read-write-page-helper-fu.patch The file was added target/linux/generic/backport-6.12/735-v6.16-net-phy-mediatek-permit-to-compile-test-GE-SOC-PHY-d.patch The file was added target/linux/generic/backport-6.12/722-v6.13-net-phy-mediatek-ge-soc-Propagate-error-code-correct.patch The file was modified target/linux/generic/backport-6.12/781-10-v6.14-net-phy-move-realtek-PHY-driver-to-its-own-subdirect.patch (diff) The file was added target/linux/generic/backport-6.12/725-v6.13-net-phy-mediatek-Improve-readability-of-mtk-phy-lib..patch The file was added target/linux/generic/backport-6.12/729-v6.15-net-phy-mediatek-Change-to-more-meaningful-macros.patch The file was modified target/linux/generic/pending-6.12/510-block-add-uImage.FIT-subimage-block-driver.patch (diff) The file was added target/linux/generic/backport-6.12/736-v6.16-net-phy-mediatek-add-Airoha-PHY-ID-to-SoC-driver.patch The file was added target/linux/generic/backport-6.12/728-v6.14-net-phy-Constify-struct-mdio_device_id.patch The file was modified target/linux/generic/hack-6.12/766-net-phy-mediatek-ge-add-LED-configuration-interface.patch (diff) The file was modified target/linux/mediatek/files/drivers/net/phy/rtk/rtl8367c/smi.c (diff) The file was modified target/linux/mediatek/files/drivers/net/phy/rtk/rtl8367c/rtk_switch.c (diff) The file was modified target/linux/mediatek/files/drivers/net/phy/rtk/rtl8367s_mdio.c (diff) The file was modified target/linux/mediatek/files/drivers/net/phy/rtk/rtl8367c/include/rtk_switch.h (diff) The file was added target/linux/mediatek/files/drivers/net/phy/rtk/rtl8367c/include/rtl8367c_asicdrv_mii_mgr.h
コミット
a387c62114489823b0e2a359f2a2f09bf89f2545
by daniel mediatek: dts: rename mt7981.dtsi to mt7981b.dtsi Upstream uses a different filename, so lets rename our downstream mt7981.dtsi to mt7981b.dtsi and update the device tree of all MT7981 boards accordingly. This is to prepare for the switch to Linux 6.12 which is going to use the upstream mt7981b.dtsi (plus some patches on top). Signed-off-by: Daniel Golle <daniel@makrotopia.org> (commit: a387c62 ) The file was modified target/linux/mediatek/dts/mt7981b-cudy-m3000-v1.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-tenbay-wr3000k.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-openwrt-one.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-wavlink-wl-wn586x3.dts (diff) The file was modified target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7981-rfb.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-cetron-ct3003.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-cudy-re3000-v1.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-xiaomi-mi-router-common.dtsi (diff) The file was modified target/linux/mediatek/dts/mt7981b-yuncore-ax835.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-cudy-wr3000h-v1.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-routerich-ax3000-v1.dts (diff) The file was modified target/linux/mediatek/dts/mt7981a-glinet-gl-x3000-xe3000-common.dtsi (diff) The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7981.dtsi The file was modified target/linux/mediatek/dts/mt7981a-comfast-cf-e393ax.dts (diff) The file was modified target/linux/mediatek/dts/mt7981a-edgecore-eap111.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-huasifei-wh3000.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-keenetic-kn-3911.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-asus-rt-ax52.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-cmcc-a10.dtsi (diff) The file was modified target/linux/mediatek/dts/mt7981b-gatonetworks-gdsp.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-glinet-gl-mt3000.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-cudy-wr3000-v1.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-openembed-som7981.dts (diff) The file was modified target/linux/mediatek/dts/mt7981a-ubnt-unifi-6-plus.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-snr-snr-cpe-ax2.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-confiabits-mt7981.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-h3c-magic-nx30-pro.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-wavlink-wl-wn573hx3.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-glinet-gl-mt2500.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-mercusys-mr80x-v3.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-qihoo-360t7.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-cudy-ap3000outdoor-v1.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-zbtlink-zbt-z8103ax.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-cmcc-rax3000m.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-abt-asr3000.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-zyxel-nwa50ax-pro.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-netis-nx31.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-keenetic-kn-3811.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-nradio-c8-668gl.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-jcg-q30-pro.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-zbtlink-zbt-z8102ax.dts (diff) The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7981b.dtsi The file was modified target/linux/mediatek/dts/mt7981b-cudy-ap3000-v1.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-nokia-ea0326gmp.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-cudy-wr3000s-v1.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-cudy-tr3000-v1.dts (diff) The file was modified target/linux/mediatek/dts/mt7981b-unielec-u7981-01.dtsi (diff) The file was modified target/linux/mediatek/dts/mt7981b-routerich-ax3000-common.dtsi (diff) The file was modified target/linux/mediatek/dts/mt7981b-dlink-aquila-pro-ai-m30-a1.dts (diff)
コミット
b992aa119cde02dc468d1bb3b7f6c2795503e9df
by daniel mediatek: dts: bring mt7988a.dtsi closer to upstream In preparation of using the upstream mt7988a.dtsi when switching to Linux 6.12 prepare by bringing our downstream version closer to what went upstream. * rename 'xphy' -> 'xsphy' * rename 'uart[012]' -> 'serial[012]' * only list pinctrl settings directly used in mt7988a.dtsi there, leave it to boards to define all additional pinctrl settings they need. * move fan and thermal-zone to board level Signed-off-by: Daniel Golle <daniel@makrotopia.org> (commit: b992aa1 ) The file was modified target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4.dtsi (diff) The file was modified target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a.dtsi (diff) The file was modified target/linux/mediatek/dts/mt7988d-asus-zenwifi-bt8.dts (diff) The file was modified target/linux/mediatek/dts/mt7988d-smartrg-SDG-8733A.dts (diff) The file was modified target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb.dts (diff) The file was modified target/linux/mediatek/filogic/base-files/etc/board.d/01_leds (diff) The file was modified target/linux/mediatek/dts/mt7988a-smartrg-mt-stuart.dtsi (diff) The file was modified target/linux/mediatek/dts/mt7988a-arcadyan-mozart.dts (diff) The file was modified target/linux/mediatek/dts/mt7988d-asus-zenwifi-bt8.dtsi (diff)
コミット
465249f2b3c946437ee846c86c7ceb72a4c53f15
by daniel mediatek: filogic: adapt BananaPi-R4 for use with upstream DT * the variant with 2.5G PHY instead of LAN SFP is called '2p5' upstream and 'poe' in our downstream Linux 6.6 DT. Use the right DTS depending on the kernel version and set an additional compatible. * drop additional DT overlay for WiFi. The final version of the board uses a physical switch for the 12V power of the WiFi module and the I2C EEPROM of the module always comes empty (instead of with a MAC address). Signed-off-by: Daniel Golle <daniel@makrotopia.org> (commit: 465249f ) The file was modified target/linux/mediatek/filogic/base-files/etc/board.d/02_network (diff) The file was modified target/linux/mediatek/image/filogic.mk (diff) The file was modified target/linux/mediatek/base-files/etc/uci-defaults/99_fwenv-store-ethaddr.sh (diff) The file was modified target/linux/mediatek/filogic/base-files/etc/board.d/05_compat-version (diff) The file was modified target/linux/mediatek/filogic/base-files/etc/board.d/01_leds (diff) The file was modified target/linux/mediatek/filogic/base-files/lib/upgrade/platform.sh (diff) The file was modified target/linux/mediatek/filogic/base-files/etc/hotplug.d/ieee80211/11_fix_wifi_mac (diff) The file was added target/linux/mediatek/patches-6.12/941-arm64-dts-mt7986-move-cpuboot-in-a-dedicated-node.patch The file was added target/linux/mediatek/patches-6.12/200-phy-phy-mtk-tphy-Add-hifsys-support.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth1-sfp.dtso The file was added target/linux/mediatek/patches-6.12/615-phy-phy-mtk-xsphy-support-type-switch-by-pericfg.patch The file was removed target/linux/mediatek/patches-6.6/400-crypto-add-eip97-inside-secure-support.patch The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7981-rfb-mxl-2p5g-phy-swp5.dtso The file was added target/linux/mediatek/patches-6.12/113-dts-fix-bpi64-leds-and-buttons.patch The file was added target/linux/mediatek/patches-6.12/733-09-net-phy-mediatek-Add-token-ring-access-helper-functi.patch The file was removed target/linux/mediatek/patches-6.6/862-arm64-dts-mt7986-add-afe.patch The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-poe.dts The file was removed target/linux/mediatek/filogic/config-6.6 The file was removed target/linux/mediatek/patches-6.6/218-pinctrl-mediatek-mt7981-add-additional-uart-groups.patch The file was added target/linux/mediatek/files-6.12/drivers/mfd/airoha-an8855.c The file was removed target/linux/mediatek/patches-6.6/250-clk-mediatek-add-infracfg-reset-controller-for-mt798.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7981-rfb-spim-nand.dtso The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-emmc.dtso The file was added target/linux/mediatek/patches-6.12/733-05-net-phy-mediatek-Integrate-read-write-page-helper-fu.patch The file was removed target/linux/mediatek/patches-6.6/830-v6.7-41-dt-bindings-thermal-mediatek-Add-LVTS-thermal-sensor.patch The file was added target/linux/mediatek/patches-6.12/733-06-net-phy-mediatek-Hook-LED-helper-functions-in-mtk-ge.patch The file was removed target/linux/mediatek/patches-6.6/911-dts-mt7622-bpi-r64-add-rootdisk.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7981b.dtsi The file was removed target/linux/mediatek/mt7622/config-6.6 The file was added target/linux/mediatek/patches-6.12/104-mt7622-add-snor-irq.patch The file was added target/linux/mediatek/patches-6.12/434-drivers-spi-mt65xx-Add-controller-s-calibration-para.patch The file was added target/linux/mediatek/patches-6.12/930-spi-mt65xx-enable-sel-clk.patch The file was removed target/linux/mediatek/patches-6.6/610-pcie-mediatek-fix-clearing-interrupt-status.patch The file was removed target/linux/mediatek/patches-6.6/955-dts-mt7968a-bpi-r3-add-label-to-gmac-for-sfp1-port.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7981-rfb-mxl-2p5g-phy-swp5.dtso The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth1-aqr.dtso The file was removed target/linux/mediatek/patches-6.6/110-dts-fix-bpi2-console.patch The file was added target/linux/mediatek/patches-6.12/860-v6.7-07-ASoC-mediatek-mt7986-drop-the-remove-callback-of-mt7.patch The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth1-aqr.dtso The file was added target/linux/mediatek/patches-6.12/710-pci-pcie-mediatek-add-support-for-coherent-DMA.patch The file was added target/linux/mediatek/patches-6.12/863-arm64-dts-mt7986-add-sound-wm8960.patch The file was removed target/linux/mediatek/mt7629/config-6.6 The file was added target/linux/mediatek/patches-6.12/164-dts-mt7623-bpi-r2-rootdisk-for-fitblk.patch The file was added target/linux/mediatek/patches-6.12/114-dts-bpi64-disable-rtc.patch The file was added target/linux/mediatek/patches-6.12/190-arm64-dts-mediatek-mt7622-fix-GICv2-range.patch The file was removed target/linux/mediatek/patches-6.6/431-drivers-spi-mt65xx-Move-chip_config-to-driver-s-priv.patch The file was removed target/linux/mediatek/patches-6.6/100-dts-update-mt7622-rfb1.patch The file was removed target/linux/mediatek/patches-6.6/737-net-dsa-add-Airoha-AN8855.patch The file was removed target/linux/mediatek/patches-6.6/105-dts-mt7622-enable-pstore.patch The file was added target/linux/mediatek/patches-6.12/163-dts-mt7623-bpi-r2-ethernet-alias.patch The file was removed target/linux/mediatek/patches-6.6/247-v6.8-dt-bindings-clock-mediatek-add-clock-controllers-of-.patch The file was added target/linux/mediatek/patches-6.12/806-v6.9-pwm-mediatek-add-support-for-MT7988.patch The file was added target/linux/mediatek/patches-6.12/253-pinctrl-mediatek-mt7981-add-additional-uart-group.patch The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb.dts The file was added target/linux/mediatek/patches-6.12/955-dts-mt7968a-bpi-r3-add-label-to-gmac-for-sfp1-port.patch The file was added target/linux/mediatek/patches-6.12/960-asus-hack-u-boot-ignore-mtdparts.patch The file was removed target/linux/mediatek/patches-6.6/254-pinctrl-mediatek-mt7981-add-additional-emmc-group.patch The file was added target/linux/mediatek/patches-6.12/942-net-ethernet-mtk_wed-move-cpuboot-in-a-dedicated-dts.patch The file was added target/linux/mediatek/patches-6.12/733-01-net-phy-mediatek-Re-organize-MediaTek-ethernet-phy-d.patch The file was removed target/linux/mediatek/patches-6.6/401-crypto-fix-eip97-cache-incoherent.patch The file was removed target/linux/mediatek/patches-6.6/433-drivers-spi-mem-Add-spi-calibration-hook.patch The file was removed target/linux/mediatek/patches-6.6/101-dts-update-mt7629-rfb.patch The file was added target/linux/mediatek/patches-6.12/150-dts-mt7623-eip97-inside-secure-support.patch The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7981-rfb.dts The file was added target/linux/mediatek/patches-6.12/732-net-phy-mxl-gpy-don-t-use-SGMII-AN-if-using-phylink.patch The file was removed target/linux/mediatek/patches-6.6/830-v6.7-43-thermal-drivers-mediatek-lvts_thermal-Fix-error-chec.patch The file was removed target/linux/mediatek/patches-6.6/930-spi-mt65xx-enable-sel-clk.patch The file was removed target/linux/mediatek/patches-6.6/351-pinctrl-add-mt7988-pd-pulltype-support.patch The file was added target/linux/mediatek/patches-6.12/432-drivers-spi-Add-support-for-dynamic-calibration.patch The file was removed target/linux/mediatek/patches-6.6/113-dts-fix-bpi64-leds-and-buttons.patch The file was removed target/linux/mediatek/patches-6.6/249-v6.8-clk-mediatek-add-drivers-for-MT7988-SoC.patch The file was removed target/linux/mediatek/patches-6.6/611-pcie-mediatek-gen3-PERST-for-100ms.patch The file was added target/linux/mediatek/patches-6.12/864-arm64-dts-mt7986-add-sound-overlay-for-bpi-r3.patch The file was removed target/linux/mediatek/patches-6.6/250-dt-bindings-reset-mediatek-add-MT7988-reset-IDs.patch The file was removed target/linux/mediatek/patches-6.6/864-arm64-dts-mt7986-add-sound-overlay-for-bpi-r3.patch The file was removed target/linux/mediatek/patches-6.6/330-snand-mtk-bmt-support.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7986a-rfb-spim-nand.dts The file was added target/linux/mediatek/files-6.12/drivers/net/dsa/an8855.c The file was removed target/linux/mediatek/patches-6.6/104-mt7622-add-snor-irq.patch The file was added target/linux/mediatek/patches-6.12/910-dts-mt7622-bpi-r64-wifi-eeprom.patch The file was added target/linux/mediatek/patches-6.12/103-mt7623-enable-arch-timer.patch The file was removed target/linux/mediatek/patches-6.6/830-v6.7-42-thermal-drivers-mediatek-lvts_thermal-Add-mt7988-sup.patch The file was added target/linux/mediatek/patches-6.12/196-dts-mt7986a-bpi-r3-use-all-ubi-nand-layout.patch The file was removed target/linux/mediatek/patches-6.6/103-mt7623-enable-arch-timer.patch The file was removed target/linux/mediatek/patches-6.6/733-08-net-phy-mediatek-Change-mtk-ge-soc.c-line-wrapping.patch The file was removed target/linux/mediatek/patches-6.6/738-net-phylink-move-phylink_pcs_neg_mode.patch The file was removed target/linux/mediatek/patches-6.6/940-net-ethernet-mtk_wed-rename-mtk_wed_get_memory_regio.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7986a-rfb.dtsi The file was removed target/linux/mediatek/patches-6.6/190-arm64-dts-mediatek-mt7622-fix-GICv2-range.patch The file was added target/linux/mediatek/patches-6.12/160-dts-mt7623-bpi-r2-earlycon.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-wifi-mt7996a.dtso The file was removed target/linux/mediatek/patches-6.6/161-dts-mt7623-bpi-r2-mmc-device-order.patch The file was added target/linux/mediatek/patches-6.12/860-v6.7-09-ASoC-mediatek-mt7986-add-sample-rate-checker.patch The file was removed target/linux/mediatek/files-6.6/include/linux/mfd/airoha-an8855-mfd.h The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-wifi-mt7996a.dtso The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7981-rfb.dts The file was removed target/linux/mediatek/files-6.6/drivers/net/dsa/an8855.h The file was removed target/linux/mediatek/patches-6.6/107-mt7622_fix_dts_mt7531_reg.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7986a-rfb-spim-nor.dts The file was added target/linux/mediatek/patches-6.12/106-dts-mt7622-disable_btif.patch The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4.dts The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7981-rfb-mxl-2p5g-phy-eth1.dtso The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4.dts The file was added target/linux/mediatek/files-6.12/drivers/net/dsa/an8855.h The file was removed target/linux/mediatek/patches-6.6/739-net-add-negotiation-of-in-band-capabilities.patch The file was added target/linux/mediatek/patches-6.12/107-mt7622_fix_dts_mt7531_reg.patch The file was added target/linux/mediatek/patches-6.12/901-arm-add-cmdline-override.patch The file was added target/linux/mediatek/patches-6.12/255-clk-mediatek-mt7988-infracfg-SPI0-clocks-are-not-critical.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb.dts The file was removed target/linux/mediatek/files-6.6/drivers/pinctrl/mediatek/pinctrl-mt7988.c The file was added target/linux/mediatek/patches-6.12/194-dts-mt7968a-add-ramoops.patch The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth1-i2p5g-phy.dtso The file was added target/linux/mediatek/patches-6.12/112-dts-fix-bpi64-lan-names.patch The file was removed target/linux/mediatek/patches-6.6/435-drivers-mtd-spinand-Add-calibration-support-for-spin.patch The file was added target/linux/mediatek/patches-6.12/611-pcie-mediatek-gen3-PERST-for-100ms.patch The file was added target/linux/mediatek/patches-6.12/862-arm64-dts-mt7986-add-afe.patch The file was removed target/linux/mediatek/mt7623/config-6.6 The file was added target/linux/mediatek/patches-6.12/500-gsw-rtl8367s-mt7622-support.patch The file was removed target/linux/mediatek/patches-6.6/945-arm64-dts-mt7986-move-ilm-in-a-dedicated-node.patch The file was removed target/linux/mediatek/patches-6.6/830-v6.7-39-thermal-lvts-Convert-to-platform-remove-callback-ret.patch The file was removed target/linux/mediatek/patches-6.6/162-dts-mt7623-bpi-r2-led-aliases.patch The file was added target/linux/mediatek/patches-6.12/830-v6.7-39-thermal-lvts-Convert-to-platform-remove-callback-ret.patch The file was removed target/linux/mediatek/patches-6.6/830-v6.7-46-dt-bindings-thermal-mediatek-Add-LVTS-thermal-contro.patch The file was removed target/linux/mediatek/patches-6.6/253-pinctrl-mediatek-mt7981-add-additional-uart-group.patch The file was added target/linux/mediatek/patches-6.12/330-snand-mtk-bmt-support.patch The file was removed target/linux/mediatek/patches-6.6/130-dts-mt7629-add-snand-support.patch The file was added target/linux/mediatek/patches-6.12/733-11-net-phy-add-driver-for-built-in-2.5G-ethernet-PHY-on.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7981-rfb-mxl-2p5g-phy-eth1.dtso The file was added target/linux/mediatek/patches-6.12/331-mt7622-rfb1-enable-bmt.patch The file was removed target/linux/mediatek/patches-6.6/860-v6.7-09-ASoC-mediatek-mt7986-add-sample-rate-checker.patch The file was added target/linux/mediatek/patches-6.12/162-dts-mt7623-bpi-r2-led-aliases.patch The file was removed target/linux/mediatek/patches-6.6/900-dts-mt7622-bpi-r64-aliases-for-dtoverlay.patch The file was added target/linux/mediatek/patches-6.12/830-v6.7-43-thermal-drivers-mediatek-lvts_thermal-Fix-error-chec.patch The file was removed target/linux/mediatek/patches-6.6/252-clk-mediatek-mt7988-infracfg-fix-clocks-for-2nd-PCIe.patch The file was added target/linux/mediatek/patches-6.12/400-crypto-add-eip97-inside-secure-support.patch The file was removed target/linux/mediatek/patches-6.6/615-phy-phy-mtk-xsphy-support-type-switch-by-pericfg.patch The file was added target/linux/mediatek/patches-6.12/140-dts-fix-wmac-support-for-mt7622-rfb1.patch The file was removed target/linux/mediatek/patches-6.6/860-v6.7-08-ASoC-mediatek-mt7986-remove-the-mt7986_wm8960_priv-s.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-emmc.dtso The file was removed target/linux/mediatek/patches-6.6/160-dts-mt7623-bpi-r2-earlycon.patch The file was added target/linux/mediatek/patches-6.12/433-drivers-spi-mem-Add-spi-calibration-hook.patch The file was added target/linux/mediatek/patches-6.12/736-net-pcs-mtk_usxgmii-add-polarity-control.patch The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-spim-nand-factory.dtso The file was added target/linux/mediatek/patches-6.12/830-v6.7-41-dt-bindings-thermal-mediatek-Add-LVTS-thermal-sensor.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth1-i2p5g-phy.dtso The file was removed target/linux/mediatek/patches-6.6/960-asus-hack-u-boot-ignore-mtdparts.patch The file was removed target/linux/mediatek/patches-6.6/436-drivers-mtd-spi-nor-Add-calibration-support-for-spi-.patch The file was removed target/linux/mediatek/patches-6.6/106-dts-mt7622-disable_btif.patch The file was removed target/linux/mediatek/patches-6.6/246-v6.8-dt-bindings-clock-mediatek-add-MT7988-clock-IDs.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-snfi-nand.dtso The file was added target/linux/mediatek/patches-6.12/721-dts-mt7622-mediatek-fix-300mhz.patch The file was removed target/linux/mediatek/patches-6.6/944-net-ethernet-mtk_wed-move-dlm-a-dedicated-dts-node.patch The file was added target/linux/mediatek/patches-6.12/254-pinctrl-mediatek-mt7981-add-additional-emmc-group.patch The file was added target/linux/mediatek/patches-6.12/738-net-phylink-move-phylink_pcs_neg_mode.patch The file was added target/linux/mediatek/files-6.12/drivers/net/mdio/mdio-an8855.c The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7981-rfb-spim-nand.dtso The file was added target/linux/mediatek/patches-6.12/943-net-ethernet-mtk_wed-move-ilm-a-dedicated-dts-node.patch The file was added target/linux/mediatek/patches-6.12/946-arm64-dts-mt7986-move-dlm-in-a-dedicated-node.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-spim-nand-factory.dtso The file was added target/linux/mediatek/files-6.12/drivers/nvmem/an8855-efuse.c The file was added target/linux/mediatek/patches-6.12/218-pinctrl-mediatek-mt7981-add-additional-uart-groups.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth2-sfp.dtso The file was added target/linux/mediatek/patches-6.12/245-v6.8-dt-bindings-reset-mediatek-add-MT7988-ethwarp-reset-.patch The file was removed target/linux/mediatek/patches-6.6/255-clk-mediatek-mt7988-infracfg-SPI0-clocks-are-not-critical.patch The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-sd.dtso The file was added target/linux/mediatek/patches-6.12/733-02-net-phy-mediatek-Fix-spelling-errors-and-rearrange-v.patch The file was removed target/linux/mediatek/patches-6.6/806-v6.9-pwm-mediatek-add-support-for-MT7988.patch The file was added target/linux/mediatek/patches-6.12/340-mtd-spinand-Add-support-for-the-Fidelix-FM35X1GA.patch The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-spim-nand.dtso The file was added target/linux/mediatek/patches-6.12/246-v6.8-dt-bindings-clock-mediatek-add-MT7988-clock-IDs.patch The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth1-mxl.dtso The file was removed target/linux/mediatek/patches-6.6/196-dts-mt7986a-bpi-r3-use-all-ubi-nand-layout.patch The file was removed target/linux/mediatek/patches-6.6/721-dts-mt7622-mediatek-fix-300mhz.patch The file was added target/linux/mediatek/patches-6.12/860-v6.7-08-ASoC-mediatek-mt7986-remove-the-mt7986_wm8960_priv-s.patch The file was removed target/linux/mediatek/patches-6.6/732-net-phy-mxl-gpy-don-t-use-SGMII-AN-if-using-phylink.patch The file was removed target/linux/mediatek/patches-6.6/710-pci-pcie-mediatek-add-support-for-coherent-DMA.patch The file was added target/linux/mediatek/patches-6.12/435-drivers-mtd-spinand-Add-calibration-support-for-spin.patch The file was added target/linux/mediatek/patches-6.12/248-v6.8-clk-mediatek-add-pcw_chg_bit-control-for-PLLs-of-MT7.patch The file was added target/linux/mediatek/patches-6.12/830-v6.7-42-thermal-drivers-mediatek-lvts_thermal-Add-mt7988-sup.patch The file was added target/linux/mediatek/patches-6.12/911-dts-mt7622-bpi-r64-add-rootdisk.patch The file was added target/linux/mediatek/patches-6.12/855-i2c-mt65xx-allow-optional-pmic-clock.patch The file was removed target/linux/mediatek/patches-6.6/733-04-net-phy-mediatek-Improve-readability-of-mtk-phy-lib..patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4.dtsi The file was added target/linux/mediatek/patches-6.12/244-v6.8-dt-bindings-arm-mediatek-move-ethsys-controller-conv.patch The file was added target/linux/mediatek/patches-6.12/722-remove-300Hz-to-prevent-freeze.patch The file was added target/linux/mediatek/patches-6.12/195-dts-mt7986a-bpi-r3-leds-port-names-and-wifi-eeprom.patch The file was added target/linux/mediatek/patches-6.12/121-hack-spi-nand-1b-bbm.patch The file was removed target/linux/mediatek/patches-6.6/251-v6.8-watchdog-mediatek-mt7988-add-wdt-support.patch The file was added target/linux/mediatek/patches-6.12/351-pinctrl-add-mt7988-pd-pulltype-support.patch The file was removed target/linux/mediatek/patches-6.6/733-07-net-phy-mediatek-add-MT7530-MT7531-s-PHY-ID-macros.patch The file was added target/linux/mediatek/patches-6.12/251-v6.8-watchdog-mediatek-mt7988-add-wdt-support.patch The file was removed target/linux/mediatek/patches-6.6/860-v6.7-07-ASoC-mediatek-mt7986-drop-the-remove-callback-of-mt7.patch The file was removed target/linux/mediatek/patches-6.6/601-PCI-mediatek-Assert-PERST-for-100ms-for-power-and-cl.patch The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth2-mxl.dtso The file was removed target/linux/mediatek/patches-6.6/116-arm64-dts-mediatek-mt7622-readd-syscon-to-pciesys-no.patch The file was added target/linux/mediatek/patches-6.12/830-v6.7-47-thermal-drivers-mediatek-lvts_thermal-Add-mt8192-sup.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-poe.dts The file was added target/linux/mediatek/patches-6.12/610-pcie-mediatek-fix-clearing-interrupt-status.patch The file was added target/linux/mediatek/patches-6.12/733-07-net-phy-mediatek-add-MT7530-MT7531-s-PHY-ID-macros.patch The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-emmc.dtso The file was removed target/linux/mediatek/patches-6.6/131-dts-mt7622-add-snand-support.patch The file was removed target/linux/mediatek/patches-6.6/733-06-net-phy-mediatek-Hook-LED-helper-functions-in-mtk-ge.patch The file was removed target/linux/mediatek/patches-6.6/240-pinctrl-mediatek-add-support-for-MT7988-SoC.patch The file was added target/linux/mediatek/patches-6.12/431-drivers-spi-mt65xx-Move-chip_config-to-driver-s-priv.patch The file was added target/linux/mediatek/filogic/config-6.12 The file was removed target/linux/mediatek/files-6.6/drivers/net/mdio/mdio-an8855.c The file was removed target/linux/mediatek/patches-6.6/861-pending-10-ASoC-mediatek-mt7986-silence-error-in-case-of-EPROBE.patch The file was removed target/linux/mediatek/patches-6.6/115-Revert-arm64-dts-mediatek-fix-t-phy-unit-name.patch The file was added target/linux/mediatek/patches-6.12/601-PCI-mediatek-Assert-PERST-for-100ms-for-power-and-cl.patch The file was removed target/linux/mediatek/patches-6.6/733-05-net-phy-mediatek-Integrate-read-write-page-helper-fu.patch The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-snfi-nand.dtso The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-spim-nand.dtso The file was removed target/linux/mediatek/patches-6.6/150-dts-mt7623-eip97-inside-secure-support.patch The file was removed target/linux/mediatek/patches-6.6/943-net-ethernet-mtk_wed-move-ilm-a-dedicated-dts-node.patch The file was removed target/linux/mediatek/patches-6.6/194-dts-mt7968a-add-ramoops.patch The file was removed target/linux/mediatek/files-6.6/drivers/nvmem/an8855-efuse.c The file was added target/linux/mediatek/patches-6.12/252-clk-mediatek-mt7988-infracfg-fix-clocks-for-2nd-PCIe.patch The file was added target/linux/mediatek/files-6.12/drivers/net/phy/air_an8855.c The file was added target/linux/mediatek/patches-6.12/130-dts-mt7629-add-snand-support.patch The file was removed target/linux/mediatek/patches-6.6/736-net-pcs-mtk_usxgmii-add-polarity-control.patch The file was added target/linux/mediatek/patches-6.12/193-dts-mt7623-thermal_zone_fix.patch The file was added target/linux/mediatek/files-6.12/include/linux/mfd/airoha-an8855-mfd.h The file was added target/linux/mediatek/patches-6.12/900-dts-mt7622-bpi-r64-aliases-for-dtoverlay.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-spim-nor.dtso The file was removed target/linux/mediatek/files-6.6/drivers/mfd/airoha-an8855.c The file was added target/linux/mediatek/mt7623/config-6.12 The file was removed target/linux/mediatek/patches-6.6/450-nvmem-add-layout-for-Adtran-devices.patch The file was added target/linux/mediatek/patches-6.12/830-v6.7-48-thermal-drivers-mediatek-lvts_thermal-Update-calibra.patch The file was removed target/linux/mediatek/patches-6.6/193-dts-mt7623-thermal_zone_fix.patch The file was removed target/linux/mediatek/patches-6.6/733-01-net-phy-mediatek-Re-organize-MediaTek-ethernet-phy-d.patch The file was added target/linux/mediatek/patches-6.12/240-pinctrl-mediatek-add-support-for-MT7988-SoC.patch The file was removed target/linux/mediatek/patches-6.6/830-v6.7-47-thermal-drivers-mediatek-lvts_thermal-Add-mt8192-sup.patch The file was removed target/linux/mediatek/patches-6.6/942-net-ethernet-mtk_wed-move-cpuboot-in-a-dedicated-dts.patch The file was removed target/linux/mediatek/patches-6.6/244-v6.8-dt-bindings-arm-mediatek-move-ethsys-controller-conv.patch The file was removed target/linux/mediatek/patches-6.6/733-03-net-phy-mediatek-Move-LED-helper-functions-into-mtk-.patch The file was added target/linux/mediatek/patches-6.12/950-smartrg-i2c-led-driver.patch The file was removed target/linux/mediatek/patches-6.6/245-v6.8-dt-bindings-reset-mediatek-add-MT7988-ethwarp-reset-.patch The file was removed target/linux/mediatek/patches-6.6/734-net-phy-add-Airoha-EN8801SC-PHY.patch The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7981b.dtsi The file was removed target/linux/mediatek/patches-6.6/910-dts-mt7622-bpi-r64-wifi-eeprom.patch The file was added target/linux/mediatek/patches-6.12/350-21-cpufreq-mediatek-Add-support-for-MT7988.patch The file was added target/linux/mediatek/patches-6.12/734-net-phy-add-Airoha-EN8801SC-PHY.patch The file was removed target/linux/mediatek/patches-6.6/855-i2c-mt65xx-allow-optional-pmic-clock.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a.dtsi The file was added target/linux/mediatek/patches-6.12/250-clk-mediatek-add-infracfg-reset-controller-for-mt798.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth2-aqr.dtso The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4.dtsi The file was added target/linux/mediatek/patches-6.12/249-v6.8-clk-mediatek-add-drivers-for-MT7988-SoC.patch The file was removed target/linux/mediatek/patches-6.6/410-bt-mtk-serial-fix.patch The file was added target/linux/mediatek/patches-6.12/131-dts-mt7622-add-snand-support.patch The file was removed target/linux/mediatek/patches-6.6/941-arm64-dts-mt7986-move-cpuboot-in-a-dedicated-node.patch The file was removed target/linux/mediatek/files-6.6/drivers/net/phy/air_an8855.c The file was added target/linux/mediatek/patches-6.12/101-dts-update-mt7629-rfb.patch The file was removed target/linux/mediatek/patches-6.6/602-arm64-dts-mediatek-add-mt7622-pcie-slot-node.patch The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth2-sfp.dtso The file was removed target/linux/mediatek/patches-6.6/340-mtd-spinand-Add-support-for-the-Fidelix-FM35X1GA.patch The file was removed target/linux/mediatek/patches-6.6/863-arm64-dts-mt7986-add-sound-wm8960.patch The file was removed target/linux/mediatek/patches-6.6/114-dts-bpi64-disable-rtc.patch The file was added target/linux/mediatek/patches-6.12/161-dts-mt7623-bpi-r2-mmc-device-order.patch The file was added target/linux/mediatek/patches-6.12/602-arm64-dts-mediatek-add-mt7622-pcie-slot-node.patch The file was added target/linux/mediatek/patches-6.12/733-08-net-phy-mediatek-Change-mtk-ge-soc.c-line-wrapping.patch The file was removed target/linux/mediatek/patches-6.6/350-21-cpufreq-mediatek-Add-support-for-MT7988.patch The file was removed target/linux/mediatek/patches-6.6/830-v6.7-40-thermal-drivers-mediatek-lvts_thermal-Make-coeff-con.patch The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth1-sfp.dtso The file was removed target/linux/mediatek/patches-6.6/111-dts-fix-bpi64-console.patch The file was removed target/linux/mediatek/patches-6.6/112-dts-fix-bpi64-lan-names.patch The file was added target/linux/mediatek/patches-6.12/410-bt-mtk-serial-fix.patch The file was added target/linux/mediatek/patches-6.12/944-net-ethernet-mtk_wed-move-dlm-a-dedicated-dts-node.patch The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-sd.dtso The file was added target/linux/mediatek/patches-6.12/116-arm64-dts-mediatek-mt7622-readd-syscon-to-pciesys-no.patch The file was added target/linux/mediatek/patches-6.12/737-net-dsa-add-Airoha-AN8855.patch The file was added target/linux/mediatek/patches-6.12/105-dts-mt7622-enable-pstore.patch The file was added target/linux/mediatek/patches-6.12/739-net-add-negotiation-of-in-band-capabilities.patch The file was removed target/linux/mediatek/patches-6.6/200-phy-phy-mtk-tphy-Add-hifsys-support.patch The file was added target/linux/mediatek/patches-6.12/733-03-net-phy-mediatek-Move-LED-helper-functions-into-mtk-.patch The file was added target/linux/mediatek/patches-6.12/450-nvmem-add-layout-for-Adtran-devices.patch The file was added target/linux/mediatek/patches-6.12/945-arm64-dts-mt7986-move-ilm-in-a-dedicated-node.patch The file was added target/linux/mediatek/mt7622/config-6.12 The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7986a-rfb-spim-nor.dts The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth2-aqr.dtso The file was removed target/linux/mediatek/patches-6.6/432-drivers-spi-Add-support-for-dynamic-calibration.patch The file was removed target/linux/mediatek/patches-6.6/901-arm-add-cmdline-override.patch The file was removed target/linux/mediatek/patches-6.6/733-02-net-phy-mediatek-Fix-spelling-errors-and-rearrange-v.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-sd.dtso The file was added target/linux/mediatek/patches-6.12/250-dt-bindings-reset-mediatek-add-MT7988-reset-IDs.patch The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-rtc.dtso The file was removed target/linux/mediatek/patches-6.6/830-v6.7-45-thermal-drivers-mediatek-lvts_thermal-Add-suspend-an.patch The file was added target/linux/mediatek/mt7629/config-6.12 The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7986a-rfb.dtsi The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-spim-nor.dtso The file was removed target/linux/mediatek/files-6.6/drivers/net/dsa/an8855.c The file was added target/linux/mediatek/patches-6.12/830-v6.7-45-thermal-drivers-mediatek-lvts_thermal-Add-suspend-an.patch The file was removed target/linux/mediatek/patches-6.6/121-hack-spi-nand-1b-bbm.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-rtc.dtso The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth1-mxl.dtso The file was removed target/linux/mediatek/patches-6.6/163-dts-mt7623-bpi-r2-ethernet-alias.patch The file was added target/linux/mediatek/patches-6.12/436-drivers-mtd-spi-nor-Add-calibration-support-for-spi-.patch The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-sd.dtso The file was added target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth2-mxl.dtso The file was added target/linux/mediatek/patches-6.12/401-crypto-fix-eip97-cache-incoherent.patch The file was removed target/linux/mediatek/patches-6.6/434-drivers-spi-mt65xx-Add-controller-s-calibration-para.patch The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7986a-rfb-spim-nand.dts The file was removed target/linux/mediatek/patches-6.6/946-arm64-dts-mt7986-move-dlm-in-a-dedicated-node.patch The file was added target/linux/mediatek/patches-6.12/940-net-ethernet-mtk_wed-rename-mtk_wed_get_memory_regio.patch The file was removed target/linux/mediatek/patches-6.6/950-smartrg-i2c-led-driver.patch The file was removed target/linux/mediatek/patches-6.6/733-11-net-phy-add-driver-for-built-in-2.5G-ethernet-PHY-on.patch The file was added target/linux/mediatek/patches-6.12/100-dts-update-mt7622-rfb1.patch The file was removed target/linux/mediatek/patches-6.6/500-gsw-rtl8367s-mt7622-support.patch The file was added target/linux/mediatek/patches-6.12/733-04-net-phy-mediatek-Improve-readability-of-mtk-phy-lib..patch The file was removed target/linux/mediatek/patches-6.6/722-remove-300Hz-to-prevent-freeze.patch The file was removed target/linux/mediatek/patches-6.6/164-dts-mt7623-bpi-r2-rootdisk-for-fitblk.patch The file was added target/linux/mediatek/patches-6.12/111-dts-fix-bpi64-console.patch The file was added target/linux/mediatek/patches-6.12/861-pending-10-ASoC-mediatek-mt7986-silence-error-in-case-of-EPROBE.patch The file was removed target/linux/mediatek/patches-6.6/248-v6.8-clk-mediatek-add-pcw_chg_bit-control-for-PLLs-of-MT7.patch The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a.dtsi The file was removed target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-emmc.dtso The file was removed target/linux/mediatek/patches-6.6/830-v6.7-48-thermal-drivers-mediatek-lvts_thermal-Update-calibra.patch The file was removed target/linux/mediatek/patches-6.6/331-mt7622-rfb1-enable-bmt.patch The file was added target/linux/mediatek/files-6.12/drivers/pinctrl/mediatek/pinctrl-mt7988.c The file was removed target/linux/mediatek/patches-6.6/140-dts-fix-wmac-support-for-mt7622-rfb1.patch The file was removed target/linux/mediatek/patches-6.6/195-dts-mt7986a-bpi-r3-leds-port-names-and-wifi-eeprom.patch The file was removed target/linux/mediatek/patches-6.6/733-09-net-phy-mediatek-Add-token-ring-access-helper-functi.patch The file was added target/linux/mediatek/patches-6.12/115-Revert-arm64-dts-mediatek-fix-t-phy-unit-name.patch The file was added target/linux/mediatek/patches-6.12/830-v6.7-46-dt-bindings-thermal-mediatek-Add-LVTS-thermal-contro.patch The file was added target/linux/mediatek/patches-6.12/830-v6.7-40-thermal-drivers-mediatek-lvts_thermal-Make-coeff-con.patch The file was added target/linux/mediatek/patches-6.12/247-v6.8-dt-bindings-clock-mediatek-add-clock-controllers-of-.patch The file was added target/linux/mediatek/patches-6.12/110-dts-fix-bpi2-console.patch
コミット
ca3a3a7cc40257b205654f36e49d63ebd82ac054
by daniel kernel/mediatek: Restore kernel files for v6.6 This is an automatically generated commit which aids following Kernel patch history, as git will see the move and copy as a rename thus defeating the purpose. For the original discussion see: https://lists.openwrt.org/pipermail/openwrt-devel/2023-October/041673.html Signed-off-by: Daniel Golle <daniel@makrotopia.org> (commit: ca3a3a7 ) The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-sd.dtso The file was added target/linux/mediatek/patches-6.6/104-mt7622-add-snor-irq.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7981-rfb-spim-nand.dtso The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-spim-nand.dtso The file was added target/linux/mediatek/patches-6.6/733-05-net-phy-mediatek-Integrate-read-write-page-helper-fu.patch The file was added target/linux/mediatek/patches-6.6/710-pci-pcie-mediatek-add-support-for-coherent-DMA.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth2-mxl.dtso The file was added target/linux/mediatek/patches-6.6/733-09-net-phy-mediatek-Add-token-ring-access-helper-functi.patch The file was added target/linux/mediatek/patches-6.6/860-v6.7-08-ASoC-mediatek-mt7986-remove-the-mt7986_wm8960_priv-s.patch The file was added target/linux/mediatek/patches-6.6/193-dts-mt7623-thermal_zone_fix.patch The file was added target/linux/mediatek/patches-6.6/432-drivers-spi-Add-support-for-dynamic-calibration.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-spim-nand-factory.dtso The file was added target/linux/mediatek/patches-6.6/930-spi-mt65xx-enable-sel-clk.patch The file was added target/linux/mediatek/patches-6.6/721-dts-mt7622-mediatek-fix-300mhz.patch The file was added target/linux/mediatek/patches-6.6/602-arm64-dts-mediatek-add-mt7622-pcie-slot-node.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-sd.dtso The file was added target/linux/mediatek/patches-6.6/733-01-net-phy-mediatek-Re-organize-MediaTek-ethernet-phy-d.patch The file was added target/linux/mediatek/patches-6.6/860-v6.7-07-ASoC-mediatek-mt7986-drop-the-remove-callback-of-mt7.patch The file was added target/linux/mediatek/patches-6.6/946-arm64-dts-mt7986-move-dlm-in-a-dedicated-node.patch The file was added target/linux/mediatek/patches-6.6/830-v6.7-41-dt-bindings-thermal-mediatek-Add-LVTS-thermal-sensor.patch The file was added target/linux/mediatek/patches-6.6/830-v6.7-43-thermal-drivers-mediatek-lvts_thermal-Fix-error-chec.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth1-i2p5g-phy.dtso The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-snfi-nand.dtso The file was added target/linux/mediatek/patches-6.6/100-dts-update-mt7622-rfb1.patch The file was added target/linux/mediatek/patches-6.6/250-clk-mediatek-add-infracfg-reset-controller-for-mt798.patch The file was added target/linux/mediatek/patches-6.6/450-nvmem-add-layout-for-Adtran-devices.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-poe.dts The file was added target/linux/mediatek/patches-6.6/433-drivers-spi-mem-Add-spi-calibration-hook.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7986a-rfb.dtsi The file was added target/linux/mediatek/patches-6.6/255-clk-mediatek-mt7988-infracfg-SPI0-clocks-are-not-critical.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7981-rfb-mxl-2p5g-phy-eth1.dtso The file was added target/linux/mediatek/files-6.6/drivers/nvmem/an8855-efuse.c The file was added target/linux/mediatek/patches-6.6/500-gsw-rtl8367s-mt7622-support.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7986a-rfb-spim-nor.dts The file was added target/linux/mediatek/patches-6.6/195-dts-mt7986a-bpi-r3-leds-port-names-and-wifi-eeprom.patch The file was added target/linux/mediatek/patches-6.6/941-arm64-dts-mt7986-move-cpuboot-in-a-dedicated-node.patch The file was added target/linux/mediatek/patches-6.6/830-v6.7-40-thermal-drivers-mediatek-lvts_thermal-Make-coeff-con.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth2-sfp.dtso The file was added target/linux/mediatek/patches-6.6/950-smartrg-i2c-led-driver.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7981b.dtsi The file was added target/linux/mediatek/patches-6.6/252-clk-mediatek-mt7988-infracfg-fix-clocks-for-2nd-PCIe.patch The file was added target/linux/mediatek/patches-6.6/410-bt-mtk-serial-fix.patch The file was added target/linux/mediatek/patches-6.6/733-11-net-phy-add-driver-for-built-in-2.5G-ethernet-PHY-on.patch The file was added target/linux/mediatek/patches-6.6/250-dt-bindings-reset-mediatek-add-MT7988-reset-IDs.patch The file was added target/linux/mediatek/patches-6.6/945-arm64-dts-mt7986-move-ilm-in-a-dedicated-node.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb.dts The file was added target/linux/mediatek/patches-6.6/830-v6.7-45-thermal-drivers-mediatek-lvts_thermal-Add-suspend-an.patch The file was added target/linux/mediatek/patches-6.6/732-net-phy-mxl-gpy-don-t-use-SGMII-AN-if-using-phylink.patch The file was added target/linux/mediatek/patches-6.6/830-v6.7-42-thermal-drivers-mediatek-lvts_thermal-Add-mt7988-sup.patch The file was added target/linux/mediatek/patches-6.6/163-dts-mt7623-bpi-r2-ethernet-alias.patch The file was added target/linux/mediatek/patches-6.6/350-21-cpufreq-mediatek-Add-support-for-MT7988.patch The file was added target/linux/mediatek/patches-6.6/733-07-net-phy-mediatek-add-MT7530-MT7531-s-PHY-ID-macros.patch The file was added target/linux/mediatek/patches-6.6/103-mt7623-enable-arch-timer.patch The file was added target/linux/mediatek/patches-6.6/130-dts-mt7629-add-snand-support.patch The file was added target/linux/mediatek/patches-6.6/121-hack-spi-nand-1b-bbm.patch The file was added target/linux/mediatek/patches-6.6/733-06-net-phy-mediatek-Hook-LED-helper-functions-in-mtk-ge.patch The file was added target/linux/mediatek/patches-6.6/864-arm64-dts-mt7986-add-sound-overlay-for-bpi-r3.patch The file was added target/linux/mediatek/patches-6.6/601-PCI-mediatek-Assert-PERST-for-100ms-for-power-and-cl.patch The file was added target/linux/mediatek/patches-6.6/615-phy-phy-mtk-xsphy-support-type-switch-by-pericfg.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4.dts The file was added target/linux/mediatek/patches-6.6/162-dts-mt7623-bpi-r2-led-aliases.patch The file was added target/linux/mediatek/patches-6.6/111-dts-fix-bpi64-console.patch The file was added target/linux/mediatek/patches-6.6/240-pinctrl-mediatek-add-support-for-MT7988-SoC.patch The file was added target/linux/mediatek/patches-6.6/830-v6.7-47-thermal-drivers-mediatek-lvts_thermal-Add-mt8192-sup.patch The file was added target/linux/mediatek/patches-6.6/955-dts-mt7968a-bpi-r3-add-label-to-gmac-for-sfp1-port.patch The file was added target/linux/mediatek/patches-6.6/116-arm64-dts-mediatek-mt7622-readd-syscon-to-pciesys-no.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth2-aqr.dtso The file was added target/linux/mediatek/patches-6.6/806-v6.9-pwm-mediatek-add-support-for-MT7988.patch The file was added target/linux/mediatek/patches-6.6/246-v6.8-dt-bindings-clock-mediatek-add-MT7988-clock-IDs.patch The file was added target/linux/mediatek/patches-6.6/247-v6.8-dt-bindings-clock-mediatek-add-clock-controllers-of-.patch The file was added target/linux/mediatek/patches-6.6/861-pending-10-ASoC-mediatek-mt7986-silence-error-in-case-of-EPROBE.patch The file was added target/linux/mediatek/mt7622/config-6.6 The file was added target/linux/mediatek/patches-6.6/245-v6.8-dt-bindings-reset-mediatek-add-MT7988-ethwarp-reset-.patch The file was added target/linux/mediatek/patches-6.6/610-pcie-mediatek-fix-clearing-interrupt-status.patch The file was added target/linux/mediatek/files-6.6/drivers/net/mdio/mdio-an8855.c The file was added target/linux/mediatek/patches-6.6/830-v6.7-48-thermal-drivers-mediatek-lvts_thermal-Update-calibra.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a.dtsi The file was added target/linux/mediatek/patches-6.6/114-dts-bpi64-disable-rtc.patch The file was added target/linux/mediatek/patches-6.6/113-dts-fix-bpi64-leds-and-buttons.patch The file was added target/linux/mediatek/patches-6.6/194-dts-mt7968a-add-ramoops.patch The file was added target/linux/mediatek/patches-6.6/115-Revert-arm64-dts-mediatek-fix-t-phy-unit-name.patch The file was added target/linux/mediatek/patches-6.6/190-arm64-dts-mediatek-mt7622-fix-GICv2-range.patch The file was added target/linux/mediatek/patches-6.6/944-net-ethernet-mtk_wed-move-dlm-a-dedicated-dts-node.patch The file was added target/linux/mediatek/files-6.6/drivers/net/dsa/an8855.c The file was added target/linux/mediatek/patches-6.6/434-drivers-spi-mt65xx-Add-controller-s-calibration-para.patch The file was added target/linux/mediatek/mt7623/config-6.6 The file was added target/linux/mediatek/patches-6.6/734-net-phy-add-Airoha-EN8801SC-PHY.patch The file was added target/linux/mediatek/patches-6.6/110-dts-fix-bpi2-console.patch The file was added target/linux/mediatek/patches-6.6/940-net-ethernet-mtk_wed-rename-mtk_wed_get_memory_regio.patch The file was added target/linux/mediatek/patches-6.6/131-dts-mt7622-add-snand-support.patch The file was added target/linux/mediatek/patches-6.6/401-crypto-fix-eip97-cache-incoherent.patch The file was added target/linux/mediatek/patches-6.6/248-v6.8-clk-mediatek-add-pcw_chg_bit-control-for-PLLs-of-MT7.patch The file was added target/linux/mediatek/patches-6.6/249-v6.8-clk-mediatek-add-drivers-for-MT7988-SoC.patch The file was added target/linux/mediatek/patches-6.6/436-drivers-mtd-spi-nor-Add-calibration-support-for-spi-.patch The file was added target/linux/mediatek/patches-6.6/960-asus-hack-u-boot-ignore-mtdparts.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-rtc.dtso The file was added target/linux/mediatek/patches-6.6/244-v6.8-dt-bindings-arm-mediatek-move-ethsys-controller-conv.patch The file was added target/linux/mediatek/patches-6.6/251-v6.8-watchdog-mediatek-mt7988-add-wdt-support.patch The file was added target/linux/mediatek/patches-6.6/733-03-net-phy-mediatek-Move-LED-helper-functions-into-mtk-.patch The file was added target/linux/mediatek/patches-6.6/737-net-dsa-add-Airoha-AN8855.patch The file was added target/linux/mediatek/patches-6.6/112-dts-fix-bpi64-lan-names.patch The file was added target/linux/mediatek/patches-6.6/733-04-net-phy-mediatek-Improve-readability-of-mtk-phy-lib..patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7981-rfb.dts The file was added target/linux/mediatek/patches-6.6/160-dts-mt7623-bpi-r2-earlycon.patch The file was added target/linux/mediatek/patches-6.6/863-arm64-dts-mt7986-add-sound-wm8960.patch The file was added target/linux/mediatek/files-6.6/include/linux/mfd/airoha-an8855-mfd.h The file was added target/linux/mediatek/patches-6.6/105-dts-mt7622-enable-pstore.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-wifi-mt7996a.dtso The file was added target/linux/mediatek/patches-6.6/862-arm64-dts-mt7986-add-afe.patch The file was added target/linux/mediatek/patches-6.6/855-i2c-mt65xx-allow-optional-pmic-clock.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-emmc.dtso The file was added target/linux/mediatek/patches-6.6/733-02-net-phy-mediatek-Fix-spelling-errors-and-rearrange-v.patch The file was added target/linux/mediatek/patches-6.6/611-pcie-mediatek-gen3-PERST-for-100ms.patch The file was added target/linux/mediatek/patches-6.6/218-pinctrl-mediatek-mt7981-add-additional-uart-groups.patch The file was added target/linux/mediatek/patches-6.6/330-snand-mtk-bmt-support.patch The file was added target/linux/mediatek/patches-6.6/901-arm-add-cmdline-override.patch The file was added target/linux/mediatek/patches-6.6/340-mtd-spinand-Add-support-for-the-Fidelix-FM35X1GA.patch The file was added target/linux/mediatek/patches-6.6/739-net-add-negotiation-of-in-band-capabilities.patch The file was added target/linux/mediatek/patches-6.6/911-dts-mt7622-bpi-r64-add-rootdisk.patch The file was added target/linux/mediatek/patches-6.6/106-dts-mt7622-disable_btif.patch The file was added target/linux/mediatek/filogic/config-6.6 The file was added target/linux/mediatek/patches-6.6/910-dts-mt7622-bpi-r64-wifi-eeprom.patch The file was added target/linux/mediatek/mt7629/config-6.6 The file was added target/linux/mediatek/patches-6.6/351-pinctrl-add-mt7988-pd-pulltype-support.patch The file was added target/linux/mediatek/patches-6.6/830-v6.7-39-thermal-lvts-Convert-to-platform-remove-callback-ret.patch The file was added target/linux/mediatek/patches-6.6/400-crypto-add-eip97-inside-secure-support.patch The file was added target/linux/mediatek/files-6.6/drivers/net/phy/air_an8855.c The file was added target/linux/mediatek/patches-6.6/200-phy-phy-mtk-tphy-Add-hifsys-support.patch The file was added target/linux/mediatek/files-6.6/drivers/net/dsa/an8855.h The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4.dtsi The file was added target/linux/mediatek/patches-6.6/140-dts-fix-wmac-support-for-mt7622-rfb1.patch The file was added target/linux/mediatek/patches-6.6/435-drivers-mtd-spinand-Add-calibration-support-for-spin.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-emmc.dtso The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth1-aqr.dtso The file was added target/linux/mediatek/patches-6.6/331-mt7622-rfb1-enable-bmt.patch The file was added target/linux/mediatek/patches-6.6/736-net-pcs-mtk_usxgmii-add-polarity-control.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth1-mxl.dtso The file was added target/linux/mediatek/patches-6.6/107-mt7622_fix_dts_mt7531_reg.patch The file was added target/linux/mediatek/patches-6.6/253-pinctrl-mediatek-mt7981-add-additional-uart-group.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7986a-rfb-spim-nand.dts The file was added target/linux/mediatek/files-6.6/drivers/pinctrl/mediatek/pinctrl-mt7988.c The file was added target/linux/mediatek/patches-6.6/943-net-ethernet-mtk_wed-move-ilm-a-dedicated-dts-node.patch The file was added target/linux/mediatek/patches-6.6/900-dts-mt7622-bpi-r64-aliases-for-dtoverlay.patch The file was added target/linux/mediatek/patches-6.6/942-net-ethernet-mtk_wed-move-cpuboot-in-a-dedicated-dts.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7981-rfb-mxl-2p5g-phy-swp5.dtso The file was added target/linux/mediatek/files-6.6/drivers/mfd/airoha-an8855.c The file was added target/linux/mediatek/patches-6.6/722-remove-300Hz-to-prevent-freeze.patch The file was added target/linux/mediatek/patches-6.6/161-dts-mt7623-bpi-r2-mmc-device-order.patch The file was added target/linux/mediatek/patches-6.6/254-pinctrl-mediatek-mt7981-add-additional-emmc-group.patch The file was added target/linux/mediatek/patches-6.6/738-net-phylink-move-phylink_pcs_neg_mode.patch The file was added target/linux/mediatek/patches-6.6/164-dts-mt7623-bpi-r2-rootdisk-for-fitblk.patch The file was added target/linux/mediatek/patches-6.6/733-08-net-phy-mediatek-Change-mtk-ge-soc.c-line-wrapping.patch The file was added target/linux/mediatek/patches-6.6/431-drivers-spi-mt65xx-Move-chip_config-to-driver-s-priv.patch The file was added target/linux/mediatek/patches-6.6/860-v6.7-09-ASoC-mediatek-mt7986-add-sample-rate-checker.patch The file was added target/linux/mediatek/patches-6.6/830-v6.7-46-dt-bindings-thermal-mediatek-Add-LVTS-thermal-contro.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth1-sfp.dtso The file was added target/linux/mediatek/patches-6.6/101-dts-update-mt7629-rfb.patch The file was added target/linux/mediatek/patches-6.6/196-dts-mt7986a-bpi-r3-use-all-ubi-nand-layout.patch The file was added target/linux/mediatek/files-6.6/arch/arm64/boot/dts/mediatek/mt7988a-rfb-spim-nor.dtso The file was added target/linux/mediatek/patches-6.6/150-dts-mt7623-eip97-inside-secure-support.patch
コミット
72994b5e5a72afe06f7416cf600a248f5da09f7e
by daniel kernel/mediatek: 6.12: drop patches which are now part of generic Drop patches which have been moved into target/linux/generic by commit f4144d61d2 ("generic: 6.12: backport MediaTek Ethernet PHY changes"). Signed-off-by: Daniel Golle <daniel@makrotopia.org> (commit: 72994b5 ) The file was modified target/linux/mediatek/patches-6.12/710-pci-pcie-mediatek-add-support-for-coherent-DMA.patch (diff) The file was removed target/linux/mediatek/patches-6.12/733-09-net-phy-mediatek-Add-token-ring-access-helper-functi.patch The file was removed target/linux/mediatek/patches-6.12/733-07-net-phy-mediatek-add-MT7530-MT7531-s-PHY-ID-macros.patch The file was removed target/linux/mediatek/patches-6.12/733-08-net-phy-mediatek-Change-mtk-ge-soc.c-line-wrapping.patch The file was added target/linux/mediatek/patches-6.12/700-net-phy-mediatek-Add-2.5Gphy-firmware-dt-bindings-an.patch The file was removed target/linux/mediatek/patches-6.12/733-03-net-phy-mediatek-Move-LED-helper-functions-into-mtk-.patch The file was modified target/linux/mediatek/patches-6.12/732-net-phy-mxl-gpy-don-t-use-SGMII-AN-if-using-phylink.patch (diff) The file was added target/linux/mediatek/patches-6.12/701-net-phy-mediatek-add-driver-for-built-in-2.5G-ethern.patch The file was modified target/linux/mediatek/patches-6.12/734-net-phy-add-Airoha-EN8801SC-PHY.patch (diff) The file was removed target/linux/mediatek/patches-6.12/733-06-net-phy-mediatek-Hook-LED-helper-functions-in-mtk-ge.patch The file was removed target/linux/mediatek/patches-6.12/733-02-net-phy-mediatek-Fix-spelling-errors-and-rearrange-v.patch The file was removed target/linux/mediatek/patches-6.12/733-04-net-phy-mediatek-Improve-readability-of-mtk-phy-lib..patch The file was removed target/linux/mediatek/patches-6.12/733-05-net-phy-mediatek-Integrate-read-write-page-helper-fu.patch The file was removed target/linux/mediatek/patches-6.12/733-11-net-phy-add-driver-for-built-in-2.5G-ethernet-PHY-on.patch The file was removed target/linux/mediatek/patches-6.12/733-01-net-phy-mediatek-Re-organize-MediaTek-ethernet-phy-d.patch The file was removed target/linux/mediatek/patches-6.12/738-net-phylink-move-phylink_pcs_neg_mode.patch The file was removed target/linux/mediatek/patches-6.12/830-v6.7-46-dt-bindings-thermal-mediatek-Add-LVTS-thermal-contro.patch The file was removed target/linux/mediatek/patches-6.12/254-pinctrl-mediatek-mt7981-add-additional-emmc-group.patch The file was removed target/linux/mediatek/patches-6.12/248-v6.8-clk-mediatek-add-pcw_chg_bit-control-for-PLLs-of-MT7.patch The file was removed target/linux/mediatek/patches-6.12/253-pinctrl-mediatek-mt7981-add-additional-uart-group.patch The file was removed target/linux/mediatek/patches-6.12/830-v6.7-48-thermal-drivers-mediatek-lvts_thermal-Update-calibra.patch The file was removed target/linux/mediatek/patches-6.12/247-v6.8-dt-bindings-clock-mediatek-add-clock-controllers-of-.patch The file was removed target/linux/mediatek/patches-6.12/860-v6.7-07-ASoC-mediatek-mt7986-drop-the-remove-callback-of-mt7.patch The file was removed target/linux/mediatek/patches-6.12/860-v6.7-08-ASoC-mediatek-mt7986-remove-the-mt7986_wm8960_priv-s.patch The file was removed target/linux/mediatek/patches-6.12/244-v6.8-dt-bindings-arm-mediatek-move-ethsys-controller-conv.patch The file was removed target/linux/mediatek/patches-6.12/351-pinctrl-add-mt7988-pd-pulltype-support.patch The file was removed target/linux/mediatek/patches-6.12/250-dt-bindings-reset-mediatek-add-MT7988-reset-IDs.patch The file was removed target/linux/mediatek/patches-6.12/830-v6.7-45-thermal-drivers-mediatek-lvts_thermal-Add-suspend-an.patch The file was removed target/linux/mediatek/patches-6.12/107-mt7622_fix_dts_mt7531_reg.patch The file was removed target/linux/mediatek/patches-6.12/830-v6.7-47-thermal-drivers-mediatek-lvts_thermal-Add-mt8192-sup.patch The file was removed target/linux/mediatek/patches-6.12/252-clk-mediatek-mt7988-infracfg-fix-clocks-for-2nd-PCIe.patch The file was removed target/linux/mediatek/patches-6.12/855-i2c-mt65xx-allow-optional-pmic-clock.patch The file was removed target/linux/mediatek/patches-6.12/830-v6.7-39-thermal-lvts-Convert-to-platform-remove-callback-ret.patch The file was removed target/linux/mediatek/patches-6.12/246-v6.8-dt-bindings-clock-mediatek-add-MT7988-clock-IDs.patch The file was removed target/linux/mediatek/patches-6.12/350-21-cpufreq-mediatek-Add-support-for-MT7988.patch The file was removed target/linux/mediatek/patches-6.12/830-v6.7-42-thermal-drivers-mediatek-lvts_thermal-Add-mt7988-sup.patch The file was removed target/linux/mediatek/patches-6.12/860-v6.7-09-ASoC-mediatek-mt7986-add-sample-rate-checker.patch The file was removed target/linux/mediatek/patches-6.12/830-v6.7-43-thermal-drivers-mediatek-lvts_thermal-Fix-error-chec.patch The file was removed target/linux/mediatek/patches-6.12/240-pinctrl-mediatek-add-support-for-MT7988-SoC.patch The file was removed target/linux/mediatek/patches-6.12/806-v6.9-pwm-mediatek-add-support-for-MT7988.patch The file was removed target/linux/mediatek/patches-6.12/218-pinctrl-mediatek-mt7981-add-additional-uart-groups.patch The file was removed target/linux/mediatek/patches-6.12/249-v6.8-clk-mediatek-add-drivers-for-MT7988-SoC.patch The file was removed target/linux/mediatek/patches-6.12/830-v6.7-40-thermal-drivers-mediatek-lvts_thermal-Make-coeff-con.patch The file was removed target/linux/mediatek/patches-6.12/245-v6.8-dt-bindings-reset-mediatek-add-MT7988-ethwarp-reset-.patch The file was removed target/linux/mediatek/patches-6.12/861-pending-10-ASoC-mediatek-mt7986-silence-error-in-case-of-EPROBE.patch The file was removed target/linux/mediatek/patches-6.12/250-clk-mediatek-add-infracfg-reset-controller-for-mt798.patch The file was removed target/linux/mediatek/patches-6.12/830-v6.7-41-dt-bindings-thermal-mediatek-Add-LVTS-thermal-sensor.patch The file was removed target/linux/mediatek/patches-6.12/251-v6.8-watchdog-mediatek-mt7988-add-wdt-support.patch
コミット
f9206d1111361506379375dc3f72a3d432569c83
by daniel kernel/mediatek: 6.12: replace downstream files by patches Replace downstream files by patches, either backports of those which have already applied or pending patches tracked on patchwork. This is done to make future maintainance more easy. Signed-off-by: Daniel Golle <daniel@makrotopia.org> (commit: f9206d1 ) The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4.dts The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-rtc.dtso The file was added target/linux/mediatek/patches-6.12/060-v6.13-mmc-mtk-sd-add-support-for-mt7988.patch The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-wifi-mt7996a.dtso The file was added target/linux/mediatek/patches-6.12/188-arm64-dts-mediatek-add-MT7988A-reference-board-devic.patch The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-spim-nand.dtso The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth2-mxl.dtso The file was added target/linux/mediatek/patches-6.12/045-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Add-proc-supply-fo.patch The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth1-i2p5g-phy.dtso The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-emmc.dtso The file was added target/linux/mediatek/patches-6.12/021-v6.13-arm64-dts-mediatek-mt7988-add-efuse-block.patch The file was added target/linux/mediatek/patches-6.12/187-arm64-dts-mt7988a-add-serial1-and-serial2-aliases.patch The file was added target/linux/mediatek/patches-6.12/035-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Add-thermal-config.patch The file was added target/linux/mediatek/patches-6.12/037-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Add-default-UART-s.patch The file was added target/linux/mediatek/patches-6.12/171-arm64-dts-mediatek-mt7988a-Add-xsphy-for-ssusb0-pcie2.patch The file was added target/linux/mediatek/patches-6.12/176-arm64-dts-mediatek-mt7988-add-cci-node.patch The file was added target/linux/mediatek/patches-6.12/175-arm64-dts-mediatek-mt7988-move-uart0-and-spi1-pins-to-soc-dtsi.patch The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-spim-nand-factory.dtso The file was removed target/linux/mediatek/files-6.12/drivers/pinctrl/mediatek/pinctrl-mt7988.c The file was added target/linux/mediatek/patches-6.12/183-arm64-dts-mediatek-mt7988a-bpi-r4-add-sfp-cages-and-link-to-gmac.patch The file was added target/linux/mediatek/patches-6.12/179-arm64-dts-mediatek-mt7988-add-switch-node.patch The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth1-mxl.dtso The file was added target/linux/mediatek/patches-6.12/173-dts-mt7988a-Add-built-in-ethernet-phy-firmware-node.patch The file was added target/linux/mediatek/patches-6.12/011-v6.14-pinctrl-mediatek-add-MT7988-pinctrl-driver.patch The file was added target/linux/mediatek/patches-6.12/177-arm64-dts-mediatek-mt7988-add-phy-calibration-efuse-subnodes.patch The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-sd.dtso The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-spim-nor.dtso The file was added target/linux/mediatek/patches-6.12/033-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Enable-watchdog.patch The file was added target/linux/mediatek/patches-6.12/039-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Add-PCA9545-I2C-Mu.patch The file was added target/linux/mediatek/patches-6.12/026-v6.14-arm64-dts-mediatek-mt7988-Add-thermal-zone.patch The file was added target/linux/mediatek/patches-6.12/024-v6.14-arm64-dts-mediatek-mt7988-Add-mmc-support.patch The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-snfi-nand.dtso The file was added target/linux/mediatek/patches-6.12/043-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Enable-pcie.patch The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-poe.dts The file was added target/linux/mediatek/patches-6.12/029-v6.14-arm64-dts-mediatek-mt7988-Disable-usb-controllers-by.patch The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-sd.dtso The file was added target/linux/mediatek/patches-6.12/020-v6.13-arm64-dts-mediatek-mt7988-add-UART-controllers.patch The file was added target/linux/mediatek/patches-6.12/027-v6.14-arm64-dts-mediatek-mt7988-Add-mcu-sys-node-for-cpu.patch The file was added target/linux/mediatek/patches-6.12/042-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Enable-pwm.patch The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-emmc.dtso The file was added target/linux/mediatek/patches-6.12/028-v6.14-arm64-dts-mediatek-mt7988-Add-CPU-OPP-table-for-cloc.patch The file was added target/linux/mediatek/patches-6.12/174-arm64-dts-mediatek-mt7988-add-spi-controllers.patch The file was added target/linux/mediatek/patches-6.12/030-v6.14-arm64-dts-mediatek-mt7988-Add-t-phy-for-ssusb1.patch The file was added target/linux/mediatek/patches-6.12/031-v6.14-arm64-dts-mediatek-mt7988-Add-pcie-nodes.patch The file was added target/linux/mediatek/patches-6.12/172-arm64-dts-mediatek-mt7988a-bpi-r4-enable-xsphy.patch The file was added target/linux/mediatek/patches-6.12/170-arm64-dts-mediatek-mt7988a-bpi-r4-allow-hw-variants-.patch The file was added target/linux/mediatek/patches-6.12/040-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Enable-t-phy-for-s.patch The file was added target/linux/mediatek/patches-6.12/044-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Add-MediaTek-MT668.patch The file was added target/linux/mediatek/patches-6.12/182-arm64-dts-mediatek-mt7988a-bpi-r4-add-proc-supply-for-cci.patch The file was added target/linux/mediatek/patches-6.12/184-arm64-dts-mediatek-mt7988a-bpi-r4-configure-switch-phys-and-leds.patch The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4.dtsi The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7981b.dtsi The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth2-sfp.dtso The file was added target/linux/mediatek/patches-6.12/032-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Add-pinctrl-subnod.patch The file was added target/linux/mediatek/patches-6.12/181-arm64-dts-mediatek-mt7988a-bpi-r4-configure-spi-nodes.patch The file was added target/linux/mediatek/patches-6.12/038-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Enable-I2C-control.patch The file was added target/linux/mediatek/patches-6.12/012-v6.14-pinctrl-mediatek-Drop-mtk_pinconf_bias_set_pd.patch The file was added target/linux/mediatek/patches-6.12/050-v6.16-phy-mediatek-xsphy-support-type-switch-by-pericfg.patch The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a.dtsi The file was added target/linux/mediatek/patches-6.12/023-v6.14-arm64-dts-mediatek-mt7988-Add-reserved-memory.patch The file was added target/linux/mediatek/patches-6.12/180-arm64-dts-mediatek-mt7988a-bpi-r4-Add-fan-and-coolingmaps.patch The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb.dts The file was added target/linux/mediatek/patches-6.12/025-v6.14-arm64-dts-mediatek-mt7988-Add-lvts-node.patch The file was added target/linux/mediatek/patches-6.12/041-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Enable-ssusb1-on-b.patch The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth1-sfp.dtso The file was added target/linux/mediatek/patches-6.12/036-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Enable-serial0-deb.patch The file was added target/linux/mediatek/patches-6.12/022-v6.14-arm64-dts-mediatek-mt7988-Add-pinctrl-support.patch The file was added target/linux/mediatek/patches-6.12/034-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Add-fixed-regulato.patch The file was added target/linux/mediatek/patches-6.12/189-arm64-dts-mediatek-mt7988a-complete-bpi-r4.patch The file was added target/linux/mediatek/patches-6.12/010-v6.14-pinctrl-mediatek-add-support-for-MTK_PULL_PD_TYPE.patch The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth2-aqr.dtso The file was added target/linux/mediatek/patches-6.12/178-arm64-dts-mediatek-mt7988-add-basic-ethernet-nodes.patch The file was removed target/linux/mediatek/files-6.12/arch/arm64/boot/dts/mediatek/mt7988a-rfb-eth1-aqr.dtso The file was added target/linux/mediatek/patches-6.12/117-complete-mt7981b-dtsi.patch The file was removed target/linux/mediatek/patches-6.12/615-phy-phy-mtk-xsphy-support-type-switch-by-pericfg.patch The file was modified target/linux/mediatek/patches-6.12/435-drivers-mtd-spinand-Add-calibration-support-for-spin.patch (diff) The file was modified target/linux/mediatek/patches-6.12/431-drivers-spi-mt65xx-Move-chip_config-to-driver-s-priv.patch (diff) The file was modified target/linux/mediatek/patches-6.12/434-drivers-spi-mt65xx-Add-controller-s-calibration-para.patch (diff) The file was modified target/linux/mediatek/patches-6.12/436-drivers-mtd-spi-nor-Add-calibration-support-for-spi-.patch (diff) The file was modified target/linux/mediatek/patches-6.12/432-drivers-spi-Add-support-for-dynamic-calibration.patch (diff) The file was modified target/linux/mediatek/patches-6.12/433-drivers-spi-mem-Add-spi-calibration-hook.patch (diff)
コミット
b09c0d268075a0c64101ca3d28d26427801459d4
by daniel kernel/mediatek: 6.12: allow setting OF node for MSDOS partitions Add patch to allow referencing MSDOS/MBR partitions in device tree to allow legacy MT7623 boards to continue working with fitblk. Signed-off-by: Daniel Golle <daniel@makrotopia.org> (commit: b09c0d2 ) The file was added target/linux/mediatek/patches-6.12/920-block-partitions-msdos-add-OF-node-by-partition-numb.patch
コミット
25bb907937c9e0359bb9980ef99a2c9c1dbb5466
by daniel kernel/mediatek: 6.12: adapt for changed MMC card binding Adapt patches adding NVMEM or fitblk rootdisk references to MMC partitions for the changed MMC card binding. Note that boards in 'dts' folder can only be converted once Linux 6.6, which still depends on the old binding, has been dropped. Signed-off-by: Daniel Golle <daniel@makrotopia.org> (commit: 25bb907 ) The file was modified target/linux/mediatek/patches-6.12/164-dts-mt7623-bpi-r2-rootdisk-for-fitblk.patch (diff) The file was modified target/linux/mediatek/patches-6.12/196-dts-mt7986a-bpi-r3-use-all-ubi-nand-layout.patch (diff) The file was modified target/linux/mediatek/patches-6.12/195-dts-mt7986a-bpi-r3-leds-port-names-and-wifi-eeprom.patch (diff) The file was modified target/linux/mediatek/patches-6.12/331-mt7622-rfb1-enable-bmt.patch (diff) The file was modified target/linux/mediatek/patches-6.12/901-arm-add-cmdline-override.patch (diff) The file was modified target/linux/mediatek/patches-6.12/737-net-dsa-add-Airoha-AN8855.patch (diff) The file was modified target/linux/mediatek/patches-6.12/330-snand-mtk-bmt-support.patch (diff) The file was modified target/linux/mediatek/patches-6.12/911-dts-mt7622-bpi-r64-add-rootdisk.patch (diff) The file was modified target/linux/mediatek/patches-6.12/601-PCI-mediatek-Assert-PERST-for-100ms-for-power-and-cl.patch (diff) The file was modified target/linux/mediatek/patches-6.12/739-net-add-negotiation-of-in-band-capabilities.patch (diff) The file was modified target/linux/mediatek/patches-6.12/611-pcie-mediatek-gen3-PERST-for-100ms.patch (diff) The file was modified target/linux/mediatek/patches-6.12/500-gsw-rtl8367s-mt7622-support.patch (diff) The file was modified target/linux/mediatek/patches-6.12/910-dts-mt7622-bpi-r64-wifi-eeprom.patch (diff) The file was modified target/linux/mediatek/patches-6.12/114-dts-bpi64-disable-rtc.patch (diff) The file was modified target/linux/mediatek/patches-6.12/960-asus-hack-u-boot-ignore-mtdparts.patch (diff) The file was modified target/linux/mediatek/patches-6.12/131-dts-mt7622-add-snand-support.patch (diff) The file was modified target/linux/mediatek/patches-6.12/610-pcie-mediatek-fix-clearing-interrupt-status.patch (diff) The file was modified target/linux/mediatek/patches-6.12/100-dts-update-mt7622-rfb1.patch (diff) The file was modified target/linux/mediatek/patches-6.12/864-arm64-dts-mt7986-add-sound-overlay-for-bpi-r3.patch (diff) The file was modified target/linux/mediatek/patches-6.12/900-dts-mt7622-bpi-r64-aliases-for-dtoverlay.patch (diff) The file was modified target/linux/mediatek/patches-6.12/340-mtd-spinand-Add-support-for-the-Fidelix-FM35X1GA.patch (diff) The file was modified target/linux/mediatek/patches-6.12/950-smartrg-i2c-led-driver.patch (diff) The file was modified target/linux/mediatek/patches-6.12/410-bt-mtk-serial-fix.patch (diff) The file was modified target/linux/mediatek/patches-6.12/121-hack-spi-nand-1b-bbm.patch (diff) The file was modified target/linux/mediatek/patches-6.12/140-dts-fix-wmac-support-for-mt7622-rfb1.patch (diff) The file was modified target/linux/mediatek/patches-6.12/112-dts-fix-bpi64-lan-names.patch (diff) The file was modified target/linux/mediatek/patches-6.12/930-spi-mt65xx-enable-sel-clk.patch (diff) The file was modified target/linux/mediatek/patches-6.12/200-phy-phy-mtk-tphy-Add-hifsys-support.patch (diff) The file was modified target/linux/mediatek/filogic/config-6.12 (diff) The file was modified target/linux/mediatek/mt7622/config-6.12 (diff) The file was modified target/linux/mediatek/mt7623/config-6.12 (diff) The file was modified target/linux/mediatek/mt7629/config-6.12 (diff) The file was modified target/linux/mediatek/Makefile (diff)
コミット
d39d626b23756fe574ad46e093f5a796b1861b17
by robimarko kernel: usb: package MaxLinear/Exar USB serial driver Currently, MaxLinear/Exar USB serial devices are supported via out-of-tree usb-serial-xr_usb_serial_common driver which is broken on 6.12. So since upstream has support for these devices since 6.5 lets package the in-tree driver to be able to drop the out-of-tree one. Link: https://github.com/openwrt/openwrt/pull/18926 Signed-off-by: Robert Marko <robimarko@gmail.com> (commit: d39d626 ) The file was modified package/kernel/linux/modules/usb.mk (diff)
コミット
200a31b6f5ec7a46e5556b55d4e45a74fb5d6167
by robimarko ramips: mt7621: sercomm_na502s: use upstream XR USB serial driver Instead of including the out-of-tree XR USB serial driver, use the newly packaged in-tree driver for it. Link: https://github.com/openwrt/openwrt/pull/18926 Signed-off-by: Robert Marko <robimarko@gmail.com> (commit: 200a31b ) The file was modified target/linux/ramips/image/mt7621.mk (diff) The file was removed toolchain/gcc/patches-11.x/931-libffi-fix-MIPS-softfloat-build-issue.patch The file was removed toolchain/gcc/patches-11.x/970-macos_arm64-building-fix.patch The file was modified config/Config-build.in (diff) The file was removed toolchain/gcc/patches-11.x/870-ppc_no_crtsavres.patch The file was removed toolchain/gcc/patches-11.x/300-mips_Os_cpu_rtx_cost_model.patch The file was removed toolchain/gcc/patches-11.x/230-musl_libssp.patch The file was removed toolchain/gcc/patches-11.x/700-RISCV-Inline-subword-atomic-ops.patch The file was removed toolchain/gcc/patches-11.x/010-documentation.patch The file was removed toolchain/gcc/patches-11.x/011-v12-configure-define-TARGET_LIBC_GNUSTACK-on-musl.patch The file was removed toolchain/gcc/patches-11.x/900-bad-mips16-crt.patch The file was modified package/libs/elfutils/Makefile (diff) The file was removed toolchain/gcc/patches-11.x/810-arm-softfloat-libgcc.patch The file was removed toolchain/gcc/patches-11.x/400-libsanitizer-cherry-pick-9cf13067cb5088626ba7-from-u.patch The file was modified toolchain/gcc/Config.in (diff) The file was removed toolchain/gcc/patches-11.x/110-Fix-MIPS-PR-84790.patch The file was removed toolchain/gcc/patches-11.x/920-specs_nonfatal_getenv.patch The file was removed toolchain/gcc/patches-11.x/851-libgcc_no_compat.patch The file was removed toolchain/gcc/patches-11.x/881-no_tm_section.patch The file was removed toolchain/gcc/patches-11.x/020-Include-safe-ctype.h-after-C-standard-headers-to-avo.patch The file was removed toolchain/gcc/patches-11.x/701-riscv-linux-Don-t-add-latomic-with-pthread.patch The file was removed toolchain/gcc/patches-11.x/840-armv4_pass_fix-v4bx_to_ld.patch The file was removed toolchain/gcc/patches-11.x/910-mbsd_multi.patch The file was modified toolchain/gcc/Config.version (diff) The file was removed toolchain/gcc/patches-11.x/980-fix-build-error-with-Xcode-16.3.patch The file was removed toolchain/gcc/patches-11.x/002-case_insensitive.patch The file was removed toolchain/gcc/patches-11.x/820-libgcc_pic.patch The file was removed toolchain/gcc/patches-11.x/960-gotools-fix-compilation-when-making-cross-compiler.patch The file was removed toolchain/gcc/patches-11.x/850-use_shared_libgcc.patch
コミット
de2d34cf7aef4a822d6c2a50f82d0fe53932d506
by wigyori d1: enable crypto offload engine Enable the sun8i_ce engine that's included on the D1 SoC, along with the respective hash/prng/trng options. The sun8i_ce driver also requires PM and PPU to be enabled. [ 1.368345] sun8i-ce 3040000.crypto: Set mod clock to 300000000 (300 Mhz) from 400000000 (400 Mhz) [ 1.378592] sun8i-ce 3040000.crypto: will run requests pump with realtime priority [ 1.386894] sun8i-ce 3040000.crypto: will run requests pump with realtime priority [ 1.395114] sun8i-ce 3040000.crypto: will run requests pump with realtime priority [ 1.403197] sun8i-ce 3040000.crypto: will run requests pump with realtime priority [ 1.411110] sun8i-ce 3040000.crypto: Register cbc(aes) [ 1.416235] sun8i-ce 3040000.crypto: Register ecb(aes) [ 1.421347] sun8i-ce 3040000.crypto: Register cbc(des3_ede) [ 1.426898] sun8i-ce 3040000.cryxto: Register ecb(des3_ede) [ 1.432366] sun8i-ce 3040000.crypto: Register md5 [ 1.437112] sun8i-ce 3040000.crypto: Register sha1 [ 1.441816] sun8i-ce 3040000.crypto: Register sha224 [ 1.446821] sun8i-ce 3040000.crypto: Register sha256 [ 1.451697] sun8i-ce 3040000.crypto: Register sha384 [ 1.456733] sun8i-ce 3040000.crypto: Register sha512 [ 1.461673] sun8i-ce 3040000.crypto: Register stdrng [ 1.467096] sun8i-ce 3040000.crypto: CryptoEngine Die ID 0 root@OpenWrt:~# cat /proc/crypto |grep sun8i driver : sun8i-ce-prng driver : sha512-sun8i-ce driver : sha384-sun8i-ce driver : sha256-sun8i-ce driver : sha224-sun8i-ce driver : sha1-sun8i-ce driver : md5-sun8i-ce driver : ecb-des3-sun8i-ce driver : cbc-des3-sun8i-ce driver : ecb-aes-sun8i-ce driver : cbc-aes-sun8i-ce Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu> (commit: de2d34c ) The file was modified target/linux/d1/config-6.12 (diff) The file was modified target/linux/d1/image/Makefile (diff)
コミット
7b65949bc4c911c4879dae567cd4efb61da05a2d
by robimarko realtek: align declaration/static/extern function definitions for startup code In 2023 upstream has tightened compiler checks with this patch https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit /scripts/Makefile.extrawarn?h=v6.15&id=0fcb70851fbfea1776ae62f67c503fef8f0292b9 A consistent function definition is now needed. I.e. - functions must be either declared with "static" or - functions need an additional declaration (in the header file) Before upgrading the Realtek target to 6.12 clean the code so that the main 6.12 PR can focus on real issues from the version bump. Signed-off-by: Markus Stockhausen <markus.stockhausen@gmx.de> Link: https://github.com/openwrt/openwrt/pull/18925 Signed-off-by: Robert Marko <robimarko@gmail.com> (commit: 7b65949 ) The file was modified target/linux/realtek/files-6.6/arch/mips/rtl838x/setup.c (diff) The file was modified target/linux/realtek/files-6.6/arch/mips/rtl838x/prom.c (diff)
コミット
31e2567164f66ce96dba6fae3739eb1a55bd1283
by robimarko realtek: align declaration/static/extern function definitions for clock driver In 2023 upstream has tightened compiler checks with this patch https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit /scripts/Makefile.extrawarn?h=v6.15&id=0fcb70851fbfea1776ae62f67c503fef8f0292b9 A consistent function definition is now needed. I.e. - functions must be either declared with "static" or - functions need an additional declaration (in the header file) Before upgrading the Realtek target to 6.12 clean the code so that the main 6.12 PR can focus on real issues from the version bump. Signed-off-by: Markus Stockhausen <markus.stockhausen@gmx.de> Link: https://github.com/openwrt/openwrt/pull/18925 Signed-off-by: Robert Marko <robimarko@gmail.com> (commit: 31e2567 ) The file was modified target/linux/realtek/files-6.6/drivers/clk/realtek/clk-rtl83xx.c (diff)
コミット
db3037830b9cc809339681afc04f2d73d8390c5c
by robimarko realtek: align declaration/static/extern function definitions for phy driver In 2023 upstream has tightened compiler checks with this patch https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit /scripts/Makefile.extrawarn?h=v6.15&id=0fcb70851fbfea1776ae62f67c503fef8f0292b9 A consistent function definition is now needed. I.e. - functions must be either declared with "static" or - functions need an additional declaration (in the header file) Before upgrading the Realtek target to 6.12 clean the code so that the main 6.12 PR can focus on real issues from the version bump. Signed-off-by: Markus Stockhausen <markus.stockhausen@gmx.de> Link: https://github.com/openwrt/openwrt/pull/18925 Signed-off-by: Robert Marko <robimarko@gmail.com> (commit: db30378 ) The file was modified target/linux/realtek/files-6.6/drivers/net/phy/rtl83xx-phy.h (diff) The file was modified target/linux/realtek/files-6.6/drivers/net/phy/rtl83xx-phy.c (diff)
コミット
f64864fa532cfc384f3f7a4c8e0a4549b4b12623
by robimarko realtek: align declaration/static/extern function definitions for eth driver In 2023 upstream has tightened compiler checks with this patch https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit /scripts/Makefile.extrawarn?h=v6.15&id=0fcb70851fbfea1776ae62f67c503fef8f0292b9 A consistent function definition is now needed. I.e. - functions must be either declared with "static" or - functions need an additional declaration (in the header file) Before upgrading the Realtek target to 6.12 clean the code so that the main 6.12 PR can focus on real issues from the version bump. Signed-off-by: Markus Stockhausen <markus.stockhausen@gmx.de> Link: https://github.com/openwrt/openwrt/pull/18925 Signed-off-by: Robert Marko <robimarko@gmail.com> (commit: f64864f ) The file was modified target/linux/realtek/files-6.6/drivers/net/ethernet/rtl838x_eth.c (diff) The file was modified target/linux/realtek/files-6.6/drivers/net/ethernet/rtl838x_eth.h (diff)
コミット
cddf860c5347791a3aff9478270e6cfcc41c950a
by robimarko realtek: align declaration/static/extern function definitions for dsa driver In 2023 upstream has tightened compiler checks with this patch https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit /scripts/Makefile.extrawarn?h=v6.15&id=0fcb70851fbfea1776ae62f67c503fef8f0292b9 A consistent function definition is now needed. I.e. - functions must be either declared with "static" or - functions need an additional declaration (in the header file) Before upgrading the Realtek target to 6.12 clean the code so that the main 6.12 PR can focus on real issues from the version bump. Signed-off-by: Markus Stockhausen <markus.stockhausen@gmx.de> Link: https://github.com/openwrt/openwrt/pull/18925 Signed-off-by: Robert Marko <robimarko@gmail.com> (commit: cddf860 ) The file was modified target/linux/realtek/files-6.6/drivers/net/dsa/rtl83xx/rtl83xx.h (diff) The file was modified target/linux/realtek/files-6.6/drivers/net/dsa/rtl83xx/dsa.c (diff) The file was modified target/linux/realtek/files-6.6/drivers/net/dsa/rtl83xx/qos.c (diff) The file was modified target/linux/realtek/files-6.6/drivers/net/dsa/rtl83xx/rtl839x.c (diff) The file was modified target/linux/realtek/files-6.6/drivers/net/dsa/rtl83xx/rtl931x.c (diff) The file was modified target/linux/realtek/files-6.6/drivers/net/dsa/rtl83xx/rtl930x.c (diff) The file was modified target/linux/realtek/files-6.6/drivers/net/dsa/rtl83xx/debugfs.c (diff) The file was modified target/linux/realtek/files-6.6/drivers/net/dsa/rtl83xx/common.c (diff) The file was modified target/linux/realtek/files-6.6/drivers/net/dsa/rtl83xx/rtl838x.c (diff)
コミット
144ac2e29e688f93114ca7b3819c02e290ae5220
by noltari bcm27xx: refresh 6.12 patches Commit 438ed53577ad ("generic: 6.12: backport MediaTek Ethernet PHY changes") backported commits to generic 6.12, but missed refreshing bcm27xx patches. Fixes: 438ed53577ad ("generic: 6.12: backport MediaTek Ethernet PHY changes") Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> (commit: 144ac2e ) The file was modified target/linux/bcm27xx/patches-6.12/950-0483-spi-Add-a-driver-for-the-RPI-RP2040-GPIO-bridge.patch (diff) The file was modified target/linux/bcm27xx/patches-6.12/950-0303-dtbindings-media-i2c-Add-IMX708-CMOS-sensor-binding.patch (diff) The file was modified target/linux/bcm27xx/patches-6.12/950-0505-media-i2c-Add-driver-for-Sony-IMX500-sensor.patch (diff) The file was modified target/linux/bcm27xx/patches-6.12/950-0147-Documentation-devicetree-Add-documentation-for-imx37.patch (diff) The file was modified target/linux/bcm27xx/patches-6.12/950-0834-media-platform-Add-Raspberry-Pi-HEVC-decoder-driver.patch (diff) The file was modified target/linux/bcm27xx/patches-6.12/950-0318-dt-bindings-media-i2c-Replace-IMX708-sensor-binding-.patch (diff) The file was modified target/linux/bcm27xx/patches-6.12/950-0504-media-dt-bindings-i2c-Add-Sony-IMX500.patch (diff) The file was modified target/linux/bcm27xx/patches-6.12/950-0157-phy-broadcom-split-out-the-BCM54213PE-from-the-BCM54.patch (diff) The file was modified target/linux/bcm27xx/patches-6.12/950-0406-media-dt-bindings-i2c-Add-Rohm-BU64754-bindings.patch (diff) The file was modified target/linux/bcm27xx/patches-6.12/950-0057-MMC-added-alternative-MMC-driver.patch (diff) The file was modified target/linux/bcm27xx/patches-6.12/950-0136-media-i2c-imx477-Support-for-the-Sony-IMX477-sensor.patch (diff) The file was modified target/linux/bcm27xx/patches-6.12/950-0137-media-i2c-imx519-Support-for-the-Sony-IMX519-sensor.patch (diff) The file was modified target/linux/bcm27xx/patches-6.12/950-0482-spi-dt-bindings-Add-RPI-RP2040-GPIO-Bridge.patch (diff)
コミット
9bcc2874146f56ab429e21562670db3e6cbe840e
by robimarko wifi-scripts: iwinfo: don't show bitrate unit when unknown When bitrate is unknown, the units shouldn't be displayed. This is consistent with other "unknown" fields and non-ucode iwinfo. Signed-off-by: Sean Khan <datapronix@protonmail.com> Link: https://github.com/openwrt/openwrt/pull/18039 Signed-off-by: Robert Marko <robimarko@gmail.com> (commit: 9bcc287 ) The file was modified package/network/config/wifi-scripts/files-ucode/usr/bin/iwinfo (diff)
コミット
0088a5a17936a923eb64a68938deb4f9b1ca1aec
by robimarko wifi-scripts: iwinfo: show units for signal and noise Add 'dBm' units to 'Signal' and 'Noise' to match what non-ucode iwinfo shows. Before: Signal: -49 Noise: -103 After: Signal: -49 dBm Noise: -103 dBm Signed-off-by: Sean Khan <datapronix@protonmail.com> Link: https://github.com/openwrt/openwrt/pull/18039 Signed-off-by: Robert Marko <robimarko@gmail.com> (commit: 0088a5a ) The file was modified package/network/config/wifi-scripts/files-ucode/usr/bin/iwinfo (diff)
コミット
f26bdea981550e5e2db7a0a7a53a9b7e8881a3f8
by robimarko wifi-scripts: ucode: iwinfo: fix 'unknown' typo The 'unknown' string was misspelled as 'unknonw'. Signed-off-by: Sean Khan <datapronix@protonmail.com> Link: https://github.com/openwrt/openwrt/pull/18039 Signed-off-by: Robert Marko <robimarko@gmail.com> (commit: f26bdea ) The file was modified package/network/config/wifi-scripts/files-ucode/usr/share/ucode/iwinfo.uc (diff)
コミット
36b9a699a29048759317731b738b0800d604b5fd
by robimarko wifi-scripts: use consistent names for Qualcomm devices The device manufacturer name for Qualcomm Atheros is listed as "Qualcomm, Atheros" for PCI devices but "Qualcomm Atheros" under "compatible". This gives inconsistent results in `iwinfo` and ``` Hardware: 0x168c:0x0046 0x168c:0xcafe [Qualcomm, Atheros QCA9984] Hardware: embedded [Qualcomm Atheros IPQ8074] ``` Signed-off-by: Sean Khan <datapronix@protonmail.com> Link: https://github.com/openwrt/openwrt/pull/18039 Signed-off-by: Robert Marko <robimarko@gmail.com> (commit: 36b9a69 ) The file was modified package/network/config/wifi-scripts/files-ucode/usr/share/wifi_devices.json (diff)
コミット
53c723246a153801264b3284c4488ced3fe57abd
by noltari generic: 6.12: backport upstream v6.16 brcmnand patches This is needed to restore compatibility with legacy brcmnand controllers. 3bfb22cecfe6 mtd: rawnand: brcmnand: legacy exec_op implementation 528b541b71cf mtd: nand: brcmnand: fix NAND timeout when accessing eMMC 56fce7547004 mtd: rawnand: brcmnand: remove unused parameters Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> (commit: 53c7232 ) The file was added target/linux/generic/backport-6.12/420-02-v6.16-mtd-nand-brcmnand-fix-NAND-timeout-when-accessing-eM.patch The file was added target/linux/generic/backport-6.12/420-01-v6.16-mtd-rawnand-brcmnand-remove-unused-parameters.patch The file was added target/linux/generic/backport-6.12/420-03-v6.16-mtd-rawnand-brcmnand-legacy-exec_op-implementation.patch
コミット
9f76070e2de5c28830ede70c31fb81278f1c7183
by robimarko umbim: add support for wwan device class Some MBIM devices can exist on an MHI bus (over PCIe) instead of being presented as USB devices. In such cases the interface name lookup needs to be done from /sys/class/wwan/ instead of /sys/class/usbmisc/ Add another readlink call in case the first lookup fails. This allows the MBIM protocol to find the interface name and then work with both type of devices provided that /etc/config/network has the right device for MBIM interface (such as /dev/wwan0mbim0 in case of MHI) Signed-off-by: Antti Seppälä <a.seppala@gmail.com> (commit: 9f76070 ) The file was modified package/network/utils/umbim/files/lib/netifd/proto/mbim.sh (diff)
コミット
6f8c58bfd8f380dfdc1d89aab29fdcdfde0ee65b
by cnsztl mediatek: add ubootmod layout for cudy tr3000 v1 This allows us to use the full size of nand, which increases ubi size from 64M to 122.25M. If you are at factory firmware, please refer commit 63b8d98dd0d2 ("mediatek: add support for Cudy TR3000 v1") to boot into OpenWrt initramfs (stock layout). Flash instructions: 1. Login into the device and backup everything, especially 'Factory' part. 1. Unlock mtd partitions: apk update && apk add kmod-mtd-rw insmod mtd-rw i_want_a_brick=1 3. Write new BL2 and FIP mtd write openwrt-mediatek-filogic-cudy_tr3000-v1-ubootmod-preloader.bin BL2 mtd write openwrt-mediatek-filogic-cudy_tr3000-v1-ubootmod-bl31-uboot.fip FIP 4. Set static IP on your PC: IP 192.168.1.254/24, GW 192.168.1.1 5. Serve OpenWrt initramfs image using TFTP server. 6. Cut off the power and re-engage, wait for TFTP recovery to complete. 7. After OpenWrt has booted, perform sysupgrade. Tested-by: Yangyu Chen <cyy@cyyself.name> Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org> (commit: 6f8c58b ) The file was modified target/linux/mediatek/dts/mt7981b-cudy-tr3000-v1.dts (diff) The file was added target/linux/mediatek/dts/mt7981b-cudy-tr3000-v1.dtsi The file was added target/linux/mediatek/dts/mt7981b-cudy-tr3000-v1-ubootmod.dts The file was modified target/linux/mediatek/base-files/lib/preinit/05_set_preinit_iface (diff) The file was added package/boot/uboot-mediatek/patches/445-add-cudy_tr3000-v1.patch The file was modified target/linux/mediatek/image/filogic.mk (diff) The file was modified package/boot/uboot-tools/uboot-envtools/files/mediatek_filogic (diff) The file was modified target/linux/mediatek/filogic/base-files/lib/upgrade/platform.sh (diff) The file was modified package/boot/arm-trusted-firmware-mediatek/Makefile (diff) The file was modified package/boot/uboot-mediatek/Makefile (diff) The file was modified target/linux/mediatek/filogic/base-files/etc/board.d/02_network (diff) The file was modified target/linux/mediatek/filogic/base-files/etc/hotplug.d/ieee80211/11_fix_wifi_mac (diff)
コミット
057a0a075edc344d2d031f5b9d04cce397d154bb
by linus.walleij generic: Fix up the v6.12 config for ARM This adds a few ARM-related kconfig options that makes the configure phase smooth on ARM (32bit) systems. We default PAN to enabled for protection, however this has a syscall speed penalty, if your system is interacting a lot from userspace you might want to disable it for speed vs security. For in-kernel routing it should not be a major issue. Some marginal ARM system enables DRM so make sure we have the related DRM Kconfigs set up to unselected. Link: https://github.com/openwrt/openwrt/pull/18900 Signed-off-by: Linus Walleij <linus.walleij@linaro.org> (commit: 057a0a0 ) The file was modified target/linux/generic/config-6.12 (diff) The file was modified target/linux/sifiveu/Makefile (diff) The file was removed target/linux/sifiveu/patches-6.6/0005-riscv-sifive-unleashed-define-opp-table-cpufreq.patch The file was removed target/linux/sifiveu/patches-6.6/0001-riscv-sifive-fu740-cpu-1-2-3-4-set-compatible-to-sif.patch The file was removed target/linux/sifiveu/config-6.6 The file was removed target/linux/sifiveu/patches-6.6/0004-riscv-sifive-unmatched-add-gpio-poweroff-node.patch The file was removed target/linux/sifiveu/patches-6.12/0004-riscv-sifive-unmatched-add-gpio-poweroff-node.patch
コミット
aa8ca6ed4fe480c248883ce96ee95dcad89e7c60
by ansuelsmth uboot-mediatek: replace bootmenu shortkey patch with better version Replace bootmenu shortmenu mediatek patch with a better version proposed upstream that implement a more clean implementation. Also the mediatek patch seems to be bugged and with lots of bootmenu elements it's gets very bugged and unusable. Refresh any affected patch. Upstream-Status: Submitted [https://lore.kernel.org/u-boot/20250525134407.3760-1-ansuelsmth@gmail.com/] Link: https://github.com/openwrt/openwrt/pull/18919 Signed-off-by: Christian Marangi <ansuelsmth@gmail.com> (commit: aa8ca6e ) The file was modified package/boot/uboot-mediatek/patches/211-cmd-bootmenu-custom-title.patch (diff) The file was modified package/boot/uboot-mediatek/patches/463-add-snr-snr-cpe-ax2.patch (diff) The file was removed package/boot/uboot-mediatek/patches/100-16-cmd-bootmenu-add-ability-to-select-item-by-shortkey.patch The file was added package/boot/uboot-mediatek/patches/170-cmd-bootmenu-permit-to-select-bootmenu-entry-with.patch The file was added target/linux/gemini/patches-6.12/0001-net-ethernet-cortina-Use-TOE-TSO-on-all-TCP.patch The file was added target/linux/gemini/patches-6.12/300-ARM-dts-Augment-DIR-685-partition-table-for-OpenWrt.patch The file was modified target/linux/gemini/Makefile (diff) The file was added target/linux/gemini/config-6.12 The file was removed target/linux/gemini/patches-6.6/0005-net-ethernet-cortina-Use-TSO-also-on-common-TCP.patch The file was removed target/linux/gemini/patches-6.6/0006-net-ethernet-cortina-Rename-adjust-link-callback.patch The file was modified target/linux/gemini/Makefile (diff) The file was removed target/linux/gemini/patches-6.6/0007-net-ethernet-cortina-Use-negotiated-TX-RX-pause.patch The file was removed target/linux/gemini/patches-6.6/0002-ARM-dts-gemini-Map-reset-keys-to-KEY_RESTART.patch The file was removed target/linux/gemini/config-6.6 The file was removed target/linux/gemini/patches-6.6/0008-net-ethernet-cortina-Implement-.set_pauseparam.patch The file was removed target/linux/gemini/patches-6.6/300-ARM-dts-Augment-DIR-685-partition-table-for-OpenWrt.patch
コミット
35c828c1686a7d628c05e4ac005151b12ef9d540
by pepe2k ipq60xx: add support for ALFA Network AP120C-AX ALFA Network AP120C-AX is a dual-band ceiling AP, based on Qualcomm IPQ6000 + QCN5021 + QCN5052 + QCA8072 chipsets bundle. Specifications: - SOC: Qualcomm IPQ6000 (quad-core Cortex-A53 1.2 GHz) - DRAM: DDR3 512 MB (Micron MT41K256M16TW-107) - Flash: 16 MB SPI NOR (Macronix MX25U12832F, boot device) 128 MB NAND (Macronix MX30UF1G18AC, dual-firmware) - Ethernet: 2x 10/100/1000 Mbps Ethernet (QCA8072) 802.3at/af PoE input in WAN port - Wi-Fi: 2x2 2.4 GHz Wi-Fi 6 (QCN5021 + RFFM8227 FEM) 2x2 5 GHz Wi-Fi 6 (QCN5152 + QPF4568 FEM) - Antenna: for indoor version: dual-band, internal 2x (or 4x) U.FL antenna connectors on the PCB - LED: for indoor/outdoor versions: 5x on external module (status, 2x Wi-Fi, 2x Ethernet), PoE LED on-board 8-pin on-board header for LED module (1.27 mm pitch, J14) - Button: 1x button (reset) - USB: 1x 4-pin on-board header for USB 2.0 (2.54 mm pitch, J22) - UART: 1x micro USB Type-B for system console (Holtek HT42B534) 1x 4-pin on-board header (2.54 mm pitch, J11) - Power: 802.3at/af PoE or 12 V DC/2 A (DC jack) - Other: 8-pin and 4-pin on-board headers for external Bluetooth module (1.27 mm pitch, J15, J16, unavailable, thus untested) MAC addresses: - WAN: 00:c0:ca:xx:xx:6c (art 0x0, device's label -2) - LAN: 00:c0:ca:xx:xx:6d (art 0x6, device's label -1) - 2.4 GHz (IPQ6000): 00:c0:ca:xx:xx:6e (art 0xc, device's label) - 5 GHz (IPQ6000): 00:c0:ca:xx:xx:6f (device's label + 1) Flash instructions: Due to the lack of direct GUI based update capability and dual-firmware partition configuration, it is recommended to use TFTP + serial console based approach (console is available in micro USB connector): 1. Set a static IP 192.168.1.1/24 on PC and start TFTP server with the '...-factory.ubi' image renamed to 'firmware.bin'. 2. Make sure you can access board's serial console over micro USB. 3. Power up the device, hit any key to enter U-Boot CLI and issue below commands. 3.1 Restore U-Boot's environment to default values (double check first the '0:APPSBLENV' partition offset using 'smem' command): sf probe sf erase 0x510000 0x10000 saveenv 3.2 Download and install OpenWrt in both partitions and reset the board: tftpb 0x44000000 firmware.bin flash rootfs flash rootfs_1 reset Signed-off-by: Piotr Dymacz <pepe2k@gmail.com> (commit: 35c828c ) The file was modified package/firmware/ipq-wifi/Makefile (diff) The file was modified target/linux/qualcommax/ipq60xx/base-files/etc/board.d/02_network (diff) The file was added target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq6000-ap120c-ax.dts The file was added target/linux/qualcommax/ipq60xx/base-files/lib/upgrade/alfa.sh The file was modified target/linux/qualcommax/ipq60xx/base-files/etc/hotplug.d/firmware/11-ath11k-caldata (diff) The file was modified target/linux/qualcommax/image/ipq60xx.mk (diff) The file was modified target/linux/qualcommax/ipq60xx/base-files/lib/upgrade/platform.sh (diff)
コミット
22c557bf9e8d270c6793985b42c3e41ea9b93f0e
by ansuelsmth uboot-mediatek: Add GPT table write command for Arcadyan Mozart Add an additional bootmenu option and commands to overwrite the GPT table with the custom one for upstream U-Boot. This is needed as the pre-installed GPT table differ and updating the GPT table is a requirement to install the upstream U-Boot (or the old U-Boot will be loaded) To make the migration to new U-Boot bootloader an user can now load the system with mtk_uartboot and select "Load GPT Table ..." in conjunction with other update command. Link: https://github.com/openwrt/openwrt/pull/18874 Signed-off-by: Christian Marangi <ansuelsmth@gmail.com> (commit: 22c557b ) The file was modified package/boot/uboot-mediatek/patches/456-add-arcadyan-mozart.patch (diff)
コミット
11c936e1414bda39f09373d44d46bb2100a701fe
by ansuelsmth mediatek: filogic: provide custom GPT table for Arcadyan Mozart New revision Arcadyan Mozart apply a new partition table and moved the factory partition to a new location. This conflicts with the standard partition layout and also make the nvmem cells to not correctly identify the MAC address anymore. Generate and Provide a new GPT partition table that account for the new calibration partition. The previous revision of the Arcadyan Mozart device is considered pre-production devices and should not be intended for real support. Link: https://github.com/openwrt/openwrt/pull/18874 Signed-off-by: Christian Marangi <ansuelsmth@gmail.com> (commit: 11c936e ) The file was modified target/linux/mediatek/image/filogic.mk (diff)
コミット
f40250781de03b7c6e789645016e19def93563d0
by noltari generic: backport secs_to_jiffies This is needed for mac80211 v6.14.5 update. b35108a51cf7b jiffies: Define secs_to_jiffies() bb2784d9ab495 jiffies: Cast to unsigned long in secs_to_jiffies() conversion https://github.com/torvalds/linux/commit/b35108a51cf7bab58d7eace1267d7965978bcdb8 https://github.com/torvalds/linux/commit/bb2784d9ab49587ba4fbff37a319fff2924db289 Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> (commit: f402507 ) The file was added target/linux/generic/backport-6.6/330-v6.13-jiffies-Define-secs_to_jiffies.patch The file was added target/linux/generic/backport-6.12/330-v6.13-jiffies-Define-secs_to_jiffies.patch The file was added target/linux/generic/backport-6.12/331-v6.14-jiffies-Cast-to-unsigned-long-in-secs_to_jiffies-con.patch The file was added target/linux/generic/backport-6.6/331-v6.14-jiffies-Cast-to-unsigned-long-in-secs_to_jiffies-con.patch
コミット
268c352e44956a3e7fe86e68ad727ba57b0a75a5
by noltari generic: 6.6: backport devm_clk_get_optional_enabled_with_rate This is needed for mac80211 v6.14.5 update. 9934a1bd45b2b clk: provide devm_clk_get_optional_enabled_with_rate() https://github.com/torvalds/linux/commit/9934a1bd45b2b03f6d1204a6ae2780d3b009799f Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> (commit: 268c352 ) The file was added target/linux/generic/backport-6.6/920-v6.12-clk-provide-devm_clk_get_optional_enabled_with_rate.patch
コミット
de5e53770533ca27557ef82d20673c5c325c64b8
by chunkeey generic: 6.12: add missing symbol this symbol got picked up by the 6.12 UML conversion. CONFIG_FBNIC = FaceBook/Meta Platforms Host Network Interface it should be disabled by default in generic. Signed-off-by: Christian Lamparter <chunkeey@gmail.com> (commit: de5e537 ) The file was modified target/linux/generic/config-6.12 (diff)
コミット
62adc4bcbb1ba3e0df355341688bc2e1a764d1df
by chunkeey uml: remove left-overs from previous kernel bumps This should have been fixed by an upstream patch in 5.12 |commit ed102bf2afed226703eaf85a704755bdbea34583 |Author: Randy Dunlap <rdunlap@infradead.org> |Date: Thu Apr 15 10:13:52 2021 -0700 | | um: Fix W=1 missing-include-dirs warnings | | Currently when using "W=1" with UML builds, there are over 700 warnings | cc1: warning: ./arch/um/include/uapi: No such file or directory [-Wmissing-include-dirs] | | but arch/um/ does not have include/uapi/ at all, so add that | subdir and put one Kbuild file into it (since git does not track | empty subdirs). Signed-off-by: Christian Lamparter <chunkeey@gmail.com> (commit: 62adc4b ) The file was removed target/linux/uml/files/arch/um/include/uapi/asm/Kbuild
コミット
89705593514fec94a42a607f3e8c645ec5a1eda8
by chunkeey uml: add 6.12 testing kernel refresh config + patches. This includes the following changes: - The selected x86_64 CPU is switched to generic instead of K8. A backported patch is included from 6.13. 000-v6.13-asm-generic-io.h-rework-split-ioread64-iowrite64-hel.patch |fixed the following build error: | CC lib/iomap.o |lib/iomap.c:156:5: error: no previous prototype for 'ioread64_lo_hi' [-Werror=missing-prototypes] | 156 | u64 ioread64_lo_hi(const void __iomem *addr) | | ^~~~~~~~~~~~~~ | [...] Note: 102-pseudo-random-mac.patch will likely go away with the next stable. UML is switching to a new networking infrastructure. The previous implementation using tuntap, daemon, socket, ethertap, vde are being replaced by "vector" transports tap, hybrid, raw, EoGRE, Eol2tpv3, fd, vde (vector!). Please see, to checkout what will change: <https://docs.kernel.org/virt/uml/user_mode_linux_howto_v2.html#setting-up-uml-networking> Signed-off-by: Christian Lamparter <chunkeey@gmail.com> (commit: 8970559 ) The file was added target/linux/uml/patches-6.12/000-v6.13-asm-generic-io.h-rework-split-ioread64-iowrite64-hel.patch The file was added target/linux/uml/patches-6.12/102-pseudo-random-mac.patch The file was modified target/linux/uml/Makefile (diff) The file was removed target/linux/uml/patches-6.6/102-pseudo-random-mac.patch The file was added target/linux/uml/patches-6.12/101-mconsole-exec.patch The file was removed target/linux/uml/config-6.6 The file was added target/linux/uml/config-6.12 The file was removed target/linux/uml/patches-6.6/101-mconsole-exec.patch
コミット
67e41d8a34d15b0d870875c44a431ed70109bbc4
by chunkeey uml: disable kmod-8250-serial The driver tries to access ioports (0x2f9!!) which UML doesn't have. This causes lots of warnings to appear on boot: | WARNING: CPU: 0 PID: 1 at lib/logic_iomem.c:188 serial8250_config_port+0x20a/0x1260 | Invalid writeqb of 0xff at address 2f9 | Modules linked in: | CPU: 0 UID: 0 PID: 1 Comm: swapper Tainted: G W 6.12.25 #0 | Tainted: [W]=WARN | Stack: | Call Trace: | [<60001000>] ? set_reset_devices+0x0/0x16 | [<60452cba>] ? serial8250_config_port+0x20a/0x1260 | [<6071e91f>] ? dump_stack_lvl+0x55/0x71 | [<606e127c>] ? _printk+0x0/0x4f | [<60044bbb>] ? __warn+0x11b/0x120 | [<6003b5d0>] ? um_set_signals+0x0/0x40 | [<606de721>] ? warn_slowpath_fmt+0x81/0x8c | [<606de6a0>] ? warn_slowpath_fmt+0x0/0x8c | [<60452cba>] ? serial8250_config_port+0x20a/0x1260 (they are even recursive!) Now, the situation gets more confusing. Because from what I can tell, this was seemingly done intenionally. Upstream patches in related areas: |commit ddd268c42871b78c75e12a5c28207fb481138f41 |Author: Niklas Schnelle <schnelle@linux.ibm.com> |Date: Wed Apr 3 14:43:00 2024 +0200 | | um: Select HAS_IOREMAP for UML_IOMEM_EMULATION | | In a future patch HAS_IOPORT=n will disable inb()/outb() and friends at | compile time. UML supports these via its UML_IOMEM_EMULATION so let that | select HAS_IOPORT and also reflect this in NO_IOPORT_MAP. hint that there's ongoing work in this area. But unfortunately, this future hasn't arrived yet. Once this future arrives, please nuke this patch. Signed-off-by: Christian Lamparter <chunkeey@gmail.com> (commit: 67e41d8 ) The file was modified package/kernel/linux/modules/other.mk (diff) The file was modified target/linux/uml/config-6.12 (diff) The file was added patches-6.6/102-pseudo-random-mac.patch The file was added config-6.6 The file was added patches-6.6/101-mconsole-exec.patch The file was added target/linux/sunxi/patches-6.12/020-v6.10-cpufreq-sun50i-Add-support-for-opp_supported_hw.patch The file was added target/linux/sunxi/patches-6.12/016-v6.9-arm64-dts-allwinner-h616-Add-thermal-sensor-and-zones.patch The file was removed target/linux/sunxi/patches-6.6/013-v6.9-thermal-drivers-sun8i-Add-SRAM-register-access-code.patch The file was added target/linux/sunxi/patches-6.12/012-v6.9-thermal-drivers-sun8i-Extend-H6-calibration-to-support-4.patch The file was removed target/linux/sunxi/patches-6.6/025-v6.10-cpufreq-sun50i-fix-error-returns-in-dt_has_supported_hw.patch The file was removed target/linux/sunxi/patches-6.6/014-v6.9-thermal-drivers-sun8i-Add-support-for-H616-THS-controller.patch The file was removed target/linux/sunxi/patches-6.6/016-v6.9-arm64-dts-allwinner-h616-Add-thermal-sensor-and-zones.patch The file was removed target/linux/sunxi/patches-6.6/020-v6.10-cpufreq-sun50i-Add-support-for-opp_supported_hw.patch The file was added target/linux/sunxi/patches-6.12/008-v6.7-arm64-dts-allwinner-h616-Add-SID-controller-node.patch The file was removed target/linux/sunxi/patches-6.6/400-arm64-allwinner-a64-sopine-Add-Sopine-flash-partitio.patch The file was added target/linux/sunxi/patches-6.12/023-v6.10-arm64-dts-allwinner-h616-enable-DVFS-for-all-boards.patch The file was added target/linux/sunxi/patches-6.12/015-v6.9-thermal-drivers-sun8i-Dont-fail-probe-due-to-zone-registra.patch The file was removed target/linux/sunxi/patches-6.6/430-arm64-dts-allwinner-a64-olinuxino-add-status-LED-ali.patch The file was added target/linux/sunxi/patches-6.12/011-v6.9-thermal-drivers-sun8i-Explain-unknown-H6-register-value.patch The file was removed target/linux/sunxi/patches-6.6/012-v6.9-thermal-drivers-sun8i-Extend-H6-calibration-to-support-4.patch The file was removed target/linux/sunxi/cortexa7/config-6.6 The file was removed target/linux/sunxi/patches-6.6/410-sunxi-add-bananapi-p2-zero.patch The file was added target/linux/sunxi/patches-6.12/431-arm64-dts-allwinner-nanopi-r1s-h5-add-status-LED.patch The file was added target/linux/sunxi/patches-6.12/430-arm64-dts-allwinner-a64-olinuxino-add-status-LED-ali.patch The file was added target/linux/sunxi/patches-6.12/018-v6.10-cpufreq-dt-platdev-Blocklist-Allwinner-H616-618-SoCs.patch The file was added target/linux/sunxi/patches-6.12/014-v6.9-thermal-drivers-sun8i-Add-support-for-H616-THS-controller.patch The file was removed target/linux/sunxi/cortexa8/config-6.6 The file was added target/linux/sunxi/config-6.12 The file was removed target/linux/sunxi/cortexa53/config-6.6 The file was added target/linux/sunxi/cortexa7/config-6.12 The file was added target/linux/sunxi/patches-6.12/010-v6.8-thermal-drivers-sun8i-Add-D1-T113s-THS-controller-support.patch The file was added target/linux/sunxi/patches-6.12/450-arm64-dts-enable-wifi-on-pine64-boards.patch The file was added target/linux/sunxi/patches-6.12/451-sunxi-add-csi-video-support-for-nanopi-neo-air.patch The file was removed target/linux/sunxi/patches-6.6/102-sunxi-add-OF-node-for-USB-eth-on-NanoPi-R1S-H5.patch The file was removed target/linux/sunxi/patches-6.6/451-sunxi-add-csi-video-support-for-nanopi-neo-air.patch The file was removed target/linux/sunxi/patches-6.6/023-v6.10-arm64-dts-allwinner-h616-enable-DVFS-for-all-boards.patch The file was added target/linux/sunxi/patches-6.12/025-v6.10-cpufreq-sun50i-fix-error-returns-in-dt_has_supported_hw.patch The file was removed target/linux/sunxi/patches-6.6/015-v6.9-thermal-drivers-sun8i-Dont-fail-probe-due-to-zone-registra.patch The file was added target/linux/sunxi/patches-6.12/017-v6.10-firmware-smccc-Export-revision-soc_id-function.patch The file was removed target/linux/sunxi/patches-6.6/024-v6.10-cpufreq-sun50i-Fix-build-warning-around-snprint.patch The file was removed target/linux/sunxi/patches-6.6/019-v6.10-cpufreq-sun50i-Refactor-speed-bin-decoding.patch The file was added target/linux/sunxi/patches-6.12/442-arm64-dts-orangepi-one-plus-enable-PWM.patch The file was added target/linux/sunxi/patches-6.12/013-v6.9-thermal-drivers-sun8i-Add-SRAM-register-access-code.patch The file was removed target/linux/sunxi/patches-6.6/008-v6.7-arm64-dts-allwinner-h616-Add-SID-controller-node.patch The file was removed target/linux/sunxi/patches-6.6/011-v6.9-thermal-drivers-sun8i-Explain-unknown-H6-register-value.patch The file was removed target/linux/sunxi/config-6.6 The file was removed target/linux/sunxi/patches-6.6/301-orangepi_pc2_usb_otg_to_host_key_power.patch The file was removed target/linux/sunxi/patches-6.6/010-v6.8-thermal-drivers-sun8i-Add-D1-T113s-THS-controller-support.patch The file was added target/linux/sunxi/patches-6.12/019-v6.10-cpufreq-sun50i-Refactor-speed-bin-decoding.patch The file was added target/linux/sunxi/patches-6.12/022-v6.10-arm64-dts-allwinner-h616-Add-CPU-OPPs-table.patch The file was removed target/linux/sunxi/patches-6.6/431-arm64-dts-allwinner-nanopi-r1s-h5-add-status-LED.patch The file was removed target/linux/sunxi/patches-6.6/442-arm64-dts-orangepi-one-plus-enable-PWM.patch The file was added target/linux/sunxi/patches-6.12/400-arm64-allwinner-a64-sopine-Add-Sopine-flash-partitio.patch The file was removed target/linux/sunxi/patches-6.6/009-v6.9-soc-sunxi-sram-export-register-0-for-THS-on-H616.patch The file was added target/linux/sunxi/patches-6.12/024-v6.10-cpufreq-sun50i-Fix-build-warning-around-snprint.patch The file was added target/linux/sunxi/cortexa53/config-6.12 The file was added target/linux/sunxi/cortexa8/config-6.12 The file was added target/linux/sunxi/patches-6.12/021-v6.10-cpufreq-sun50i-Add-H616-support.patch The file was removed target/linux/sunxi/patches-6.6/450-arm64-dts-enable-wifi-on-pine64-boards.patch The file was added target/linux/sunxi/patches-6.12/410-sunxi-add-bananapi-p2-zero.patch The file was removed target/linux/sunxi/patches-6.6/017-v6.10-firmware-smccc-Export-revision-soc_id-function.patch The file was added target/linux/sunxi/patches-6.12/301-orangepi_pc2_usb_otg_to_host_key_power.patch The file was added target/linux/sunxi/patches-6.12/009-v6.9-soc-sunxi-sram-export-register-0-for-THS-on-H616.patch The file was removed target/linux/sunxi/patches-6.6/021-v6.10-cpufreq-sun50i-Add-H616-support.patch The file was added target/linux/sunxi/patches-6.12/102-sunxi-add-OF-node-for-USB-eth-on-NanoPi-R1S-H5.patch The file was removed target/linux/sunxi/patches-6.6/022-v6.10-arm64-dts-allwinner-h616-Add-CPU-OPPs-table.patch The file was removed target/linux/sunxi/patches-6.6/018-v6.10-cpufreq-dt-platdev-Blocklist-Allwinner-H616-618-SoCs.patch
コミット
69c599c775a4d04a9758095a9d435d6cfd445a85
by wigyori kernel/sunxi: Restore kernel files for v6.6 This is an automatically generated commit which aids following Kernel patch history, as git will see the move and copy as a rename thus defeating the purpose. For the original discussion see: https://lists.openwrt.org/pipermail/openwrt-devel/2023-October/041673.html Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu> (commit: 69c599c ) The file was added target/linux/sunxi/patches-6.6/010-v6.8-thermal-drivers-sun8i-Add-D1-T113s-THS-controller-support.patch The file was added target/linux/sunxi/patches-6.6/442-arm64-dts-orangepi-one-plus-enable-PWM.patch The file was added target/linux/sunxi/patches-6.6/024-v6.10-cpufreq-sun50i-Fix-build-warning-around-snprint.patch The file was added target/linux/sunxi/patches-6.6/025-v6.10-cpufreq-sun50i-fix-error-returns-in-dt_has_supported_hw.patch The file was added target/linux/sunxi/patches-6.6/400-arm64-allwinner-a64-sopine-Add-Sopine-flash-partitio.patch The file was added target/linux/sunxi/cortexa8/config-6.6 The file was added target/linux/sunxi/patches-6.6/022-v6.10-arm64-dts-allwinner-h616-Add-CPU-OPPs-table.patch The file was added target/linux/sunxi/patches-6.6/013-v6.9-thermal-drivers-sun8i-Add-SRAM-register-access-code.patch The file was added target/linux/sunxi/patches-6.6/017-v6.10-firmware-smccc-Export-revision-soc_id-function.patch The file was added target/linux/sunxi/patches-6.6/019-v6.10-cpufreq-sun50i-Refactor-speed-bin-decoding.patch The file was added target/linux/sunxi/patches-6.6/011-v6.9-thermal-drivers-sun8i-Explain-unknown-H6-register-value.patch The file was added target/linux/sunxi/cortexa53/config-6.6 The file was added target/linux/sunxi/patches-6.6/018-v6.10-cpufreq-dt-platdev-Blocklist-Allwinner-H616-618-SoCs.patch The file was added target/linux/sunxi/patches-6.6/410-sunxi-add-bananapi-p2-zero.patch The file was added target/linux/sunxi/patches-6.6/008-v6.7-arm64-dts-allwinner-h616-Add-SID-controller-node.patch The file was added target/linux/sunxi/patches-6.6/451-sunxi-add-csi-video-support-for-nanopi-neo-air.patch The file was added target/linux/sunxi/patches-6.6/450-arm64-dts-enable-wifi-on-pine64-boards.patch The file was added target/linux/sunxi/patches-6.6/014-v6.9-thermal-drivers-sun8i-Add-support-for-H616-THS-controller.patch The file was added target/linux/sunxi/patches-6.6/015-v6.9-thermal-drivers-sun8i-Dont-fail-probe-due-to-zone-registra.patch The file was added target/linux/sunxi/patches-6.6/431-arm64-dts-allwinner-nanopi-r1s-h5-add-status-LED.patch The file was added target/linux/sunxi/patches-6.6/020-v6.10-cpufreq-sun50i-Add-support-for-opp_supported_hw.patch The file was added target/linux/sunxi/patches-6.6/009-v6.9-soc-sunxi-sram-export-register-0-for-THS-on-H616.patch The file was added target/linux/sunxi/patches-6.6/016-v6.9-arm64-dts-allwinner-h616-Add-thermal-sensor-and-zones.patch The file was added target/linux/sunxi/patches-6.6/023-v6.10-arm64-dts-allwinner-h616-enable-DVFS-for-all-boards.patch The file was added target/linux/sunxi/patches-6.6/021-v6.10-cpufreq-sun50i-Add-H616-support.patch The file was added target/linux/sunxi/patches-6.6/102-sunxi-add-OF-node-for-USB-eth-on-NanoPi-R1S-H5.patch The file was added target/linux/sunxi/cortexa7/config-6.6 The file was added target/linux/sunxi/patches-6.6/430-arm64-dts-allwinner-a64-olinuxino-add-status-LED-ali.patch The file was added target/linux/sunxi/patches-6.6/012-v6.9-thermal-drivers-sun8i-Extend-H6-calibration-to-support-4.patch The file was added target/linux/sunxi/patches-6.6/301-orangepi_pc2_usb_otg_to_host_key_power.patch The file was added target/linux/sunxi/config-6.6 The file was removed target/linux/sunxi/patches-6.12/017-v6.10-firmware-smccc-Export-revision-soc_id-function.patch The file was removed target/linux/sunxi/patches-6.12/008-v6.7-arm64-dts-allwinner-h616-Add-SID-controller-node.patch The file was removed target/linux/sunxi/patches-6.12/013-v6.9-thermal-drivers-sun8i-Add-SRAM-register-access-code.patch The file was removed target/linux/sunxi/patches-6.12/018-v6.10-cpufreq-dt-platdev-Blocklist-Allwinner-H616-618-SoCs.patch The file was removed target/linux/sunxi/patches-6.12/012-v6.9-thermal-drivers-sun8i-Extend-H6-calibration-to-support-4.patch The file was removed target/linux/sunxi/patches-6.12/020-v6.10-cpufreq-sun50i-Add-support-for-opp_supported_hw.patch The file was removed target/linux/sunxi/patches-6.12/024-v6.10-cpufreq-sun50i-Fix-build-warning-around-snprint.patch The file was removed target/linux/sunxi/patches-6.12/016-v6.9-arm64-dts-allwinner-h616-Add-thermal-sensor-and-zones.patch The file was removed target/linux/sunxi/patches-6.12/015-v6.9-thermal-drivers-sun8i-Dont-fail-probe-due-to-zone-registra.patch The file was removed target/linux/sunxi/patches-6.12/021-v6.10-cpufreq-sun50i-Add-H616-support.patch The file was removed target/linux/sunxi/patches-6.12/022-v6.10-arm64-dts-allwinner-h616-Add-CPU-OPPs-table.patch The file was removed target/linux/sunxi/patches-6.12/011-v6.9-thermal-drivers-sun8i-Explain-unknown-H6-register-value.patch The file was modified target/linux/sunxi/patches-6.12/410-sunxi-add-bananapi-p2-zero.patch (diff) The file was removed target/linux/sunxi/patches-6.12/014-v6.9-thermal-drivers-sun8i-Add-support-for-H616-THS-controller.patch The file was removed target/linux/sunxi/patches-6.12/009-v6.9-soc-sunxi-sram-export-register-0-for-THS-on-H616.patch The file was removed target/linux/sunxi/patches-6.12/023-v6.10-arm64-dts-allwinner-h616-enable-DVFS-for-all-boards.patch The file was removed target/linux/sunxi/patches-6.12/019-v6.10-cpufreq-sun50i-Refactor-speed-bin-decoding.patch The file was removed target/linux/sunxi/patches-6.12/025-v6.10-cpufreq-sun50i-fix-error-returns-in-dt_has_supported_hw.patch The file was removed target/linux/sunxi/patches-6.12/010-v6.8-thermal-drivers-sun8i-Add-D1-T113s-THS-controller-support.patch The file was modified target/linux/sunxi/config-6.12 (diff) The file was modified target/linux/sunxi/cortexa53/config-6.12 (diff)
コミット
45fbf6228ec3f3cf6ba968b190b66fcfb74e6359
by wigyori sunxi: add 6.12 as testing kernel Runtime-tested on: - Linksprite pcDuino (cortexa8 / sun5i) - Olimex A20 Micro (cortexa7 / sun7i) - BananaPi P2 Zero (cortexa7 / sun8i) - Pine64 SoM (cortexa53 / sun50i) - Orangepi Zero 2W (cortexa53 / sun50i) Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu> (commit: 45fbf62 ) The file was modified target/linux/sunxi/Makefile (diff)