mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-03-09 15:40:20 +00:00
Merge branch 'develop'
This commit is contained in:
commit
71abfff888
132 changed files with 2199 additions and 117 deletions
16
build.sh
16
build.sh
|
@ -64,9 +64,9 @@ elif [ "$OMR_TARGET" = "rpi4" ]; then
|
|||
elif [ "$OMR_TARGET" = "rpi2" ]; then
|
||||
OMR_REAL_TARGET="arm_cortex-a7_neon-vfpv4"
|
||||
elif [ "$OMR_TARGET" = "wrt3200acm" ]; then
|
||||
OMR_REAL_TARGET="arm_cortex-a9_vfpv3"
|
||||
OMR_REAL_TARGET="arm_cortex-a9_vfpv3-d16"
|
||||
elif [ "$OMR_TARGET" = "wrt32x" ]; then
|
||||
OMR_REAL_TARGET="arm_cortex-a9_vfpv3"
|
||||
OMR_REAL_TARGET="arm_cortex-a9_vfpv3-d16"
|
||||
elif [ "$OMR_TARGET" = "bpi-r1" ]; then
|
||||
OMR_REAL_TARGET="arm_cortex-a7_neon-vfpv4"
|
||||
elif [ "$OMR_TARGET" = "bpi-r2" ]; then
|
||||
|
@ -212,9 +212,6 @@ fi
|
|||
if [ "$OMR_PACKAGES" = "mini" ]; then
|
||||
echo "CONFIG_PACKAGE_${OMR_DIST}-mini=y" >> "$OMR_TARGET/source/.config"
|
||||
fi
|
||||
if [ "$OMR_PACKAGES" = "zuixiao" ]; then
|
||||
echo "CONFIG_PACKAGE_${OMR_DIST}-zuixiao=y" >> "$OMR_TARGET/source/.config"
|
||||
fi
|
||||
|
||||
if [ "$SHORTCUT_FE" = "yes" ]; then
|
||||
echo "# CONFIG_PACKAGE_kmod-fast-classifier is not set" >> "$OMR_TARGET/source/.config"
|
||||
|
@ -356,6 +353,13 @@ if ! patch -Rf -N -p1 -s --dry-run < ../../patches/nanqinlang.patch; then
|
|||
fi
|
||||
echo "Done"
|
||||
|
||||
echo "Checking if remove_abi patch is set or not"
|
||||
if ! patch -Rf -N -p1 -s --dry-run < ../../patches/remove_abi.patch; then
|
||||
echo "apply..."
|
||||
patch -N -p1 -s < ../../patches/remove_abi.patch
|
||||
fi
|
||||
echo "Done"
|
||||
|
||||
# Add BBR2 patch, only working on 64bits images for now
|
||||
if [ "$OMR_TARGET" = "x86_64" ] || [ "$OMR_TARGET" = "bpi-r64" ] || [ "$OMR_TARGET" = "rpi4" ] || [ "$OMR_TARGET" = "espressobin" ] || [ "$OMR_TARGET" = "r2s" ] || [ "$OMR_TARGET" = "r4s" ] || [ "$OMR_TARGET" = "rpi3" ]; then
|
||||
echo "Checking if BBRv2 patch is set or not"
|
||||
|
@ -461,8 +465,8 @@ cd "$OMR_TARGET/source"
|
|||
echo "Update feeds index"
|
||||
cp .config .config.keep
|
||||
scripts/feeds clean
|
||||
scripts/feeds install -a
|
||||
scripts/feeds update -a
|
||||
scripts/feeds install -a
|
||||
|
||||
#cd -
|
||||
#echo "Checking if fullconenat-luci patch is set or not"
|
||||
|
|
5
config
5
config
|
@ -40,7 +40,7 @@ CONFIG_BUSYBOX_CONFIG_WATCH=y
|
|||
# CONFIG_GDB is not set
|
||||
CONFIG_GRUB_SERIAL=""
|
||||
CONFIG_GRUB_TIMEOUT="0"
|
||||
CONFIG_GRUB_TITLE="antrouter"
|
||||
CONFIG_GRUB_TITLE="OpenMPTCProuter"
|
||||
CONFIG_KERNEL_AIO=y
|
||||
CONFIG_KERNEL_DEBUG_GPIO=y
|
||||
# CONFIG_KERNEL_DEBUG_INFO is not set
|
||||
|
@ -213,7 +213,7 @@ CONFIG_KERNEL_MPTCP=y
|
|||
CONFIG_KERNEL_CRYPTO_SHA256=y
|
||||
CONFIG_LUCI_LANG_en=y
|
||||
CONFIG_LUCI_LANG_zh_Hans=y
|
||||
CONFIG_LUCI_LANG_zh_Hant=y
|
||||
CONFIG_LUCI_LANG_zh-tw=y
|
||||
CONFIG_TARGET_ROOTFS_PARTSIZE=512
|
||||
CONFIG_TARGET_KERNEL_PARTSIZE=64
|
||||
CONFIG_OPENSSL_WITH_CHACHA_POLY1305=y
|
||||
|
@ -223,6 +223,7 @@ CONFIG_OPENSSL_WITH_CHACHA_POLY1305=y
|
|||
CONFIG_KERNEL_DEVMEM=y
|
||||
CONFIG_KERNEL_DEVKMEM=y
|
||||
CONFIG_AUTOREMOVE=y
|
||||
CONFIG_AUTOREMOVE=y
|
||||
CONFIG_PACKAGE_luci-theme-argon=y
|
||||
CONFIG_PACKAGE_luci-theme-bootstrap=y
|
||||
CONFIG_PACKAGE_luci-theme-openwrt-2020=y
|
||||
|
|
60
config-bpi-r1
Normal file
60
config-bpi-r1
Normal file
|
@ -0,0 +1,60 @@
|
|||
CONFIG_TARGET_BOARD="sunxi"
|
||||
CONFIG_TARGET_sunxi=y
|
||||
CONFIG_TARGET_sunxi_cortexa7=y
|
||||
CONFIG_TARGET_sunxi_cortexa7_DEVICE_lamobo_lamobo-r1=y
|
||||
CONFIG_TARGET_SUBTARGET="cortexa7"
|
||||
CONFIG_TARGET_PROFILE="DEVICE_lamobo_lamobo-r1"
|
||||
CONFIG_TARGET_ROOTFS_EXT4FS=y
|
||||
CONFIG_TARGET_ROOTFS_SQUASHFS=y
|
||||
CONFIG_PACKAGE_u-boot-Lamobo_R1=y
|
||||
CONFIG_PACKAGE_uboot-envtools=y
|
||||
CONFIG_PACKAGE_attr=y
|
||||
CONFIG_PACKAGE_f2fs-tools=y
|
||||
CONFIG_PACKAGE_f2fsck=y
|
||||
CONFIG_PACKAGE_mkf2fs=y
|
||||
CONFIG_PACKAGE_rtl8188eu-firmware=y
|
||||
CONFIG_PACKAGE_ath9k-htc-firmware=y
|
||||
CONFIG_PACKAGE_mt7601u-firmware=y
|
||||
CONFIG_PACKAGE_rt2800-usb-firmware=y
|
||||
CONFIG_PACKAGE_rtl8192cu-firmware=y
|
||||
CONFIG_PACKAGE_rtl8192su-firmware=y
|
||||
CONFIG_PACKAGE_kmod-switch-bcm53xx=y
|
||||
CONFIG_PACKAGE_kmod-switch-bcm53xx-mdio=y
|
||||
CONFIG_PACKAGE_ip-bridge=y
|
||||
CONFIG_PACKAGE_swconfig=y
|
||||
CONFIG_PACKAGE_kmod-swconfig=y
|
||||
CONFIG_PACKAGE_kmod-ste10xp=y
|
||||
CONFIG_PACKAGE_kmod-can-bcm=y
|
||||
CONFIG_PACKAGE_kmod-ata-sunxi=y
|
||||
CONFIG_PACKAGE_kmod-rtl8192cu=y
|
||||
CONFIG_PACKAGE_kmod-ath9k-common=y
|
||||
CONFIG_PACKAGE_kmod-ath9k-htc=y
|
||||
CONFIG_PACKAGE_kmod-net-rtl8192su=y
|
||||
CONFIG_PACKAGE_kmod-rtl8192c-common=y
|
||||
CONFIG_PACKAGE_kmod-rtl8192cu=y
|
||||
CONFIG_PACKAGE_kmod-rtl8xxxu=y
|
||||
CONFIG_PACKAGE_kmod-sunxi-ir=y
|
||||
CONFIG_PACKAGE_kmod-sound-soc-sunxi=y
|
||||
CONFIG_PACKAGE_kmod-rtlwifi-usb=y
|
||||
CONFIG_PACKAGE_kmod-rtlwifi=y
|
||||
CONFIG_PACKAGE_kmod-scsi-core=y
|
||||
CONFIG_PACKAGE_kmod-slhc=y
|
||||
CONFIG_PACKAGE_kmod-usb-core=y
|
||||
CONFIG_PACKAGE_kmod-leds-gpio=y
|
||||
CONFIG_PACKAGE_kmod-ledtrig-activity=y
|
||||
CONFIG_PACKAGE_kmod-ledtrig-gpio=y
|
||||
CONFIG_PACKAGE_kmod-ledtrig-oneshot=y
|
||||
CONFIG_PACKAGE_kmod-ledtrig-transient=y
|
||||
CONFIG_PACKAGE_kmod-ledtrig-disk=y
|
||||
CONFIG_PACKAGE_kmod-ledtrig-mtd=y
|
||||
CONFIG_PACKAGE_kmod-ledtrig-heartbeat=y
|
||||
CONFIG_PACKAGE_kmod-ledtrig-backlight=y
|
||||
CONFIG_PACKAGE_kmod-ledtrig-cpu=y
|
||||
CONFIG_PACKAGE_kmod-ledtrig-panic=y
|
||||
CONFIG_PACKAGE_kmod-ledtrig-netdev=y
|
||||
CONFIG_PACKAGE_kmod-ledtrig-pattern=y
|
||||
CONFIG_PACKAGE_kmod-ledtrig-audio=y
|
||||
CONFIG_PACKAGE_kmod-ipt-led=y
|
||||
CONFIG_PACKAGE_kmod-usb-ledtrig-usbport=y
|
||||
# CONFIG_PACKAGE_kmod-r8125 is not set
|
||||
CONFIG_KERNEL_ARM_MODULE_PLTS=y
|
0
config-bpi-r2
Executable file → Normal file
0
config-bpi-r2
Executable file → Normal file
0
config-bpi-r64
Executable file → Normal file
0
config-bpi-r64
Executable file → Normal file
0
config-espressobin
Executable file → Normal file
0
config-espressobin
Executable file → Normal file
13
config-p2w_r619ac
Normal file
13
config-p2w_r619ac
Normal file
|
@ -0,0 +1,13 @@
|
|||
CONFIG_TARGET_ipq40xx=y
|
||||
CONFIG_TARGET_ipq40xx_generic=y
|
||||
CONFIG_TARGET_ipq40xx_generic_DEVICE_p2w_r619ac-128m=y
|
||||
CONFIG_PACKAGE_kmod-6lowpan=y
|
||||
# CONFIG_KERNEL_CC_OPTIMIZE_FOR_PERFORMANCE is not set
|
||||
CONFIG_KERNEL_CC_OPTIMIZE_FOR_SIZE=y
|
||||
CONFIG_PACKAGE_ipq-wifi-p2w_r619ac=y
|
||||
CONFIG_DEFAULT_ath10k-firmware-qca4019-ct=y
|
||||
CONFIG_DEFAULT_kmod-ath10k-ct=y
|
||||
CONFIG_PACKAGE_kmod-ath10k-ct=y
|
||||
CONFIG_ATH10K-CT_LEDS=y
|
||||
CONFIG_PACKAGE_ath10k-firmware-qca4019-ct=y
|
||||
CONFIG_KERNEL_ARM_MODULE_PLTS=y
|
0
config-r2s
Executable file → Normal file
0
config-r2s
Executable file → Normal file
0
config-rpi2
Executable file → Normal file
0
config-rpi2
Executable file → Normal file
0
config-rpi3
Executable file → Normal file
0
config-rpi3
Executable file → Normal file
0
config-rpi4
Executable file → Normal file
0
config-rpi4
Executable file → Normal file
0
config-wrt3200acm
Executable file → Normal file
0
config-wrt3200acm
Executable file → Normal file
0
config-wrt32x
Executable file → Normal file
0
config-wrt32x
Executable file → Normal file
0
config-x86
Executable file → Normal file
0
config-x86
Executable file → Normal file
0
config-x86_64
Executable file → Normal file
0
config-x86_64
Executable file → Normal file
0
patches/bbr2.patch
Executable file → Normal file
0
patches/bbr2.patch
Executable file → Normal file
0
patches/check-rsync.patch
Executable file → Normal file
0
patches/check-rsync.patch
Executable file → Normal file
0
patches/download-ipv4.patch
Executable file → Normal file
0
patches/download-ipv4.patch
Executable file → Normal file
0
patches/gtime.patch
Executable file → Normal file
0
patches/gtime.patch
Executable file → Normal file
0
patches/images.patch
Executable file → Normal file
0
patches/images.patch
Executable file → Normal file
0
patches/ipt-nat6.patch
Executable file → Normal file
0
patches/ipt-nat6.patch
Executable file → Normal file
0
patches/luci-occitan.patch
Executable file → Normal file
0
patches/luci-occitan.patch
Executable file → Normal file
0
patches/nanqinlang.patch
Executable file → Normal file
0
patches/nanqinlang.patch
Executable file → Normal file
0
patches/nocheck.patch
Executable file → Normal file
0
patches/nocheck.patch
Executable file → Normal file
0
patches/package-too-long.patch
Executable file → Normal file
0
patches/package-too-long.patch
Executable file → Normal file
37
patches/remove_abi.patch
Normal file
37
patches/remove_abi.patch
Normal file
|
@ -0,0 +1,37 @@
|
|||
--- a/package/libs/libubox/Makefile 2021-02-17 14:45:19.981073050 +0100
|
||||
+++ b/package/libs/libubox/Makefile 2021-02-17 14:45:57.232466168 +0100
|
||||
@@ -73,12 +73,12 @@
|
||||
|
||||
define Package/libubox/install
|
||||
$(INSTALL_DIR) $(1)/lib/
|
||||
- $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libubox.so.* $(1)/lib/
|
||||
+ $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libubox.so $(1)/lib/
|
||||
endef
|
||||
|
||||
define Package/libblobmsg-json/install
|
||||
$(INSTALL_DIR) $(1)/lib/
|
||||
- $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libblobmsg_json.so.* $(1)/lib/
|
||||
+ $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libblobmsg_json.so $(1)/lib/
|
||||
endef
|
||||
|
||||
define Package/jshn/install
|
||||
@@ -89,7 +89,7 @@
|
||||
|
||||
define Package/libjson-script/install
|
||||
$(INSTALL_DIR) $(1)/lib/
|
||||
- $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libjson_script.so.* $(1)/lib/
|
||||
+ $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libjson_script.so $(1)/lib/
|
||||
endef
|
||||
|
||||
define Package/libubox-lua/install
|
||||
--- a/package/system/ubus/Makefile 2021-02-17 15:16:34.450301703 +0100
|
||||
+++ b/package/system/ubus/Makefile 2021-02-17 15:16:55.289957767 +0100
|
||||
@@ -69,7 +69,7 @@
|
||||
|
||||
define Package/libubus/install
|
||||
$(INSTALL_DIR) $(1)/lib
|
||||
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/libubus.so.* $(1)/lib/
|
||||
+ $(CP) $(PKG_INSTALL_DIR)/usr/lib/libubus.so $(1)/lib/
|
||||
endef
|
||||
|
||||
define Package/libubus-lua/install
|
0
patches/smsc75xx.patch
Executable file → Normal file
0
patches/smsc75xx.patch
Executable file → Normal file
0
patches/uefi.patch
Executable file → Normal file
0
patches/uefi.patch
Executable file → Normal file
0
root/target/linux/mediatek/Makefile
Executable file → Normal file
0
root/target/linux/mediatek/Makefile
Executable file → Normal file
0
root/target/linux/mediatek/base-files/etc/inittab
Executable file → Normal file
0
root/target/linux/mediatek/base-files/etc/inittab
Executable file → Normal file
|
@ -1,6 +1,7 @@
|
|||
uci set network.globals.default_rps_val=14
|
||||
uci set network.globals.default_rps_flow_cnt=256
|
||||
uci set network.globals.default_xps_val=14
|
||||
uci set network.globals.default_ps=1
|
||||
uci commit
|
||||
#!/bin/sh
|
||||
uci -q set network.globals.default_rps_val=14
|
||||
uci -q set network.globals.default_rps_flow_cnt=256
|
||||
uci -q set network.globals.default_xps_val=14
|
||||
uci -q set network.globals.default_ps=1
|
||||
uci -q commit
|
||||
exit 0
|
||||
|
|
0
root/target/linux/mediatek/base-files/lib/preinit/05_set_preinit_iface
Executable file → Normal file
0
root/target/linux/mediatek/base-files/lib/preinit/05_set_preinit_iface
Executable file → Normal file
|
@ -1,8 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
set_rps_sock_flow() {
|
||||
echo 1024 > /proc/sys/net/core/rps_sock_flow_entries
|
||||
}
|
||||
|
||||
boot_hook_add preinit_main set_rps_sock_flow
|
||||
|
|
@ -1,48 +0,0 @@
|
|||
#!/bin/sh
|
||||
# Copyright (C) 2018 OpenWrt.org
|
||||
|
||||
RECOVERY_PART=/dev/mmcblk0p1
|
||||
|
||||
preinit_set_mac_address() {
|
||||
local mac
|
||||
|
||||
. /lib/functions.sh
|
||||
. /lib/functions/system.sh
|
||||
|
||||
case $(board_name) in
|
||||
'bananapi,bpi-r2'|\
|
||||
"unielec,u7623"*)
|
||||
if [ -b $RECOVERY_PART ]; then
|
||||
insmod nls_cp437
|
||||
insmod nls_iso8859-1
|
||||
insmod fat
|
||||
insmod vfat
|
||||
mkdir -p /tmp/recovery
|
||||
mount -o rw,noatime $RECOVERY_PART /tmp/recovery
|
||||
|
||||
if [ -f "/tmp/recovery/mac_addr" ];
|
||||
then
|
||||
mac=$(cat /tmp/recovery/mac_addr)
|
||||
else
|
||||
mac=$(cat /sys/class/net/eth0/address)
|
||||
echo "$mac" > /tmp/recovery/mac_addr
|
||||
fi
|
||||
|
||||
sync
|
||||
umount /tmp/recovery
|
||||
rm -rf /tmp/recovery
|
||||
fi
|
||||
|
||||
ip link set dev lan address $mac 2> /dev/null
|
||||
|
||||
mac=$(macaddr_add $mac 1)
|
||||
|
||||
ip link set dev wan1 address $mac 2>/dev/null
|
||||
ip link set dev wan2 address $mac 2>/dev/null
|
||||
ip link set dev wan3 address $mac 2>/dev/null
|
||||
ip link set dev wan4 address $mac 2>/dev/null
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
boot_hook_add preinit_main preinit_set_mac_address
|
|
@ -1,19 +0,0 @@
|
|||
#!/bin/sh
|
||||
# Copyright (C) 2015 OpenWrt.org
|
||||
|
||||
RECOVERY_PART=/dev/mmcblk0p1
|
||||
|
||||
move_config() {
|
||||
if [ -b $RECOVERY_PART ]; then
|
||||
insmod nls_cp437
|
||||
insmod nls_iso8859-1
|
||||
insmod fat
|
||||
insmod vfat
|
||||
mkdir -p /recovery
|
||||
mount -o rw,noatime $RECOVERY_PART /recovery
|
||||
[ -f /recovery/sysupgrade.tgz ] && mv -f /recovery/sysupgrade.tgz /
|
||||
umount /recovery
|
||||
fi
|
||||
}
|
||||
|
||||
boot_hook_add preinit_mount_root move_config
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh
|
||||
do_firstboot() {
|
||||
if [ "$(mount | grep jffs2)" = "" ]; then
|
||||
/sbin/firstboot -y
|
||||
fi
|
||||
}
|
||||
boot_hook_add preinit_main do_firstboot
|
0
root/target/linux/mediatek/modules.mk
Executable file → Normal file
0
root/target/linux/mediatek/modules.mk
Executable file → Normal file
0
root/target/linux/mediatek/mt7623/base-files/lib/preinit/07_set_iface_mac
Executable file → Normal file
0
root/target/linux/mediatek/mt7623/base-files/lib/preinit/07_set_iface_mac
Executable file → Normal file
0
root/target/linux/mediatek/mt7623/base-files/lib/preinit/79_move_config
Executable file → Normal file
0
root/target/linux/mediatek/mt7623/base-files/lib/preinit/79_move_config
Executable file → Normal file
0
root/target/linux/mediatek/mt7623/config-4.14
Executable file → Normal file
0
root/target/linux/mediatek/mt7623/config-4.14
Executable file → Normal file
76
root/target/linux/mediatek/mt7623/config-4.19
Executable file → Normal file
76
root/target/linux/mediatek/mt7623/config-4.19
Executable file → Normal file
|
@ -1,6 +1,8 @@
|
|||
# CONFIG_AIO is not set
|
||||
CONFIG_ALIGNMENT_TRAP=y
|
||||
# CONFIG_ARCH_AXXIA is not set
|
||||
CONFIG_ARCH_CLOCKSOURCE_DATA=y
|
||||
CONFIG_ARCH_DMA_ADDR_T_64BIT=y
|
||||
CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y
|
||||
CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
|
||||
CONFIG_ARCH_HAS_FORTIFY_SOURCE=y
|
||||
|
@ -8,6 +10,7 @@ CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
|
|||
CONFIG_ARCH_HAS_KCOV=y
|
||||
CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y
|
||||
CONFIG_ARCH_HAS_PHYS_TO_DMA=y
|
||||
CONFIG_ARCH_HAS_PTE_SPECIAL=y
|
||||
CONFIG_ARCH_HAS_SET_MEMORY=y
|
||||
CONFIG_ARCH_HAS_SG_CHAIN=y
|
||||
CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y
|
||||
|
@ -34,14 +37,16 @@ CONFIG_ARM=y
|
|||
CONFIG_ARM_APPENDED_DTB=y
|
||||
CONFIG_ARM_ARCH_TIMER=y
|
||||
CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y
|
||||
# CONFIG_ARM_ATAG_DTB_COMPAT is not set
|
||||
CONFIG_ARM_ATAG_DTB_COMPAT=y
|
||||
CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND=y
|
||||
# CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER is not set
|
||||
CONFIG_ARM_CPU_SUSPEND=y
|
||||
# CONFIG_ARM_CPU_TOPOLOGY is not set
|
||||
CONFIG_ARM_GIC=y
|
||||
CONFIG_ARM_HAS_SG_CHAIN=y
|
||||
CONFIG_ARM_L1_CACHE_SHIFT=6
|
||||
CONFIG_ARM_L1_CACHE_SHIFT_6=y
|
||||
# CONFIG_ARM_LPAE is not set
|
||||
CONFIG_ARM_LPAE=y
|
||||
CONFIG_ARM_MEDIATEK_CPUFREQ=y
|
||||
CONFIG_ARM_PATCH_IDIV=y
|
||||
CONFIG_ARM_PATCH_PHYS_VIRT=y
|
||||
|
@ -50,31 +55,35 @@ CONFIG_ARM_THUMB=y
|
|||
CONFIG_ARM_THUMBEE=y
|
||||
CONFIG_ARM_UNWIND=y
|
||||
CONFIG_ARM_VIRT_EXT=y
|
||||
CONFIG_ASN1=y
|
||||
CONFIG_ASSOCIATIVE_ARRAY=y
|
||||
CONFIG_ATAGS=y
|
||||
CONFIG_AUTO_ZRELADDR=y
|
||||
# CONFIG_BCM84881_PHY is not set
|
||||
CONFIG_BLK_MQ_PCI=y
|
||||
CONFIG_BOUNCE=y
|
||||
# CONFIG_CACHE_L2X0 is not set
|
||||
CONFIG_CLEANCACHE=y
|
||||
CONFIG_CLKDEV_LOOKUP=y
|
||||
CONFIG_CLKSRC_MMIO=y
|
||||
CONFIG_CLONE_BACKWARDS=y
|
||||
CONFIG_CMDLINE="earlyprintk console=ttyS0,115200 rootfstype=squashfs,jffs2"
|
||||
CONFIG_CMDLINE_FROM_BOOTLOADER=y
|
||||
CONFIG_CLZ_TAB=y
|
||||
CONFIG_CMDLINE="earlyprintk console=ttyS0,115200 vmalloc=256M"
|
||||
CONFIG_CMDLINE_EXTEND=y
|
||||
CONFIG_COMMON_CLK=y
|
||||
CONFIG_COMMON_CLK_MEDIATEK=y
|
||||
CONFIG_COMMON_CLK_MT2701=y
|
||||
# CONFIG_COMMON_CLK_MT2701_AUDSYS is not set
|
||||
CONFIG_COMMON_CLK_MT2701_AUDSYS=y
|
||||
CONFIG_COMMON_CLK_MT2701_BDPSYS=y
|
||||
CONFIG_COMMON_CLK_MT2701_ETHSYS=y
|
||||
# CONFIG_COMMON_CLK_MT2701_G3DSYS is not set
|
||||
CONFIG_COMMON_CLK_MT2701_G3DSYS=y
|
||||
CONFIG_COMMON_CLK_MT2701_HIFSYS=y
|
||||
CONFIG_COMMON_CLK_MT2701_IMGSYS=y
|
||||
CONFIG_COMMON_CLK_MT2701_MMSYS=y
|
||||
CONFIG_COMMON_CLK_MT2701_VDECSYS=y
|
||||
# CONFIG_COMMON_CLK_MT7622 is not set
|
||||
# CONFIG_COMMON_CLK_MT7629 is not set
|
||||
CONFIG_COMMON_CLK_MT7629=y
|
||||
# CONFIG_COMMON_CLK_MT7629_ETHSYS is not set
|
||||
# CONFIG_COMMON_CLK_MT7629_HIFSYS is not set
|
||||
# CONFIG_COMMON_CLK_MT8135 is not set
|
||||
# CONFIG_COMMON_CLK_MT8173 is not set
|
||||
CONFIG_COREDUMP=y
|
||||
|
@ -109,6 +118,7 @@ CONFIG_CPU_SPECTRE=y
|
|||
CONFIG_CPU_THUMB_CAPABLE=y
|
||||
CONFIG_CPU_TLB_V7=y
|
||||
CONFIG_CPU_V7=y
|
||||
CONFIG_CRASH_CORE=y
|
||||
CONFIG_CRC16=y
|
||||
# CONFIG_CRC32_SARWATE is not set
|
||||
CONFIG_CRC32_SLICEBY8=y
|
||||
|
@ -116,18 +126,18 @@ CONFIG_CROSS_MEMORY_ATTACH=y
|
|||
CONFIG_CRYPTO_ACOMP2=y
|
||||
CONFIG_CRYPTO_AEAD=y
|
||||
CONFIG_CRYPTO_AEAD2=y
|
||||
CONFIG_CRYPTO_AKCIPHER=y
|
||||
CONFIG_CRYPTO_AKCIPHER2=y
|
||||
CONFIG_CRYPTO_CRC32=y
|
||||
CONFIG_CRYPTO_CRC32C=y
|
||||
CONFIG_CRYPTO_CTR=y
|
||||
CONFIG_CRYPTO_DEFLATE=y
|
||||
CONFIG_CRYPTO_DEV_MEDIATEK=y
|
||||
CONFIG_CRYPTO_DRBG=y
|
||||
CONFIG_CRYPTO_DRBG_HMAC=y
|
||||
CONFIG_CRYPTO_DRBG_MENU=y
|
||||
CONFIG_CRYPTO_HASH=y
|
||||
CONFIG_CRYPTO_HASH2=y
|
||||
CONFIG_CRYPTO_HMAC=y
|
||||
CONFIG_CRYPTO_HW=y
|
||||
CONFIG_CRYPTO_JITTERENTROPY=y
|
||||
CONFIG_CRYPTO_LZO=y
|
||||
CONFIG_CRYPTO_MANAGER=y
|
||||
|
@ -137,6 +147,7 @@ CONFIG_CRYPTO_NULL2=y
|
|||
CONFIG_CRYPTO_RNG=y
|
||||
CONFIG_CRYPTO_RNG2=y
|
||||
CONFIG_CRYPTO_RNG_DEFAULT=y
|
||||
CONFIG_CRYPTO_RSA=y
|
||||
CONFIG_CRYPTO_SEQIV=y
|
||||
CONFIG_CRYPTO_SHA1=y
|
||||
CONFIG_CRYPTO_SHA256=y
|
||||
|
@ -161,7 +172,7 @@ CONFIG_DEBUG_UART_PHYS=0x11004000
|
|||
CONFIG_DEBUG_UART_VIRT=0xf1004000
|
||||
CONFIG_DEBUG_UNCOMPRESS=y
|
||||
# CONFIG_DEBUG_USER is not set
|
||||
CONFIG_DEFAULT_MPTCP_PM="fullmesh"
|
||||
CONFIG_DEFAULT_NETLINK=y
|
||||
CONFIG_DMADEVICES=y
|
||||
CONFIG_DMA_ENGINE=y
|
||||
CONFIG_DMA_OF=y
|
||||
|
@ -209,7 +220,7 @@ CONFIG_GPIOLIB=y
|
|||
CONFIG_GPIO_SYSFS=y
|
||||
# CONFIG_GPS is not set
|
||||
CONFIG_HANDLE_DOMAIN_IRQ=y
|
||||
CONFIG_HARDEN_BRANCH_PREDICTOR=y
|
||||
# CONFIG_HARDEN_BRANCH_PREDICTOR is not set
|
||||
CONFIG_HARDIRQS_SW_RESEND=y
|
||||
CONFIG_HAS_DMA=y
|
||||
CONFIG_HAS_IOMEM=y
|
||||
|
@ -222,6 +233,7 @@ CONFIG_HAVE_ARCH_PFN_VALID=y
|
|||
CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
|
||||
CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y
|
||||
CONFIG_HAVE_ARCH_TRACEHOOK=y
|
||||
CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
|
||||
CONFIG_HAVE_ARM_ARCH_TIMER=y
|
||||
CONFIG_HAVE_ARM_SMCCC=y
|
||||
CONFIG_HAVE_CLK=y
|
||||
|
@ -238,6 +250,7 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
|
|||
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
|
||||
CONFIG_HAVE_FUNCTION_TRACER=y
|
||||
CONFIG_HAVE_GENERIC_DMA_COHERENT=y
|
||||
CONFIG_HAVE_GENERIC_GUP=y
|
||||
CONFIG_HAVE_IDE=y
|
||||
CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
|
||||
CONFIG_HAVE_LD_DEAD_CODE_DATA_ELIMINATION=y
|
||||
|
@ -250,19 +263,20 @@ CONFIG_HAVE_PERF_EVENTS=y
|
|||
CONFIG_HAVE_PERF_REGS=y
|
||||
CONFIG_HAVE_PERF_USER_STACK_DUMP=y
|
||||
CONFIG_HAVE_PROC_CPU=y
|
||||
CONFIG_HAVE_RCU_TABLE_FREE=y
|
||||
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
|
||||
CONFIG_HAVE_RSEQ=y
|
||||
CONFIG_HAVE_SMP=y
|
||||
CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
|
||||
CONFIG_HAVE_UID16=y
|
||||
CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
|
||||
CONFIG_HIGHMEM=y
|
||||
# CONFIG_HIGHPTE is not set
|
||||
CONFIG_HOTPLUG_CPU=y
|
||||
# CONFIG_HUGETLBFS is not set
|
||||
CONFIG_HWMON=y
|
||||
CONFIG_HW_RANDOM=y
|
||||
CONFIG_HW_RANDOM_MTK=y
|
||||
CONFIG_HZ_FIXED=0
|
||||
CONFIG_HZ_PERIODIC=y
|
||||
CONFIG_I2C=y
|
||||
CONFIG_I2C_BOARDINFO=y
|
||||
CONFIG_I2C_CHARDEV=y
|
||||
|
@ -271,7 +285,11 @@ CONFIG_ICPLUS_PHY=y
|
|||
CONFIG_IIO=y
|
||||
# CONFIG_IIO_BUFFER is not set
|
||||
# CONFIG_IIO_TRIGGER is not set
|
||||
CONFIG_INITRAMFS_SOURCE=""
|
||||
CONFIG_INITRAMFS_COMPRESSION=""
|
||||
# CONFIG_INITRAMFS_FORCE is not set
|
||||
CONFIG_INITRAMFS_ROOT_GID=1000
|
||||
CONFIG_INITRAMFS_ROOT_UID=1000
|
||||
CONFIG_INITRAMFS_SOURCE="/openwrt/trunk/build_dir/target-arm_cortex-a7_musl-1.1.14_eabi/root-mediatek /openwrt/trunk/target/linux/generic/image/initramfs-base-files.txt"
|
||||
# CONFIG_IOMMU_DEBUGFS is not set
|
||||
# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set
|
||||
# CONFIG_IOMMU_IO_PGTABLE_LPAE is not set
|
||||
|
@ -283,6 +301,9 @@ CONFIG_IRQ_FORCED_THREADING=y
|
|||
CONFIG_IRQ_WORK=y
|
||||
CONFIG_JBD2=y
|
||||
CONFIG_KALLSYMS=y
|
||||
CONFIG_KEXEC=y
|
||||
CONFIG_KEXEC_CORE=y
|
||||
CONFIG_KEYS=y
|
||||
CONFIG_LEDS_MT6323=y
|
||||
CONFIG_LIBFDT=y
|
||||
CONFIG_LOCK_DEBUGGING_SUPPORT=y
|
||||
|
@ -294,7 +315,7 @@ CONFIG_LZO_DECOMPRESS=y
|
|||
# CONFIG_MACH_MT6589 is not set
|
||||
# CONFIG_MACH_MT6592 is not set
|
||||
CONFIG_MACH_MT7623=y
|
||||
# CONFIG_MACH_MT7629 is not set
|
||||
CONFIG_MACH_MT7629=y
|
||||
# CONFIG_MACH_MT8127 is not set
|
||||
# CONFIG_MACH_MT8135 is not set
|
||||
CONFIG_MAGIC_SYSRQ=y
|
||||
|
@ -319,6 +340,12 @@ CONFIG_MMC_SDHCI=y
|
|||
CONFIG_MMC_SDHCI_PLTFM=y
|
||||
# CONFIG_MMC_TIFM_SD is not set
|
||||
CONFIG_MODULES_USE_ELF_REL=y
|
||||
CONFIG_MPILIB=y
|
||||
# CONFIG_MPTCP_BINDER is not set
|
||||
# CONFIG_MPTCP_FULLMESH is not set
|
||||
# CONFIG_MPTCP_NDIFFPORTS is not set
|
||||
# CONFIG_MPTCP_REDUNDANT is not set
|
||||
# CONFIG_MPTCP_ROUNDROBIN is not set
|
||||
# CONFIG_MT753X_GSW is not set
|
||||
CONFIG_MTD_BLOCK2MTD=y
|
||||
CONFIG_MTD_CMDLINE_PARTS=y
|
||||
|
@ -346,7 +373,7 @@ CONFIG_MTK_EFUSE=y
|
|||
CONFIG_MTK_INFRACFG=y
|
||||
# CONFIG_MTK_IOMMU is not set
|
||||
# CONFIG_MTK_IOMMU_V1 is not set
|
||||
CONFIG_MTK_PLATFORM=""
|
||||
CONFIG_MTK_PLATFORM="mt7623"
|
||||
CONFIG_MTK_PMIC_WRAP=y
|
||||
CONFIG_MTK_SCPSYS=y
|
||||
CONFIG_MTK_THERMAL=y
|
||||
|
@ -355,6 +382,7 @@ CONFIG_MUTEX_SPIN_ON_OWNER=y
|
|||
CONFIG_NEED_DMA_MAP_STATE=y
|
||||
CONFIG_NEON=y
|
||||
CONFIG_NET_DSA=y
|
||||
CONFIG_NET_DSA_LEGACY=y
|
||||
CONFIG_NET_DSA_MT7530=y
|
||||
CONFIG_NET_DSA_TAG_MTK=y
|
||||
CONFIG_NET_FLOW_LIMIT=y
|
||||
|
@ -365,9 +393,6 @@ CONFIG_NET_VENDOR_MEDIATEK=y
|
|||
# CONFIG_NET_VENDOR_WIZNET is not set
|
||||
CONFIG_NLS=y
|
||||
CONFIG_NO_BOOTMEM=y
|
||||
CONFIG_NO_HZ=y
|
||||
CONFIG_NO_HZ_COMMON=y
|
||||
CONFIG_NO_HZ_IDLE=y
|
||||
CONFIG_NR_CPUS=4
|
||||
CONFIG_NVMEM=y
|
||||
CONFIG_OF=y
|
||||
|
@ -395,15 +420,18 @@ CONFIG_PCI_MSI=y
|
|||
CONFIG_PCI_MSI_IRQ_DOMAIN=y
|
||||
# CONFIG_PCI_V3_SEMI is not set
|
||||
CONFIG_PERF_USE_VMALLOC=y
|
||||
CONFIG_PGTABLE_LEVELS=2
|
||||
CONFIG_PGTABLE_LEVELS=3
|
||||
CONFIG_PGTABLE_MAPPING=y
|
||||
CONFIG_PHYLIB=y
|
||||
CONFIG_PHYLINK=y
|
||||
CONFIG_PHYS_ADDR_T_64BIT=y
|
||||
CONFIG_PHY_MTK_TPHY=y
|
||||
# CONFIG_PHY_MTK_XSPHY is not set
|
||||
CONFIG_PINCTRL=y
|
||||
CONFIG_PINCTRL_MT2701=y
|
||||
CONFIG_PINCTRL_MT6397=y
|
||||
CONFIG_PINCTRL_MT7623=y
|
||||
CONFIG_PINCTRL_MT7629=y
|
||||
CONFIG_PINCTRL_MTK=y
|
||||
CONFIG_PINCTRL_MTK_MOORE=y
|
||||
CONFIG_PLUGIN_HOSTCC="g++"
|
||||
|
@ -472,6 +500,7 @@ CONFIG_SPI_MEM=y
|
|||
CONFIG_SPI_MT65XX=y
|
||||
# CONFIG_SPI_MTK_SNFI is not set
|
||||
CONFIG_SPMI=y
|
||||
# CONFIG_SPS30 is not set
|
||||
CONFIG_SRCU=y
|
||||
CONFIG_STREAM_PARSER=y
|
||||
# CONFIG_STRIP_ASM_SYMS is not set
|
||||
|
@ -481,6 +510,7 @@ CONFIG_SWCONFIG=y
|
|||
CONFIG_SWPHY=y
|
||||
CONFIG_SWP_EMULATE=y
|
||||
CONFIG_SYS_SUPPORTS_APM_EMULATION=y
|
||||
CONFIG_SYS_SUPPORTS_HUGETLBFS=y
|
||||
CONFIG_TASKS_RCU=y
|
||||
# CONFIG_TCP_CONG_NANQINLANG is not set
|
||||
CONFIG_THERMAL=y
|
||||
|
@ -512,6 +542,8 @@ CONFIG_VFP=y
|
|||
CONFIG_VFPv3=y
|
||||
CONFIG_VM_EVENT_COUNTERS=y
|
||||
CONFIG_WATCHDOG_CORE=y
|
||||
# CONFIG_WIRELESS is not set
|
||||
# CONFIG_WLAN is not set
|
||||
CONFIG_XPS=y
|
||||
CONFIG_XZ_DEC_ARM=y
|
||||
CONFIG_XZ_DEC_BCJ=y
|
||||
|
@ -519,3 +551,5 @@ CONFIG_ZBOOT_ROM_BSS=0
|
|||
CONFIG_ZBOOT_ROM_TEXT=0
|
||||
CONFIG_ZLIB_DEFLATE=y
|
||||
CONFIG_ZLIB_INFLATE=y
|
||||
CONFIG_ZSMALLOC=y
|
||||
# CONFIG_ZSMALLOC_STAT is not set
|
||||
|
|
0
root/target/linux/mediatek/mt7623/config-5.4
Executable file → Normal file
0
root/target/linux/mediatek/mt7623/config-5.4
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.14/0229-fix-memory-size-for-bpi-r2.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.14/0229-fix-memory-size-for-bpi-r2.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.14/0229-update-gpio-leds-for-bpi-r2.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.14/0229-update-gpio-leds-for-bpi-r2.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.14/0230-update-pcie-for-bpi-r2.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.14/0230-update-pcie-for-bpi-r2.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.14/0231-enable-trgmii-on-bpi-r2.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.14/0231-enable-trgmii-on-bpi-r2.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.14/0232-merge-mt6625l-wifi-driver.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.14/0232-merge-mt6625l-wifi-driver.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.14/0233-revert-unexport-vfs_read-write.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.14/0233-revert-unexport-vfs_read-write.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.14/0234-fix-mtk-wlan_gen2-module.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.14/0234-fix-mtk-wlan_gen2-module.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.14/0235-mtk_wdt-remove-debug-printk.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.14/0235-mtk_wdt-remove-debug-printk.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.14/0236-mt6625l-rename-wlan.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.14/0236-mt6625l-rename-wlan.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.14/0237-mt7623-add-HNAT-support.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.14/0237-mt7623-add-HNAT-support.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0001-adding-defconfig-and-build-script-change-gitignore-m.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0001-adding-defconfig-and-build-script-change-gitignore-m.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0006-wifi-adding-driver-folder.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0006-wifi-adding-driver-folder.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0007-wifi-adding-wifi-related-changes-outside-driver-dire.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0007-wifi-adding-wifi-related-changes-outside-driver-dire.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0008-gcc-gcc8-fixes-by-Dominik-Koch-nic_rx-patch-from-htt.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0008-gcc-gcc8-fixes-by-Dominik-Koch-nic_rx-patch-from-htt.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0009-wifi-activated-wifi-options.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0009-wifi-activated-wifi-options.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0012-defconfig-add-missing-CONFIG_PCI_MSI-needed-for-pcie.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0012-defconfig-add-missing-CONFIG_PCI_MSI-needed-for-pcie.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0014-dts-set-mac-address-eth0.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0014-dts-set-mac-address-eth0.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0016-build.sh-dts-added-devicetree-Overlay.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0016-build.sh-dts-added-devicetree-Overlay.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0019-net-dsa-adding-fields-for-holding-information-about-.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0019-net-dsa-adding-fields-for-holding-information-about-.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0020-net-dsa-add-helper-functions.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0020-net-dsa-add-helper-functions.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0021-net-dsa-adding-handling-of-second-CPU-Port.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0021-net-dsa-adding-handling-of-second-CPU-Port.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0022-net-dsa-add-support-for-GMAC2-wired-to-ext.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0022-net-dsa-add-support-for-GMAC2-wired-to-ext.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0023-net-dsa-dsa-multi-cpu-mt7530.c.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0023-net-dsa-dsa-multi-cpu-mt7530.c.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0024-net-dsa-tell-GDMA-when-we-are-turning-on-the-special.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0024-net-dsa-tell-GDMA-when-we-are-turning-on-the-special.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0025-net-dsa-mt7530-add-linking-to-mdio.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0025-net-dsa-mt7530-add-linking-to-mdio.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0026-net-dsa-changes-to-dts.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0026-net-dsa-changes-to-dts.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0027-drm-mediatek-add-refcount-for-DPI-power-on-off.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0027-drm-mediatek-add-refcount-for-DPI-power-on-off.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0028-drm-mediatek-move-hardware-register-to-node-data.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0028-drm-mediatek-move-hardware-register-to-node-data.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0029-drm-mediatek-adjust-EDGE-to-match-clock-and-data.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0029-drm-mediatek-adjust-EDGE-to-match-clock-and-data.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0030-drm-mediatek-add-clock-factor-for-different-IC.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0030-drm-mediatek-add-clock-factor-for-different-IC.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0031-drm-mediatek-convert-dpi-driver-to-use-drm_of_find_p.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0031-drm-mediatek-convert-dpi-driver-to-use-drm_of_find_p.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0032-drm-mediatek-add-dpi-driver-for-mt2701-and-mt7623.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0032-drm-mediatek-add-dpi-driver-for-mt2701-and-mt7623.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0033-drm-mediatek-separate-hdmi-phy-to-different-file.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0033-drm-mediatek-separate-hdmi-phy-to-different-file.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0034-drm-mediatek-add-support-for-SPDIF-audio-in-HDMI.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0034-drm-mediatek-add-support-for-SPDIF-audio-in-HDMI.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0035-drm-mediatek-add-hdmi-driver-for-MT2701-and-MT7623.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0035-drm-mediatek-add-hdmi-driver-for-MT2701-and-MT7623.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0036-drm-mediatek-implement-connection-from-BLS-to-DPI0.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0036-drm-mediatek-implement-connection-from-BLS-to-DPI0.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0037-drm-mediatek-add-a-error-return-value-when-clock-dri.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0037-drm-mediatek-add-a-error-return-value-when-clock-dri.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0038-drm-mediatek-config-component-output-by-device-node-.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0038-drm-mediatek-config-component-output-by-device-node-.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0039-arm-dts-mt7623-add-a-performance-counter-unit-device.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0039-arm-dts-mt7623-add-a-performance-counter-unit-device.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0040-arm-dts-mt7623-update-subsystem-clock-controller-dev.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0040-arm-dts-mt7623-update-subsystem-clock-controller-dev.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0041-arm-dts-mt7623-add-iommu-smi-device-nodes.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0041-arm-dts-mt7623-add-iommu-smi-device-nodes.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0042-arm-dts-mt7623-add-jpeg-decoder-device-node.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0042-arm-dts-mt7623-add-jpeg-decoder-device-node.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0043-arm-dts-mt7623-add-display-subsystem-related-device-.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0043-arm-dts-mt7623-add-display-subsystem-related-device-.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0044-fix-boot-up-for-720-and-480-but-1080.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0044-fix-boot-up-for-720-and-480-but-1080.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0045-using-different-round-rate-for-mt7623.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0045-using-different-round-rate-for-mt7623.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0046-hdmi-fix-possible_crtcs.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0046-hdmi-fix-possible_crtcs.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0047-hdmi-added-options-to-defconfig.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0047-hdmi-added-options-to-defconfig.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0049-hdmi-added-fbdev-options.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0049-hdmi-added-fbdev-options.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0050-BT-fix-Bluetooth.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0050-BT-fix-Bluetooth.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0053-defconfig-disable-some-debug-messages-evbug-gpio.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0053-defconfig-disable-some-debug-messages-evbug-gpio.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0058-defconfig-add-multiple-routing-tables-for-IPv4.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0058-defconfig-add-multiple-routing-tables-for-IPv4.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0059-defconfig-added-options-for-Traffic-Shaping.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0059-defconfig-added-options-for-Traffic-Shaping.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0061-defconfig-add-nftables.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0061-defconfig-add-nftables.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0063-defconfig-add-all-XT-matches-targets.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0063-defconfig-add-all-XT-matches-targets.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0064-dsa-fix-oops-in-br_vlan_enabled.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0064-dsa-fix-oops-in-br_vlan_enabled.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0066-defconfig-enable-mt76x2.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0066-defconfig-enable-mt76x2.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0067-dsa-fix-from-florian.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0067-dsa-fix-from-florian.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0068-defconfig-add-atheros-wireless-lan-9k-10k-support.patch
Executable file → Normal file
0
root/target/linux/mediatek/patches-4.19/0068-defconfig-add-atheros-wireless-lan-9k-10k-support.patch
Executable file → Normal file
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue