Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revisionBoth sides next revision
toh:mts:wg430223 [2022/06/14 15:25] – [Switch Ports (for VLANs)] csharper2005toh:mts:wg430223 [2023/05/17 16:54] – [Tags] csharper2005
Line 5: Line 5:
 /* USE https://openwrt.org/meta/create_new_device_page */ /* USE https://openwrt.org/meta/create_new_device_page */
  
-{{page>meta:infobox:construction&noheader&nofooter&noeditbtn}}+/*****/ 
 +/* {{page>meta:infobox:construction&noheader&nofooter&noeditbtn}} */ 
 +/*****/
  
-The MTS WG430223 is a wireless router based on the MT7621 platform. While it can be acquired for relatively low cost (especially on avito.ru) compared to other units with similar specifications. +The MTS WG430223 is a wireless router based on the MT7621 platform. While it can be acquired for relatively low cost (especially on avito.ru) compared to other units with similar specifications. Also known as Arcadyan WG430223.
- +
-<WRAP BOX> +
-FIXME Any text with a light background (like this one) provides instructions for creating the Details Page. When you have filled in correct/useful information (instead of any template that's there) **remove the instructions, as well as the ''<nowiki><WRAP></nowiki>'' that encloses it.** +
-</WRAP>+
  
 /*****/ /*****/
Line 17: Line 15:
 /*****/ /*****/
  
-{{media:example:genericrouter1.png?200|Generic Router}}+{{media:mts:wg430223_case_front.jpg?400|MTS WG430223}}
  
-<WRAP BOX> 
-FIXME 
-===== Getting started with a new Device Page ===== 
-  - This is an empty template that suggests the information that should be present on a well-constructed Device Page. This means, that **you have to fill it with life and information.** 
-  - There are several "fixme" tags with text on a light background (like this text) throughout this template. As you fill in the page, remove those tags so that people can judge its completeness. 
-  - When there are no more "fixme" tags left, delete this one too, along with the ''<nowiki><WRAP></nowiki>'' that encloses it. 
- 
-===== Keep the articles modular ===== 
-  * Please include only model specific information, omit bla,bla and put everything generic into separate articles 
-  * If you have no time to write certain stuff, link to [[docs:start]] 
-  * [[docs:guide-user:base-system:start]] should lead the way, do not explain this again 
-  * DO NOT provide a complete howto here! Instead //groom// the [[docs:start|general documentation]]. 
-</WRAP> 
  
 ===== Supported Versions ===== ===== Supported Versions =====
Line 43: Line 28:
 ---- ----
  
 +===== Experimental firmware =====
 +
 +  * [[https://forum.openwrt.org/t/add-support-for-beeline-smartbox-giga/99390/4|Community builds]]
  
 ===== Hardware Highlights ===== ===== Hardware Highlights =====
Line 52: Line 40:
 filter  : Model=WG430223 filter  : Model=WG430223
 ---- ----
 +
 +
 +===== Backup =====
 +It's strongly recommended to make a backup before you start:
 +
 +* Set up a tftp server (e.g. tftpd64 for windows)
 +
 +* Connect to a router using Telnet and run the following commands:
 +<code bash>
 +cd /tmp
 +for i in 1 2 3 4 5 6 7 8 9 10 11 12; do nanddump -f mtd$i /dev/mtd$i; \
 +tftp -l mtd$i -p 192.168.1.2; md5sum mtd$i >> mtd.md5; rm mtd$i; done
 +tftp -l mtd.md5 -p 192.168.1.2
 +</code>
 +192.168.1.2 - IP of the tftp server
 +
 +* Check backups in your tftp root folder.
  
  
 ===== Installation ===== ===== Installation =====
-/* stable release */ +
-/* uncomment once stable release is available+
 ---- datatable ---- ---- datatable ----
 cols    : Model, Versions, Supported Current Rel, Firmware OpenWrt Install URL_url, Firmware OpenWrt Upgrade URL_url, Firmware OEM Stock URL_url cols    : Model, Versions, Supported Current Rel, Firmware OpenWrt Install URL_url, Firmware OpenWrt Upgrade URL_url, Firmware OEM Stock URL_url
Line 64: Line 68:
 filter  : Model=WG430223 filter  : Model=WG430223
 ---- ----
-*/ 
  
  
-/* snapshot */ +-> [[docs:guide-user:installation:generic.flashing|Install OpenWrt (generic explanation)]]
-/* delete once stable release is available */ +
----- datatable ---- +
-cols    Model, Versions, Supported Current Rel, Firmware OpenWrt snapshot Install URL_url, Firmware OpenWrt snapshot Upgrade URL_url, Firmware OEM Stock URL_url +
-headers Model, Version, Current Release, Firmware OpenWrt snapshot Install, Firmware OpenWrt snapshot Upgrade, Firmware OEM Stock +
-align   : c,c,c +
-filter  : Brand=MTS +
-filter  : Model=WG430223 +
-----+
  
 +==== OpenWrt installation ====
  
--[[docs:guide-user:installation:generic.flashing|Install OpenWrt (generic explanation)]]+<WRAP round info 100%> 
 +**CAUTION:** \\ 
 +If you have any third-party firmware (e.g. Padavan, Keenetic, AsusWrt, non-official OpenWrt community builds (especially for Breed bootloaderetc.) installed on your device it's strongly recommended to restore original OEM firmware (including bootloader, EEPROM, partition map etc.) from your backup before you start the OpenWrt installation on your device. 
 +</WRAP>
  
 1. Login to the router web interface (superadmin:serial number) 1. Login to the router web interface (superadmin:serial number)
Line 86: Line 85:
 3. Connect to the router using telnet (default admin:admin) 3. Connect to the router using telnet (default admin:admin)
  
-4. Place *factory.trx on any web server (192.168.1.2 in this example)+4. Connect to the router using telnet shell (no password required)
  
-5. Connect to the router using telnet shell (no password required)+5. Check the bootpartition: 
 +<code bash> 
 +uboot_env --get --name bootpartition 
 +</code> 
 +If the result is //1// then go to the next step, otherwise (//0//- change the boot partition and reboot: 
 +<code bash> 
 +uboot_env --set --name bootpartition --value 1 
 +reboot 
 +</code>
  
-6. Save MAC adresses to U-Boot environment+6. Download and write the OpenWrt images
-   uboot_env --set --name eth2macaddr --value $(ifconfig | grep eth2 | \ +<code bash> 
-    awk '{print $5}') +cd /tmp 
-   uboot_env --set --name eth3macaddr --value $(ifconfig | grep eth3 | \ +wget https://downloads.openwrt.org/releases/22.03.0/targets/ramips/mt7621/openwrt-22.03.0-ramips-mt7621-mts_wg430223-squashfs-factory.trx 
-    awk '{print $5}'+mtd_write erase /dev/mtd4 
-   uboot_env --set --name ra0macaddr --value $(ifconfig | grep ra0 | \ +mtd_write write openwrt-22.03.0-ramips-mt7621-mts_wg430223-squashfs-factory.trx /dev/mtd4 
-    awk '{print $5}') +</code>
-   uboot_env --set --name rax0macaddr --value $(ifconfig | grep rax0 | \ +
-    awk '{print $5}')+
  
-7. Ensure that MACs were saved correctly+7. Set 1st boot partition and reboot
-   uboot_env --get --name eth2macaddr +<code bash> 
-   uboot_env --get --name eth3macaddr +uboot_env --set --name bootpartition --value 0 
-   uboot_env --get --name ra0macaddr +reboot 
-   uboot_env --get --name rax0macaddr+</code>
  
-8. Download and write the OpenWrt images: 
-   cd /tmp 
-   wget https://downloads.openwrt.org/snapshots/targets/ramips/mt7621/openwrt-ramips-mt7621-mts_wg430223-squashfs-factory.trx 
-   mtd_write erase /dev/mtd4 
-   mtd_write write factory.trx /dev/mtd4 
  
-9. Set 1st boot partition and reboot: +==== OEM easy installation ====
-   uboot_env --set --name bootpartition --value 0+
  
 +Under development
 +
 +
 +==== OEM installation using the TFTP method ====
 +
 +->  [[docs:guide-user:installation:generic.flashing.tftp]]
  
 +Not applicable
 ===== Return to Stock ===== ===== Return to Stock =====
 1. Login as root via SSH on 192.168.1.1, then enter the following commands: 1. Login as root via SSH on 192.168.1.1, then enter the following commands:
-   fw_setenv bootpartition 1 +<code bash> 
-   reboot+fw_setenv bootpartition 1 
 +reboot 
 +</code>
 2. Optional step. Upgrade the stock firmware with any version to overwrite the OpenWrt in Slot 1. 2. Optional step. Upgrade the stock firmware with any version to overwrite the OpenWrt in Slot 1.
-==== Flash Layout ==== +===== Flash Layout =====
-<WRAP BOX> +
-FIXME //[[:docs:techref:flash.layout#discovery_how_to_find_out|Find out flash layout]], then add the flash layout table here (copy, paste, modify the [[docs:techref:flash.layout#partitioning_of_the_flash|example]]).//+
  
-Please check out the article [[docs:techref:flash.layout|Flash layout]]. It contains examples and explanations that describe how to document the flash layout. +^ mtd    ^ partition    ^ start           ^ size       ^ 
-</WRAP>+| mtd0   | u-boot       | 0x0             | 0x100000   
 +| mtd1   | u-boot-env   | 0x100000        | 0x200000   | 
 +| mtd2   | Factory      | 0x200000        | 0x100000   | 
 +| mtd3   | firmware     | 0x300000        | 0x2000000 
 +| mtd4   | kernel       | 0x300000        | 0x440000   | 
 +| mtd5   | ubiconcat0   | 0x740000        | 0x1bc0000 
 +| mtd6   | Firmware2    | 0x2300000       | 0x2000000 
 +| mtd7   | glbcfg       | 0x4300000       | 0x200000   | 
 +| mtd8   | board_data   | 0x4500000       | 0x100000   | 
 +| mtd9   | glbcfg2      | 0x4600000       | 0x200000   | 
 +| mtd10  | board_data2  | 0x4800000       | 0x100000   | 
 +| mtd11  | ubiconcat1   | 0x4900000       | 0x3680000  |
  
-==== OEM easy installation ====+* MAC addresses hasn't been found neither in factory nor in other places
  
-<WRAP BOX> +* /tmp/etc/config/.glbcfg contains serial number, WiFi preshared keys etc.
-FIXME //The instructions below are for Broadcom devices and only serve as an example.//\\ +
-**//Remove modify them if they do not apply to this particular device!//**+
  
-This section deals with +arccfg util unencrypts (cipher aes-128-cbc + some obfuscation) the configuration from mtd8(10) at every boot 
-  How you install OpenWrt from a device freshly opened +<code bash> 
-  * The steps required such as reset to factory defaults if the device has already been configured+~ # arccfg  
 +fgets partition name ok!the partition is [glbcfg]  
 +fgets the second partition name ok!the the second partition is [glbcfg2]  
 +The primary glbcfg is mtd8  
 +The second glbcfg is mtd10 
 +</code>
  
-**Note:** Reset router to factory defaults if it has been previously configured. +mtd9(11): **board_data** or **board_data2** also contain MAC address (only *base* MAC)Other addresses should be calculated
-  Browse to ''<nowiki>http://192.168.1.1/Upgrade.asp</nowiki>'' +
-  Upload .bin file to router +
-  Wait for it to reboot +
-  Telnet to 192.168.1.1 and set a root password, or browse to ''<nowiki>http://192.168.1.1</nowiki>'' if LuCI is installed. +
-</WRAP>+
  
-==== OEM installation using the TFTP method ====+* @abyrga & @r3d5ky from telegram group [[https://t.me/smartboxgiga/49944|Beeline SmarBox Giga]] found a way how to decrypt a partition. [[https://github.com/openwrt/openwrt/issues/10062|Issue]] 
 +<code bash> 
 +$ dd status=none if=mtd9 bs=1 count=368 skip=256 | openssl aes-128-cbc -d -nopad \ 
 +-K 2A4B303D7644395C3B2B7053553C5200 -iv 00000000000000000000000000000000 
 +mac=ec:6c:##:##:##:b8 
 +sn=AG########## 
 +ssid=Beeline_2G_###### 
 +psk=########### 
 +ssid2=Beeline_5G_###### 
 +psk2=########### 
 +guest_ssid=Beeline_2G_######-Guest 
 +guest_psk=########### 
 +guest_ssid2=Beeline_5G_######-Guest 
 +guest_psk2=########### 
 +group_ssid=BH-Beeline_2G_###### 
 +group_psk=########### 
 +group_ssid2=BH-Beeline_5G_###### 
 +group_psk2=########### 
 +hw=01 
 +password=##### 
 +</code>
  
-->  [[docs:guide-user:installation:generic.flashing.tftp]]+===== OEM firmware trx format =====
  
-=== Specific values needed for tftp ===+The same as [[:toh:beeline:smartbox_flash#oem_firmware_trx_format|Beeline Smartbox Flash]] but with another trx magic 
 +<code bash> 
 ++--------------+---------------+----------------------------------------+ 
 +| Offset                     | Description                            | 
 ++==============+===============+========================================+ 
 +| 0x0          | 31 52 48 53   | TRX magic "1RHS"                       | 
 ++--------------+---------------+----------------------------------------+ 
 +</code>
  
-<WRAP BOX>+===== Original bootloader ===== 
 +-[[docs:techref:bootloader]]
  
-FIXME Enter values for "FILL-IN" below+* Ralink UBoot Version: 5.0.0.2
  
-^ Bootloader tftp server IPv4 address  | FILL-IN   | +* U-boot protected by unknown password (hash __95f9f8f58a972c3bb653854cc54e85b4__). Therefore, it isn't possible to load initramfs image or choose boot option except "3Boot system code via Flash (default).". 
-^ Bootloader MAC address (special    | FILL-IN   | + 
-^ Firmware tftp image                  | [[:downloads|Latest OpenWrt release]] (**''NOTE:''** Name must contain //"tftp"//) | +* There is no any bootcounters
-^ TFTP transfer window                 | FILL-IN seconds                                | +
-^ TFTP window start                    | approximately FILL-IN seconds after power on   | +
-^ TFTP client required IP address      | FILL-IN                                        |+
  
-</WRAP> 
  
 ===== Upgrading OpenWrt ===== ===== Upgrading OpenWrt =====
Line 188: Line 227:
   * Login as root via SSH on 192.168.1.1, then enter the following commands:   * Login as root via SSH on 192.168.1.1, then enter the following commands:
  
-<code>+<code bash>
 cd /tmp cd /tmp
 wget https://downloads.openwrt.org/snapshots/targets/ramips/mt7621/openwrt-ramips-mt7621-mts_wg430223-squashfs-sysupgrade.bin wget https://downloads.openwrt.org/snapshots/targets/ramips/mt7621/openwrt-ramips-mt7621-mts_wg430223-squashfs-sysupgrade.bin
Line 200: Line 239:
   * Login as root via SSH on 192.168.1.1, then enter the following commands:   * Login as root via SSH on 192.168.1.1, then enter the following commands:
  
-<code>+<code bash>
 cd /tmp cd /tmp
 wget https://downloads.openwrt.org/snapshots/targets/ramips/mt7621/openwrt-ramips-mt7621-mts_wg430223-squashfs-factory.trx wget https://downloads.openwrt.org/snapshots/targets/ramips/mt7621/openwrt-ramips-mt7621-mts_wg430223-squashfs-factory.trx
Line 219: Line 258:
 ===== Specific Configuration ===== ===== Specific Configuration =====
  
-<WRAP BOX> 
-FIXME Please fill in real values for this device, then remove the EXAMPLEs 
  
 ==== Network interfaces ==== ==== Network interfaces ====
 The default network configuration is: The default network configuration is:
-^ Interface Name   ^ Description                  ^ Default configuration    ^ +^ Interface Name   ^ Description          ^ Default configuration    ^ 
-| br-lan           EXAMPLE LAN & WiFi           EXAMPLE 192.168.1.1/24   +| br-lan           | LAN & WiFi           | 192.168.1.1/24           
-vlan0 (eth0.0)   EXAMPLE LAN ports (1 to 4  EXAMPLE None             +lan1, lan2       | LAN ports (1 & 2   br-lan                   
-vlan1 (eth0.1)   EXAMPLE WAN port             EXAMPLE DHCP             +wan              | WAN port             | DHCP                     
-| wl0              | EXAMPLE WiFi                 | EXAMPLE Disabled         |+
  
-</WRAP> 
  
 ==== Switch Ports (for VLANs) ==== ==== Switch Ports (for VLANs) ====
-<WRAP BOX> 
  
 ^ Port             ^ Switch port   ^ ^ Port             ^ Switch port   ^
Line 240: Line 275:
 | LAN 2            | lan2    | | LAN 2            | lan2    |
  
-</WRAP> 
  
 ==== Buttons ==== ==== Buttons ====
Line 269: Line 303:
  
 //Front://\\ //Front://\\
-**Insert photo of front of the casing**+{{:media:mts:wg430223_case_front.jpg?400|}}  
  
 //Back://\\ //Back://\\
-**Insert photo of back of the casing**+{{:media:mts:wg430223_case_rear.jpg?400|}}  
  
-//Backside label://\\ +//Top://\\ 
-**Insert photo of backside label**+{{:media:mts:wg430223_case_top.jpg?400|}}   
 + 
 +//Side://\\ 
 +{{:media:mts:wg430223_case_side.jpg?400|}}   
 + 
 +//Label://\\ 
 +{{:media:mts:wg430223_case_label.jpg?400|}}  
  
 ==== Opening the case ==== ==== Opening the case ====
Line 281: Line 321:
 **Note:** This will void your warranty! **Note:** This will void your warranty!
  
-<WRAP BOX> +There are 2 crews at the bottom. There are also clips around the edge of the case you will need to prize open, usingfor examplea plastic card.
-FIXME //Describe what needs to be done to open the devicee.g. remove rubber feetadhesive labels, screws, ...// +
-  * To remove the cover and open the device, do a/b/c +
-</WRAP>+
  
 //Main PCB://\\ //Main PCB://\\
-**Insert photo of PCB**+{{media:mts:wg430223_pcb_top.jpg?400|MTS WG 430223 PCB Top}}
  
 +{{media:mts:wg430223_pcb_bottom.jpg?400|MTS WG 430223 PCB Bottom}}
 ==== Serial ==== ==== Serial ====
 -> [[docs:techref:hardware:port.serial]] general information about the serial port, serial port cable, etc. -> [[docs:techref:hardware:port.serial]] general information about the serial port, serial port cable, etc.
  
-How to connect to the Serial Port of this specific device:\\ +How to connect to the Serial Port of this device:\\ 
-**Insert photo of PCB with markings for serial port**+ 
 +{{media:mts:wg430223_pcb_serial.jpg?400|MTS WG 430223 PCB serial}} 
 + 
 +<a2s> 
 +#----------------# 
 +|#-# .-. .-. .-. | 
 +|#-# '-' '-' '-'
 +#----------------# J4 
 + VCC  Tx  Rx GND 
 +</a2s>
  
 ^ Serial connection parameters\\ for MTS WG430223 | 57600, 8N1, 3.3V | ^ Serial connection parameters\\ for MTS WG430223 | 57600, 8N1, 3.3V |
Line 306: Line 353:
 -> [[docs:techref:bootloader]] -> [[docs:techref:bootloader]]
  
-==== Breed bootloader ==== 
-Original Breed for Xiaomi R3G can be used, but breedenter utility is required to enter the Breed. Breed web interface shouldn't be used for flashing firmware or EEPROM backup or recovery. Telnet should be used instead.  
  
-See //Notes -> Breed bootloader// section for links 
- 
-Breed settings for Beeline Smartbox Flash: 
- 
-^ Setting                    ^ Value                 ^ 
-| autoboot.command            boot flash 0x30001c  | 
  
 ===== Hardware mods ===== ===== Hardware mods =====
Line 325: Line 364:
 ==== OEM bootlog ==== ==== OEM bootlog ====
 <WRAP bootlog> <WRAP bootlog>
-<nowiki>COPY HERE THE BOOTLOG WITH THE ORIGINAL FIRMWARE</nowiki>+<nowiki> 
 +=================================================================== 
 +                MT7621   stage1 code 10:33:11 (ASIC) 
 +                CPU=50000000 HZ BUS=16666666 HZ 
 +================================================================== 
 +Change MPLL source from XTAL to CR... 
 +do MEMPLL setting.. 
 +MEMPLL Config : 0x11100000 
 +3PLL mode + External loopback 
 +=== XTAL-40Mhz === DDR-1200Mhz === 
 +PLL4 FB_DL: 0x4, 1/0 = 542/482 11000000 
 +PLL3 FB_DL: 0x9, 1/0 = 604/420 25000000 
 +PLL2 FB_DL: 0x14, 1/0 = 630/394 51000000 
 +do DDR setting..[00320381] 
 +Apply DDR3 Setting...(use customer AC) 
 +          0    8   16   24   32   40   48   56   64   72   80   88   96  104  112  120 
 +      -------------------------------------------------------------------------------- 
 +0000:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +0001:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +0002:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +0003:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +0004:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +0005:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +0006:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +0007:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +0008:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +0009:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +000A:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +000B:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +000C:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +000D:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +000E:   0    0    0    0    0    0    0    0    0    0    1    1    1    1    1    1 
 +000F:   0    0    0    0    1    1    1    1    1    1    1    1    1    1    1    0 
 +0010:   1    1    1    1    1    1    1    1    1    0    0    0    0    0    0    0 
 +0011:   1    1    1    1    0    0    0    0    0    0    0    0    0    0    0    0 
 +0012:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +0013:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +0014:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +0015:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +0016:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +0017:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +0018:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +0019:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +001A:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +001B:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +001C:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +001D:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +001E:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +001F:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
 +rank 0 coarse = 15 
 +rank 0 fine = 72 
 +B:|    0    0    0    0    0    0    0    0    1    1    1    0    0    0    0    0 
 +opt_dle value:9 
 +DRAMC_R0DELDLY[018]=00002120 
 +================================================================== 
 +                RX      DQS perbit delay software calibration 
 +================================================================== 
 +1.0-15 bit dq delay value 
 +================================================================== 
 +bit|      1  2  3  4  5  6  7  8  9 
 +-------------------------------------- 
 +0 |    7 7 7 10 6 8 8 6 3 6 
 +10 |    7 7 7 9 7 7 
 +-------------------------------------- 
 + 
 +================================================================== 
 +2.dqs window 
 +x=pass dqs delay value (min~max)center 
 +y=0-7bit DQ of every group 
 +input delay:DQS0 =32 DQS1 = 33 
 +================================================================== 
 +bit     DQS0     bit      DQS1 
 +0  (2~59)30  8  (1~58)29 
 +1  (1~63)32  9  (2~62)32 
 +2  (1~61)31  10  (1~62)31 
 +3  (1~63)32  11  (2~61)31 
 +4  (1~60)30  12  (1~65)33 
 +5  (1~60)30  13  (1~61)31 
 +6  (1~61)31  14  (2~64)33 
 +7  (1~63)32  15  (1~60)30 
 +================================================================== 
 +3.dq delay value last 
 +================================================================== 
 +bit|    0  1  2  3  4  5  6  7  8   9 
 +-------------------------------------- 
 +0 |    9 7 8 10 8 10 9 6 7 7 
 +10 |    9 9 7 11 7 10 
 +================================================================== 
 +================================================================== 
 +     TX  perbyte calibration 
 +================================================================== 
 +DQS loop = 15, cmp_err_1 = ffff0000 
 +dqs_perbyte_dly.last_dqsdly_pass[0]=15,  finish count=1 
 +dqs_perbyte_dly.last_dqsdly_pass[1]=15,  finish count=2 
 +DQ loop=15, cmp_err_1 = ffff0000 
 +dqs_perbyte_dly.last_dqdly_pass[0]=15,  finish count=1 
 +dqs_perbyte_dly.last_dqdly_pass[1]=15,  finish count=2 
 +byte:0, (DQS,DQ)=(8,8) 
 +byte:1, (DQS,DQ)=(8,8) 
 +20,data:88 
 +[EMI] DRAMC calibration passed 
 + 
 +=================================================================== 
 +                MT7621   stage1 code done 
 +                CPU=50000000 HZ BUS=16666666 HZ 
 +=================================================================== 
 + 
 + 
 +U-Boot 1.1.3 (Nov  2 2020 - 17:27:10) 0.00 
 + 
 +Board: Ralink APSoC DRAM:  128 MB 
 +relocate_code Pointer at: 87f88000 
 + 
 +Config XHCI 40M PLL 
 +****************************** 
 +Software System Reset Occurred 
 +****************************** 
 +Allocate 16 byte aligned buffer: 87fc85d0 
 +Enable NFI Clock 
 +# MTK NAND # : Use HW ECC 
 +NAND ID [EF F1 00 95 00] 
 +Device found in MTK table, ID: eff1, EXT_ID: 9500 
 +Support this Device in MTK table! eff1 
 +select_chip 
 +[NAND]select ecc bit:4, sparesize :64 spare_per_sector=16 
 +Signature matched and data read! 
 +load_fact_bbt success 1023 
 +load fact bbt success 
 +[mtk_nand] probe successfully! 
 +mtd->writesize=2048 mtd->oobsize=64,    mtd->erasesize=131072  devinfo.iowidth=8 
 +..============================================ 
 +Ralink UBoot Version: 5.0.0.4 
 +-------------------------------------------- 
 +ASIC MT7621A DualCore (MAC to MT7530 Mode) 
 +DRAM_CONF_FROM: Auto-Detection 
 +DRAM_TYPE: DDR3 
 +DRAM bus: 16 bit 
 +Xtal Mode=3 OCP Ratio=1/3 
 +Flash component: NAND Flash 
 +Date:Nov  2 2020  Time:17:27:10 
 +============================================ 
 +icache: sets:256, ways:4, linesz:32 ,total:32768 
 +dcache: sets:256, ways:4, linesz:32 ,total:32768 
 + 
 + ##### The CPU freq = 880 MHZ #### 
 + estimate memory size =128 Mbytes 
 +#Reset_MT7530 
 +set LAN/WAN LLLLW 
 + 
 +Please choose the operation: 
 +   1: Load system code to SDRAM via TFTP. 
 +   2: Load system code then write to Flash via TFTP. 
 +   3: Boot system code via Flash (default). 
 +   4: Entr boot command line interface. 
 +   7: Load Boot Loader code then write to Flash via Serial. 
 +   9: Load Boot Loader code then write to Flash via TFTP. 
 +default: 3 
 + 0 
 + 
 +3: System Boot system code via Flash[1]. 
 +## Booting image at be300000 ... 
 +   Verifying Trx ... OK 
 +   Image Name:   Linux Kernel Image 
 +   Image Type:   MIPS Linux Kernel Image (lzma compressed) 
 +   Data Size:    4232464 Bytes =  4 MB 
 +   Load Address: 81001000 
 +   Entry Point:  81801ae0 
 +.................................................................   Verifying Checksum ... OK 
 +   Uncompressing Kernel Image ... OK 
 +No initrd 
 +## Transferring control to Linux (at address 81801ae0) ... 
 +## Giving linux memsize in MB, 128 
 + 
 +Starting kernel ... 
 + 
 +for led test (red off) ... 
 + 
 +LINUX started... 
 + 
 + THIS IS ASIC 
 + 
 +SDK 5.0.S.0 
 +Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled 
 +serial8250: ttyS0 at MMIO 0x1e000d00 (irq = 27) is a 16550A 
 +serial8250: ttyS1 at MMIO 0x1e000c00 (irq = 26) is a 16550A 
 +Ralink gpio driver initialized 
 +SSFDC read-only Flash Translation layer 
 +MediaTek Nand driver init, version v2.1 Fix AHB virt2phys error 
 +Allocate 16 byte aligned buffer: 81b644b0 
 +Enable NFI Clock 
 +# MTK NAND # : Use HW ECC 
 +NAND ID [EF F1 00 95 00, 00009500] 
 +Device found in MTK table, ID: eff1, EXT_ID: 9500 
 +Support this Device in MTK table! eff1 
 +NAND device: Manufacturer ID: 0xef, Chip ID: 0xf1 (Unknown NAND 128MiB 3,3V 8-bit), 128MiB, page size: 2048, OOB size: 64 
 +[NAND]select ecc bit:4, sparesize :64 spare_per_sector=16 
 +Scanning device for bad blocks 
 +Signature matched and data read! 
 +load_fact_bbt success 1023 
 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
 +in find_rootfs_partitions  off=0x00300000 end=0x02300000 
 +The trx header magic offset 0x00420000 
 +MT7621-NAND: squash filesystem found at offset 0x00720000 
 +Found image1 partition off 0x00720000 size 0x01be0000 
 +in find_rootfs_partitions  off=0x02300000 end=0x04300000 
 +The trx header magic offset 0x00420000 
 +MT7621-NAND: squash filesystem found at offset 0x02720000 
 +Found image2 partition off 0x02720000 size 0x01be0000 
 +Creating 13 MTD partitions on "MT7621-NAND": 
 +0x000000000000-0x000007f80000 : "ALL" 
 +0x000000000000-0x000000100000 : "Bootloader" 
 +0x000000100000-0x000000200000 : "Config" 
 +0x000000200000-0x000000300000 : "Factory" 
 +0x000000300000-0x000002300000 : "Kernel" 
 +0x000000720000-0x000002300000 : "RootFS" 
 +0x000002300000-0x000004300000 : "Kernel2" 
 +0x000002720000-0x000004300000 : "RootFS2" 
 +0x000004300000-0x000004500000 : "glbcfg" 
 +0x000004500000-0x000004600000 : "board_data" 
 +0x000004600000-0x000004800000 : "glbcfg2" 
 +0x000004800000-0x000004900000 : "board_data2" 
 +0x000004900000-0x000007f80000 : "data" 
 +[mtk_nand] probe successfully! 
 +IMQ driver loaded successfully. (numdevs = 16, numqueues = 1) 
 +        Hooking IMQ after NAT on PREROUTING. 
 +        Hooking IMQ before NAT on POSTROUTING. 
 +PPP generic driver version 2.4.2 
 +PPP BSD Compression module registered 
 +NET: Registered protocol family 24 
 +PPTP driver version 0.8.5 
 +register mt_drv 
 + 
 +== pAd = c0281000, size = 7712896, Status=0 == 
 +pAd->PciHif.CSRBaseAddress =0xc0180000, csr_addr=0xc0180000! 
 +RTMPInitPCIeDevice():device_id=0x7615 
 +mt_pci_chip_cfg(): HWVer=0x8a10, FWVer=0x8a10, pAd->ChipID=0x7615 
 +mt_pci_chip_cfg(): HIF_SYS_REV=0x76150001 
 +AP Driver version-5.0.4.0 
 +RtmpChipOpsHook(223): Not support for HIF_MT yet! MACVersion=0x0 
 +mt7615_init()--> 
 +Use the default ePAeLNA bin image! 
 +Use the default /etc_ro/wlan/MT7615E_EEPROM1.bin bin image! 
 +<--mt7615_init() 
 +<-- RTMPAllocTxRxRingMemory, Status=0 
 +rdm_major = 253 
 +GMAC1_MAC_ADRH -- : 0x0000000c 
 +GMAC1_MAC_ADRL -- : 0x43288036 
 +Ralink APSoC Ethernet Driver Initilization. v3.1  1024 rx/tx descriptors allocated, mtu = 1500! 
 +GMAC1_MAC_ADRH -- : 0x0000000c 
 +GMAC1_MAC_ADRL -- : 0x43288036 
 +PROC INIT OK! 
 +ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 
 +ehci-pci: EHCI PCI platform driver 
 +ehci-platform: EHCI generic platform driver 
 +ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 
 +*****run project phy. 
 +FM_OUT value: u4FmOut = 0(0x00000000) 
 +FM_OUT value: u4FmOut = 0(0x00000000) 
 +FM_OUT value: u4FmOut = 0(0x00000000) 
 +FM_OUT value: u4FmOut = 0(0x00000000) 
 +FM_OUT value: u4FmOut = 0(0x00000000) 
 +FM_OUT value: u4FmOut = 0(0x00000000) 
 +FM_OUT value: u4FmOut = 0(0x00000000) 
 +FM_OUT value: u4FmOut = 0(0x00000000) 
 +FM_OUT value: u4FmOut = 0(0x00000000) 
 +FM_OUT value: u4FmOut = 0(0x00000000) 
 +FM_OUT value: u4FmOut = 0(0x00000000) 
 +FM_OUT value: u4FmOut = 0(0x00000000) 
 +FM_OUT value: u4FmOut = 0(0x00000000) 
 +FM_OUT value: u4FmOut = 0(0x00000000) 
 +FM_OUT value: u4FmOut = 0(0x00000000) 
 +FM_OUT value: u4FmOut = 0(0x00000000) 
 +FM_OUT value: u4FmOut = 0(0x00000000) 
 +FM_OUT value: u4FmOut = 0(0x00000000) 
 +FM_OUT value: u4FmOut = 0(0x00000000) 
 +FM_OUT value: u4FmOut = 0(0x00000000) 
 +xhci-hcd xhci-hcd: xHCI Host Controller 
 +xhci-hcd xhci-hcd: new USB bus registered, assigned bus number 1 
 +xhci-hcd xhci-hcd: irq 22, io mem 0x1e1c0000 
 +usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 
 +usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 
 +usb usb1: Product: xHCI Host Controller 
 +usb usb1: Manufacturer: Linux 3.10.14 xhci-hcd 
 +usb usb1: SerialNumber: xhci-hcd 
 +hub 1-0:1.0: USB hub found 
 +hub 1-0:1.0: 2 ports detected 
 +xhci-hcd xhci-hcd: xHCI Host Controller 
 +xhci-hcd xhci-hcd: new USB bus registered, assigned bus number 2 
 +usb usb2: New USB device found, idVendor=1d6b, idProduct=0003 
 +usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 
 +usb usb2: Product: xHCI Host Controller 
 +usb usb2: Manufacturer: Linux 3.10.14 xhci-hcd 
 +usb usb2: SerialNumber: xhci-hcd 
 +hub 2-0:1.0: USB hub found 
 +hub 2-0:1.0: 1 port detected 
 +usbcore: registered new interface driver usb-storage 
 +usbcore: registered new interface driver ums-alauda 
 +usbcore: registered new interface driver ums-sddr09 
 +usbcore: registered new interface driver ums-sddr55 
 +GACT probability on 
 +Mirror/redirect action on 
 +netem: version 1.3 
 +u32 classifier 
 +    Performance counters on 
 +    input device check on 
 +    Actions configured 
 +Netfilter messages via NETLINK v0.30. 
 +nfnl_acct: registering with nfnetlink. 
 +nf_conntrack version 0.5.0 (1843 buckets, 7372 max) 
 +ctnetlink v0.93: registering with nfnetlink. 
 +xt_time: kernel timezone is -0000 
 +ip_set: protocol 6 
 +ipip: IPv4 over IPv4 tunneling driver 
 +gre: GRE over IPv4 demultiplexor driver 
 +ip_gre: GRE over IPv4 tunneling driver 
 +ip_tables: (C) 2000-2006 Netfilter Core Team 
 +Type=Restricted Cone 
 +ipt_CLUSTERIP: ClusterIP Version 0.8 loaded successfully 
 +arp_tables: (C) 2002 David S. Miller 
 +TCP: cubic registered 
 +Initializing XFRM netlink socket 
 +NET: Registered protocol family 10 
 +ip6_tables: (C) 2000-2006 Netfilter Core Team 
 +sit: IPv6 over IPv4 tunneling driver 
 +ip6_gre: GRE over IPv6 tunneling driver 
 +NET: Registered protocol family 17 
 +Ebtables v2.0 registered 
 +l2tp_core: L2TP core driver, V2.0 
 +l2tp_ppp: PPPoL2TP kernel driver, V2.0 
 +l2tp_ip: L2TP IP encapsulation support (L2TPv3) 
 +l2tp_netlink: L2TP netlink interface 
 +l2tp_eth: L2TP ethernet pseudowire support (L2TPv3) 
 +l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3) 
 +8021q: 802.1Q VLAN Support v1.8 
 +Key type dns_resolver registered 
 +boot_part=1 /dev/mtdblock5 
 +Boot from /dev/mtdblock7 
 +VFS: Mounted root (squashfs filesystem) readonly on device 31:7. 
 +devtmpfs: mounted 
 +Freeing unused kernel memory: 236K (81b15000 - 81b50000) 
 +Arcadyan the primary config checkout succeed. 
 +Arcadyan the second config checkout succeed. 
 +arca.dbus.mng: is ready 
 +agent_handler(236):arca.dbus.misc: is ready 
 + 
 +Please press Enter to activate this console. MD5=[5db6aaf17d024c20b5025cbedbda1ef9] 
 +FFFFFFA4:FFFFFFCE:FFFFFFDA:65:43:21 
 +Raeth v3.1 (Tasklet) 
 +set CLK_CFG_0 = 0x40a00020!!!!!!!!!!!!!!!!!!1 
 +phy_free_head is 0xc1c000!!! 
 +phy_free_tail_phy is 0xc1dff0!!! 
 +txd_pool=a0c20000 phy_txd_pool=00C20000 
 +ei_local->skb_free start address is 0x86d326cc. 
 +free_txd: 00c20010, ei_local->cpu_ptr: 00C20000 
 + POOL  HEAD_PTR | DMA_PTR | CPU_PTR 
 +----------------+---------+-------- 
 +     0xa0c20000 0x00C20000 0x00C20000 
 + 
 +phy_qrx_ring = 0x00c1e000, qrx_ring = 0xa0c1e000 
 + 
 +phy_rx_ring0 = 0x00c28000, rx_ring[0] = 0xa0c28000 
 +MT7530 Reset Completed!! 
 +change HW-TRAP to 0x17c8f 
 +set LAN/WAN LLLLW 
 +GMAC1_MAC_ADRH -- : 0x0000a4ce 
 +GMAC1_MAC_ADRL -- : 0xda654321 
 +GDMA2_MAC_ADRH -- : 0x0000000c 
 +GDMA2_MAC_ADRL -- : 0x4328803a 
 +eth3: ===> VirtualIF_open 
 +MT7621 GE2 link rate to 1G 
 +CDMA_CSG_CFG = 81000000 
 +GDMA1_FWD_CFG = 20710000 
 +GDMA2_FWD_CFG = 20710000 
 +GDMA2_MAC_ADRH -- : 0x0000a4ce 
 +GDMA2_MAC_ADRL -- : 0xda4c5a54 
 +eth3: ===> VirtualIF_open 
 +ra0: ===> main_virtual_if_open 
 +load l1profile succeed! 
 +driver_own()::Try to Clear FW Own... 
 +driver_own()::Success to clear FW Own 
 +multi-profile merge success, en:1,pf1_num:2,pf2_num:4,total:
 +Speed 100 
 +ESW: Link Status Changed - Port3 Link UP , IF Name (eth2) , Speed (100) , Duplex (FULL) 
 +Open file "/etc/Wireless/RT2860/DBDC_card0.dat" to store DBDC cfg! (21) 
 +RT_CfgSetMacAddress : invalid length (0) 
 +RT_CfgSetMacAddress : invalid length (0) 
 +RT_CfgSetMacAddress : invalid length (0) 
 +RT_CfgSetMacAddress : invalid length (0) 
 +RT_CfgSetMacAddress : invalid length (0) 
 +E2pAccessMode=2 
 +SSID[0]=MTSRouter_2.4G_654321, EdcaIdx=0 
 +SSID[1]=MTSRouter_2G_654321-Guest, EdcaIdx=0 
 +SSID[2]=MTSRouter_5G_654321, EdcaIdx=0 
 +SSID[3]=MTSRouter_5G_654321-Guest, EdcaIdx=0 
 +SSID[4]=MTSRouter_5G_Public2, EdcaIdx=0 
 +SSID[5]=MTSRouter_5G_Public3, EdcaIdx=0 
 +DBDC Mode=1, eDBDC_mode = 1 
 +BSS0 PhyMode=14 
 +wmode_band_equal(): Band Equal! 
 +BSS1 PhyMode=14 
 +BSS2 PhyMode=49 
 +BSS3 PhyMode=49 
 +BSS4 PhyMode=49 
 +BSS5 PhyMode=49 
 +auto_ch_select_set_cfg(): BandIdx0, AutoChannelAtBootup=0, AutoChannelAlg = 0 
 +auto_ch_select_set_cfg(): BandIdx1, AutoChannelAtBootup=0, AutoChannelAlg = 0 
 +BandSteering=0 
 +BndStrgBssIdx=0;0;0;0;0;
 +[TxPower] BAND0: 100, BAND1: 100 
 +Power Boost (CCK, OFDM): RTMPSetProfileParameters[PowerUpCckOfdm] BAND1: (0)-(0)-(0)-(0)-(0)-(0)-(0) 
 +Power Boost (HT20): RTMPSetProfileParametersPower Boost (HT40): RTMPSetProfileParametersPower Boost (VHT20): RTMPSetProfileParametersPower Boost (VHT40): RTMPSetProfileParametersPower Boost (VHT80): RTMPSetProfileParametersPower Boost (VHT160): RTMPSetProfileParameters[PERCENTAGEenable] BAND0: 1, BAND1: 1 
 +[BFBACKOFFenable] BAND0: 0, BAND1: 0 
 +CalCacheApply = 0 
 +FragThreshold[0]=2346 
 +FragThreshold[1]=2346 
 +FragThreshold[2]=2346 
 +FragThreshold[3]=2346 
 +FragThreshold[4]=2346 
 +FragThreshold[5]=2346 
 +Valid=1 
 +APAifsn[0]=3 
 +APAifsn[1]=7 
 +APAifsn[2]=1 
 +APAifsn[3]=1 
 +Valid=1 
 +APAifsn[0]=3 
 +APAifsn[1]=7 
 +APAifsn[2]=1 
 +APAifsn[3]=1 
 +BSSAifsn[0]=3 
 +BSSAifsn[1]=7 
 +BSSAifsn[2]=2 
 +BSSAifsn[3]=2 
 +BSSAifsn[0]=3 
 +BSSAifsn[1]=7 
 +BSSAifsn[2]=2 
 +BSSAifsn[3]=2 
 +BSSAifsn[0]=3 
 +BSSAifsn[1]=7 
 +BSSAifsn[2]=2 
 +BSSAifsn[3]=2 
 +BSSAifsn[0]=3 
 +BSSAifsn[1]=7 
 +BSSAifsn[2]=2 
 +BSSAifsn[3]=2 
 +BSSAifsn[0]=3 
 +BSSAifsn[1]=7 
 +BSSAifsn[2]=2 
 +BSSAifsn[3]=2 
 +BSSAifsn[0]=3 
 +BSSAifsn[1]=7 
 +BSSAifsn[2]=2 
 +BSSAifsn[3]=2 
 +read_dscp_pri_param Setting Pri 7 for Dscp=52 
 +read_dscp_pri_param Setting Pri 7 for Dscp=52 
 +DfsZeroWait Support=0/
 +DfsZeroWaitCacTime=255/255 
 +RTMPSetProfileParameters(): ACSCheckTime[0]=0 seconds 
 +RTMPSetProfileParameters(): ACSCheckTime[1]=0 seconds 
 +read_etxbf: ETxBfEnCond = 0 
 +read_etxbf: BSSID[0] 
 +read_etxbf: MBSS[0] ETxBfEnCond = 0 
 +read_etxbf: ETxBfEnCond = 0 
 +read_etxbf: BSSID[1] 
 +read_etxbf: MBSS[1] ETxBfEnCond = 0 
 +read_etxbf: ETxBfEnCond = 1 
 +read_etxbf: BSSID[2] 
 +read_etxbf: MBSS[2] ETxBfEnCond = 1 
 +read_etxbf: ETxBfEnCond = 1 
 +read_etxbf: BSSID[3] 
 +read_etxbf: MBSS[3] ETxBfEnCond = 1 
 +read_etxbf: ETxBfEnCond = 1 
 +read_etxbf: BSSID[4] 
 +read_etxbf: MBSS[4] ETxBfEnCond = 1 
 +read_etxbf: ETxBfEnCond = 1 
 +read_etxbf: BSSID[5] 
 +read_etxbf: MBSS[5] ETxBfEnCond = 1 
 +[rtmp_read_ap_client_from_file] pf1=2 pf2=4 
 +AndesSendCmdMsg: Could not send in band command due to diablefRTMP_ADAPTER_MCU_SEND_IN_BAND_CMD 
 +AndesSendCmdMsg: Command type = ed, Extension command type = 48 
 +HT: WDEV[0] Ext Channel = ABOVE 
 +HT: WDEV[1] Ext Channel = ABOVE 
 +HT: WDEV[2] Ext Channel = ABOVE 
 +HT: WDEV[3] Ext Channel = ABOVE 
 +HT: WDEV[4] Ext Channel = ABOVE 
 +HT: WDEV[5] Ext Channel = ABOVE 
 +HT: greenap_cap = 0 
 +ICapMode = 0 
 +WtcSetMaxStaNum: BssidNum:6, MaxStaNum:119 (WdsNum:0, ApcliNum:2, MaxNumChipRept:16), MinMcastWcid:120 
 +Top Init Done! 
 +Use alloc_skb 
 +RX[0] DESC a0c14000 size = 16384 
 +RX[1] DESC a0c12000 size = 8192 
 +cut_through_init(): ct sw token number = 4095 
 +cut_through_token_list_init(): TokenList inited done!id_head/tail=0/4096 
 +cut_through_token_list_init(): 859c3f08,859c3f08 
 +cut_through_token_list_init(): TokenList inited done!id_head/tail=0/4096 
 +cut_through_token_list_init(): 859c3f18,859c3f18 
 +Hif Init Done! 
 +ctl->txq = c09d67b8 
 +ctl->rxq = c09d67c4 
 +ctl->ackq = c09d67d0 
 +ctl->kickq = c09d67dc 
 +ctl->tx_doneq = c09d67e8 
 +ctl->rx_doneq = c09d67f4 
 +Parsing patch header 
 +        Built date: 20180518100604a 
 + 
 +        Platform: ALPS 
 +        HW/SW version: 0x8a108a10 
 +        Patch version: 0x00000010 
 +        Target address: 0x80000, length: 11072 
 +patch is not ready && get semaphore success 
 +EventGenericEventHandler: CMD Success 
 +MtCmdPatchFinishReq 
 +EventGenericEventHandler: CMD Success 
 +release patch semaphore 
 +WfMcuHwInit: Before NICLoadFirmware, check ICapMode = 0 
 +Parsing CPU 0 fw tailer 
 +        Chip ID: 0x04 
 +        Eco version: 0x00 
 +        Region number: 0x00 
 +        Format version: 0x00 
 +        Ram version: _reserved_ 
 +        Built date: 20191220015534 
 +        Common crc: 0x0 
 +Parsing tailer region 0 
 +        Feature set: 0x01 
 +        Target address: 0x84000, Download size: 409600 
 +Parsing tailer region 1 
 +        Feature set: 0x01 
 +        Target address: 0x209c400, Download size: 48320 
 +EventGenericEventHandler: CMD Success 
 +EventGenericEventHandler: CMD Success 
 +MtCmdFwStartReq: override = 0x1, address = 0x84000 
 +EventGenericEventHandler: CMD Success 
 +Parsing CPU 1 fw tailer 
 +        Chip ID: 0x04 
 +        Eco version: 0x00 
 +        Region number: 0x00Speed 1000 
 +ESW: Link Status Changed - Port4 Link UP , IF Name (eth2) , Speed (1000) , Duplex (FULL) 
 + 
 +        Format version: 0x00 
 +        Ram version: _reserved_ 
 +        Built date: 20190415154149 
 +        Common crc: 0x0 
 +Parsing tailer region 0 
 +        Feature set: 0x01 
 +        Target address: 0x90000000, Download size: 122608 
 +EventGenericEventHandler: CMD Success 
 +MtCmdFwStartReq: override = 0x4, address = 0x0 
 +EventGenericEventHandler: CMD Success 
 +MCU Init Done! 
 +efuse_probe: efuse = 10000212 
 +RtmpChipOpsEepromHook::e2p_type=2, inf_Type=5 
 +RtmpEepromGetDefault::e2p_dafault=1 
 +RtmpChipOpsEepromHook: E2P type(2), E2pAccessMode = 2, E2P default = 1 
 +NVM is FLASH mode. dev_idx [0] FLASH OFFSET [0x0] 
 +NICReadEEPROMParameters: EEPROM 0x52 b300 
 +NICReadEEPROMParameters: EEPROM 0x52 b300 
 +Country Region from e2p = 101 
 +mt7615_antenna_default_reset(): TxPath = 4, RxPath = 4 
 +mt7615_antenna_default_reset(): DBDC BAND0 TxPath = 2, RxPath = 2 
 +mt7615_antenna_default_reset(): DBDC BAND1 TxPath = 2, RxPath = 2 
 +RcRadioInit(): DbdcMode=1, ConcurrentBand=2 
 +RcRadioInit(): pRadioCtrl=8738ef04,Band=0,rfcap=3,channel=1,PhyMode=2 extCha=0xf 
 +RcRadioInit(): pRadioCtrl=8738f20c,Band=1,rfcap=2,channel=36,PhyMode=1 extCha=0xf 
 +rcUpdateBandForBFMU     PhyCtrl[0].RadioCtrl.IsBfBand = 1 
 +rcUpdateBandForBFMU     PhyCtrl[1].RadioCtrl.IsBfBand = 0 
 +TxBfModuleEnCtrl:i = 0, pRadioCtrl->IsBfBand = 1 
 +TxBfModuleEnCtrl:i = 1, pRadioCtrl->IsBfBand = 0 
 +TxBfModuleEnCtrl:u1BfNum = 1, u1BfBitmap = 1, u1BfSelBand[0] = 0 
 +MtCmdSetDbdcCtrl:(ret = 0) 
 +MtSingleSkuLoadParam: RF_LOCKDOWN Feature OFF !!! 
 +MtBfBackOffLoadParam: RF_LOCKDOWN Feature OFF !!! 
 +EEPROM Init Done! 
 +mt_mac_init()--> 
 +mt7615_init_mac_cr()--> 
 +mt7615_init_mac_cr(): TMAC_TRCR0=0x82783c8c 
 +mt7615_init_mac_cr(): TMAC_TRCR1=0x82783c8c 
 +<--mt_mac_init() 
 +CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0 
 +CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0 
 +CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0 
 +MAC Init Done! 
 +MT7615BBPInit():BBP Initialization..... 
 +        Band 0: valid=1, isDBDC=0, Band=2, CBW=1, CentCh/PrimCh=1/1, prim_ch_idx=0, txStream=2 
 +        Band 1: valid=0, isDBDC=0, Band=0, CBW=0, CentCh/PrimCh=0/0, prim_ch_idx=0, txStream=0 
 +MT7615BBPInit() todo 
 +PHY Init Done! 
 +MtCmdSetMacTxRx:(ret = 0) 
 +MtCmdSetMacTxRx:(ret = 0) 
 +WifiFwdSet::disabled=0 
 +ap_ftkd> Initialize FT KDP Module... 
 +Main bssid = 00:00:00:00:00:00 
 +MtCmdSetMacTxRx:(ret = 0) 
 +MtCmdSetMacTxRx:(ret = 0) 
 +MtCmdSetMacTxRx:(ret = 0) 
 +MtCmdSetMacTxRx:(ret = 0) 
 +<==== mt_wifi_init, Status=0 
 +TxBfModuleEnCtrl:i = 0, pRadioCtrl->IsBfBand = 1 
 +TxBfModuleEnCtrl:i = 1, pRadioCtrl->IsBfBand = 0 
 +TxBfModuleEnCtrl:u1BfNum = 1, u1BfBitmap = 1, u1BfSelBand[0] = 0 
 +MtCmdEDCCACtrl: BandIdx: 0, EDCCACtrl: 1 
 +MtCmdEDCCACtrl: BandIdx: 1, EDCCACtrl: 1 
 +WtcSetMaxStaNum: BssidNum:6, MaxStaNum:119 (WdsNum:0, ApcliNum:2, MaxNumChipRept:16), MinMcastWcid:120 
 +RedInit: set CR4/N9 RED Enable to 1. 
 +RedInit: RED Initiailize Done. 
 +cp_support_is_enabled: set CR4 CP_SUPPORT to Mode 2. 
 +RTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP 
 +wifi_sys_open(), wdev idx = 0 
 +wdev_attr_update(): wdevId0 = a4:ce:da:4c:5a:55 
 +rcUpdateBandForBFMU     PhyCtrl[0].RadioCtrl.IsBfBand = 1 
 +rcUpdateBandForBFMU     PhyCtrl[1].RadioCtrl.IsBfBand = 0 
 +TxBfModuleEnCtrl:i = 0, pRadioCtrl->IsBfBand = 1 
 +TxBfModuleEnCtrl:i = 1, pRadioCtrl->IsBfBand = 0 
 +TxBfModuleEnCtrl:u1BfNum = 1, u1BfBitmap = 1, u1BfSelBand[0] = 0 
 +MtCmdSetDbdcCtrl:(ret = 0) 
 + [RadarStateCheck] RD_NORMAL_MODE 
 +mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload 
 +mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload 
 +MtCmdChannelSwitch: control_chl = 6,control_ch2=0, central_chl = 8 DBDCIdx= 0, Band= 0 
 +BW = 1,TXStream = 2, RXStream = 2, scan(0) 
 +[DfsCacNormalStart] Normal start. Enable MAC TX 
 +Caller: wlan_operate_init+0xa4/0x11c 
 +phy_mode=14, ch=6, wdev_type=1 
 +ht_cap->HtCapInfo: ldpc=0,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=1 
 +ht_cap->HtCapParm: mdpu_density=5, ampdu_factor=3 
 +AP inf up for ra_0(func_idx) OmacIdx=0 
 +AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOn 
 +ApAutoChannelAtBootUp-----------------> 
 +ApAutoChannelAtBootUp: AutoChannelBootup[0] = 0 
 +ApAutoChannelAtBootUp<----------------- 
 + ap_run_at_boot() : ACS is disable !! 
 +[PMF]APPMFInit:: apidx=0, MFPC=0, MFPR=0, SHA256=0 
 +wifi_sys_linkup(), wdev idx = 0 
 +wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:127 for WDEV_TYPE:
 + LinkToOmacIdx = 0, LinkToWdevType = 1 
 +bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 0, CmdBssInfoBmcRate.u2McTransmit = 0 
 +MtCmdSetDbdcCtrl:(ret = 0) 
 +UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 0 
 +APStartUpForMbss: BssIndex = 0 channel = 6 
 +MtCmdTxPowerDropCtrl: ucPowerDrop: 100, BandIdx: 0 
 +[update_mgmt_frame_power] disable mgmt pwr ctrl 
 +apidx 0 for WscUUIDInit 
 +Generate UUID for apidx(0) 
 +ExtEventBeaconLostHandler::FW LOG, Beacon lost (a4:ce:da:4c:5a:55), Reason 0x10 
 +  Beacon lost - AP disabled!!! 
 +APStop(), oper(1) bssid(0)=a4:ce:da:4c:5a:55 
 +wifi_sys_linkdown(), wdev idx = 0 
 +ExtEventBeaconLostHandler::FW LOG, Beacon lost (a4:ce:da:4c:5a:55), Reason 0x10 
 +  Beacon lost - AP disabled!!! 
 +bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 0, CmdBssInfoBmcRate.u2McTransmit = 0 
 +wifi_sys_close(), wdev idx = 0 
 +MtCmdFdFrameOffloadSet(): Enable = 0, OwnMacIdx = 0, WlanIdx = 0, Band = 0, Len = 0 
 +<=== APStop() 
 +AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOff 
 +rax0: ===> mbss_virtual_if_open 
 +RTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP 
 +wifi_sys_open(), wdev idx = 2 
 +wdev_attr_update(): wdevId2 = a6:ce:da:2c:5a:55 
 +rcUpdateBandForBFMU     PhyCtrl[0].RadioCtrl.IsBfBand = 0 
 +rcUpdateBandForBFMU     PhyCtrl[1].RadioCtrl.IsBfBand = 1 
 +TxBfModuleEnCtrl:i = 0, pRadioCtrl->IsBfBand = 0 
 +TxBfModuleEnCtrl:i = 1, pRadioCtrl->IsBfBand = 1 
 +TxBfModuleEnCtrl:u1BfNum = 1, u1BfBitmap = 1, u1BfSelBand[0] = 1 
 +MtCmdSetDbdcCtrl:(ret = 0) 
 + [RadarStateCheck] RD_NORMAL_MODE 
 +mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload 
 +mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload 
 +MtCmdChannelSwitch: control_chl = 36,control_ch2=0, central_chl = 42 DBDCIdx= 1, Band= 0 
 +BW = 2,TXStream = 2, RXStream = 2, scan(0) 
 +[DfsCacNormalStart] Normal start. Enable MAC TX 
 +Caller: wlan_operate_init+0xa4/0x11c 
 +phy_mode=49, ch=36, wdev_type=1 
 +ht_cap->HtCapInfo: ldpc=0,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=1 
 +ht_cap->HtCapParm: mdpu_density=5, ampdu_factor=3 
 +HcGetEdca(): wdev=0, hobj is not ready! 
 +:MtCmdPktBudgetCtrl: bssid(255),wcid(65535),type(0) 
 +AP inf up for ra_2(func_idx) OmacIdx=18 
 +AsicRadioOnOffCtrl(): DbdcIdx=1 RadioOn 
 +ApAutoChannelAtBootUp-----------------> 
 +ApAutoChannelAtBootUp: AutoChannelBootup[1] = 0 
 +ApAutoChannelAtBootUp<----------------- 
 + ap_run_at_boot() : ACS is disable !! 
 +[PMF]APPMFInit:: apidx=2, MFPC=0, MFPR=0, SHA256=0 
 +wifi_sys_linkup(), wdev idx = 2 
 +wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:127 for WDEV_TYPE:
 + LinkToOmacIdx = 12, LinkToWdevType = 1 
 +bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8192 
 +MtCmdSetDbdcCtrl:(ret = 0) 
 +UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 12 
 +APStartUpForMbss: BssIndex = 1 channel = 36 
 +MtCmdTxPowerDropCtrl: ucPowerDrop: 100, BandIdx: 1 
 +[update_mgmt_frame_power] disable mgmt pwr ctrl 
 +apidx 2 for WscUUIDInit 
 +Generate UUID for apidx(2) 
 +ExtEventBeaconLostHandler::FW LOG, Beacon lost (a6:ce:da:2c:5a:55), Reason 0x10 
 +  Beacon lost - AP disabled!!! 
 +APStop(), oper(1) bssid(2)=a6:ce:da:2c:5a:55 
 +wifi_sys_linkdown(), wdev idx = 2 
 +ExtEventBeaconLostHandler::FW LOG, Beacon lost (a6:ce:da:2c:5a:55), Reason 0x10 
 +  Beacon lost - AP disabled!!! 
 +bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 0, CmdBssInfoBmcRate.u2McTransmit = 0 
 +wifi_sys_close(), wdev idx = 2 
 +MtCmdFdFrameOffloadSet(): Enable = 0, OwnMacIdx = 18, WlanIdx = 0, Band = 1, Len = 0 
 +<=== APStop() 
 +AsicRadioOnOffCtrl(): DbdcIdx=1 RadioOff 
 +device eth2 entered promiscuous mode 
 +device eth3 entered promiscuous mode 
 +device ra0 entered promiscuous mode 
 +device rax0 entered promiscuous mode 
 +br0: port 4(rax0) entered forwarding state 
 +br0: port 4(rax0) entered forwarding state 
 +br0: port 3(ra0) entered forwarding state 
 +br0: port 3(ra0) entered forwarding state 
 +br0: port 2(eth3) entered forwarding state 
 +br0: port 2(eth3) entered forwarding state 
 +br0: port 1(eth2) entered forwarding state 
 +br0: port 1(eth2) entered forwarding state 
 +telnetd starting ... 
 +[as_load_key_cert] load CERT/KEY files OK 
 +[as_load_key_cert] load CERT/KEY files OK 
 +[as_load_key_cert] load CERT/KEY files OK 
 +[as_load_key_cert] load CERT/KEY files OK 
 +[as_load_key_cert] load CERT/KEY files OK 
 +[as_load_key_cert] load CERT/KEY files OK 
 +[as_load_key_cert] load CERT/KEY files OK 
 +[as_load_key_cert] load CERT/KEY files OK 
 +[as_load_key_cert] load CERT/KEY files OK 
 +[as_load_key_cert] load CERT/KEY files OK 
 +nf_conntrack: automatic helper assignment is deprecated and it will be removed soon. Use the iptables CT target to attach helpers instead. 
 + 
 + 
 + 
 +BusyBox v1.18.5 (2020-11-13 16:25:23 CST) built-in shell (ash) 
 +Enter 'help' for a list of built-in commands. 
 + 
 +~ # echo "FW=$(mng_cli get ARC_SYS_FWVersion).$(mng_cli get ARC_SYS_FWSubVersion 
 +)" 
 +FW=2.00.18MT201113 
 +~ # echo "FWdate=$(cat /usr/fwdate)" 
 +FWdate=Fri Nov 13 16:26:46 CST 2020 
 +~ # echo "Slot=$(uboot_env --get --name bootpartition)" 
 +Slot=1 
 +~ # echo "bootversion=$(uboot_env --get --name bootversion)" 
 +bootversion=5.0.0.4 
 +~ # echo "HW=$(arcbd get hw)" 
 +HW=01 
 +</nowiki>
 </WRAP>\\ </WRAP>\\
  
Line 331: Line 1126:
 <WRAP bootlog> <WRAP bootlog>
 <nowiki> <nowiki>
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    0.000000] Linux version 5.10.120 (builder@buildhost) (mipsel-openwrt-linux-musl-gcc (OpenWrt GCC 11.3.0 r19796-498c15376b) 11.3.0, GNU ld (GNU Binutils) 2.37) #0 SMP Mon Jun 13 07:26:23 2022 +=================================================================== 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] SoC Type: MediaTek MT7621 ver:1 eco:3 +                MT7621   stage1 code 10:33:11 (ASIC) 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] printk: bootconsole [early0] enabled +                CPU=50000000 HZ BUS=16666666 HZ 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] CPU0 revision is: 0001992f (MIPS 1004Kc) +================================================================== 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] MIPS: machine is MTS WG430223 +Change MPLL source from XTAL to CR... 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] Initrd not found or empty - disabling initrd +do MEMPLL setting.. 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] VPE topology {2,2} total 4 +MEMPLL Config : 0x11100000 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. +3PLL mode + External loopback 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes +=== XTAL-40Mhz === DDR-1200Mhz === 
-Mon Jun 13 21:04:29 2022 kern.warn kernel: [    0.000000] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. +PLL4 FB_DL: 0x4, 1/0 = 641/383 11000000 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] Zone ranges: +PLL3 FB_DL: 0x9, 1/0 = 550/474 25000000 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000]   Normal   [mem 0x0000000000000000-0x0000000007ffffff] +PLL2 FB_DL: 0x14, 1/0 = 643/381 51000000 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000]   HighMem  empty +do DDR setting..[00320381] 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] Movable zone start for each node +Apply DDR3 Setting...(use customer AC) 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] Early memory node ranges +          0    8   16   24   32   40   48   56   64   72   80   88   96  104  112  120 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000]   node   0: [mem 0x0000000000000000-0x0000000007ffffff] +      -------------------------------------------------------------------------------- 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000007ffffff] +0000:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.debug kernel: [    0.000000] On node 0 totalpages: 32768 +0001:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.debug kernel: [    0.000000]   Normal zone: 288 pages used for memmap +0002:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.debug kernel: [    0.000000]   Normal zone: 0 pages reserved +0003:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.debug kernel: [    0.000000]   Normal zone: 32768 pages, LIFO batch:7 +0004:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] percpu: Embedded 15 pages/cpu s30256 r8192 d22992 u61440 +0005:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.debug kernel: [    0.000000] pcpu-alloc: s30256 r8192 d22992 u61440 alloc=15*4096 +0006:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.debug kernel: [    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 +0007:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 32480 +0008:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    0.000000] Kernel command line: console=ttyS0,57600 rootfstype=squashfs,jffs2 +0009:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes, linear) +000A:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes, linear) +000B:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] Writing ErrCtl register=00042030 +000C:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] Readback ErrCtl register=00042030 +000D:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off +000E:   0    0    0    0    0    0    0    0    0    0    1    1    1    1    1    1 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] Memory: 118896K/131072K available (7028K kernel code, 626K rwdata, 1412K rodata, 1288K init, 244K bss, 12176K reserved, 0K cma-reserved, 0K highmem) +000F:   0    0    0    0    0    1    1    1    1    1    1    1    1    1    1    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 +0010:   1    1    1    1    1    1    1    1    1    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] rcu: Hierarchical RCU implementation. +0011:   1    1    1    1    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000]  Tracing variant of Tasks RCU enabled. +0012:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. +0013:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] NR_IRQS: 256 +0014:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] CPU Clock: 880MHz +0015:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000000] clocksource: GIC: mask: 0xffffffffffffffff max_cycles: 0xcaf478abb4, max_idle_ns: 440795247997 ns +0016:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.000012] sched_clock: 64 bits at 880MHz, resolution 1ns, wraps every 4398046511103ns +0017:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.015862] clocksource: MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 4343773742 ns +0018:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.033805] Calibrating delay loop... 586.13 BogoMIPS (lpj=2930688) +0019:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.106113] pid_max: default: 32768 minimum: 301 +001A:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.115419] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) +001B:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.129821] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) +001C:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.147969] rcu: Hierarchical SRCU implementation. +001D:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.157754] dyndbg: Ignore empty _ddebug table in a CONFIG_DYNAMIC_DEBUG_CORE build +001E:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.173306] smp: Bringing up secondary CPUs ... +001F:   0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.183002] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. +rank 0 coarse = 15 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.183013] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes +rank 0 fine = 80 
-Mon Jun 13 21:04:29 2022 kern.warn kernel: [    0.183024] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. +B:|    0    0    0    0    0    0    0    0    0    0    1    1    1    0    0    0 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.183097] CPU1 revision is: 0001992f (MIPS 1004Kc) +opt_dle value:11 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.243116] Synchronize counters for CPU 1: done. +DRAMC_R0DELDLY[018]=00002121 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.304777] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. +================================================================== 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.304786] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes +                RX      DQS perbit delay software calibration  
-Mon Jun 13 21:04:29 2022 kern.warn kernel: [    0.304794] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. +================================================================== 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.304842] CPU2 revision is: 0001992f (MIPS 1004Kc) +1.0-15 bit dq delay value 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.363967] Synchronize counters for CPU 2: done. +================================================================== 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.424311] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. +bit|      1  2  3  4  5  6  7  8  9 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.424320] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes +-------------------------------------- 
-Mon Jun 13 21:04:29 2022 kern.warn kernel: [    0.424328] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. +0 |    7 7 7 10 6 8 8 6 3 6  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.424378] CPU3 revision is: 0001992f (MIPS 1004Kc) +10 |    7 7 7 9 7 7  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.483543] Synchronize counters for CPU 3: done. +-------------------------------------- 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.543155] smp: Brought up 1 node, 4 CPUs + 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.555412] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns +================================================================== 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.574917] futex hash table entries: 1024 (order: 3, 32768 bytes, linear) +2.dqs window 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.588730] pinctrl core: initialized pinctrl subsystem +x=pass dqs delay value (min~max)center  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.601431] NET: Registered protocol family 16 +y=0-7bit DQ of every group 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.611310] thermal_sys: Registered thermal governor 'step_wise' +input delay:DQS0 =33 DQS1 = 33 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.612742] cpuidle: using governor teo +================================================================== 
-Mon Jun 13 21:04:29 2022 kern.debug kernel: [    0.647284FPU Affinity set after 11720 emulations +bit     DQS0     bit      DQS1 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.673652] clocksource: Switched to clocksource GIC +0  (1~60)30  8  (1~58)29 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.685815] NET: Registered protocol family 2 +1  (1~62)31  9  (2~62)32 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.694752] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear) +2  (1~62)31  10  (2~62)32 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.710035] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear) +3  (1~65)33  11  (2~60)31 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.726621] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear) +4  (1~61)31  12  (2~65)33 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.741805] TCP bind hash table entries: 1024 (order: 1, 8192 bytes, linear) +5  (1~61)31  13  (1~60)30 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.755744] TCP: Hash tables configured (established 1024 bind 1024) +6  (1~62)31  14  (2~62)32 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.768501] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) +7  (1~64)32  15  (1~61)31 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.781382] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) +================================================================== 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.795497] NET: Registered protocol family 1 +3.dq delay value last 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.804057] PCI: CLS 0 bytes, default 32 +================================================================== 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.814669] workingset: timestamp_bits=14 max_order=15 bucket_order=1 +bit|    0  1  2  3  4  5  6  7  8   9 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.831508] squashfs: version 4.0 (2009/01/31) Phillip Lougher +-------------------------------------- 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.842998] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. +0 |    10 9 9 10 8 10 10 7 7 7  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.863316] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) +10 |    8 9 7 12 8 9  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.879608] mt7621_gpio 1e000600.gpio: registering 32 gpios +================================================================== 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.890969] mt7621_gpio 1e000600.gpio: registering 32 gpios +================================================================== 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.902269] mt7621_gpio 1e000600.gpio: registering 32 gpios +     TX  perbyte calibration  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.914140] Serial: 8250/16550 driver, 16 ports, IRQ sharing enabled +================================================================== 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.930895] printk: console [ttyS0] disabled +DQS loop = 15, cmp_err_1 = ffff0000  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.939391] 1e000c00.uartlite: ttyS0 at MMIO 0x1e000c00 (irq = 19, base_baud = 3125000) is a 16550A +dqs_perbyte_dly.last_dqsdly_pass[0]=15,  finish count=1  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.957306] printk: console [ttyS0] enabled +dqs_perbyte_dly.last_dqsdly_pass[1]=15,  finish count=2  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.973849] printk: bootconsole [early0] disabled +DQ loop=15, cmp_err_1 = ffff0000 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    0.995601] nand: device found, Manufacturer ID: 0xef, Chip ID: 0xf1 +dqs_perbyte_dly.last_dqdly_pass[0]=15,  finish count=1  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    1.008325] nand: Winbond W29N01HV +dqs_perbyte_dly.last_dqdly_pass[1]=15,  finish count=2  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    1.015112] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 +byte:0, (DQS,DQ)=(8,8) 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    1.030195] mt7621-nand 1e003000.nand: ECC strength adjusted to 4 bits +byte:1, (DQS,DQ)=(8,8) 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    1.043304] 10 fixed-partitions partitions found on MTD device mt7621-nand +20,data:88 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    1.057000] Creating 10 MTD partitions on "mt7621-nand": +[EMI] DRAMC calibration passed 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    1.067587] 0x000000000000-0x000000100000 : "u-boot" + 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    1.083792] 0x000000100000-0x000000200000 : "u-boot-env" +=================================================================== 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    1.100672] 0x000000200000-0x000000300000 : "Factory" +                MT7621   stage1 code done  
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    1.116965] 0x000000300000-0x000002300000 : "firmware" +                CPU=50000000 HZ BUS=16666666 HZ 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    1.289069] 2 fixed-partitions partitions found on MTD device firmware +=================================================================== 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    1.302129] Creating 2 MTD partitions on "firmware": + 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    1.312049] 0x000000000000-0x000000440000 : "kernel" + 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    1.344317] 0x000000440000-0x000002000000 : "ubiconcat0" +U-Boot 1.1.3 (Nov  2 2020 - 17:27:10) 0.00 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    1.495468] 0x000002300000-0x000004300000 : "Firmware2" + 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    1.667797] 0x000004300000-0x000004500000 : "glbcfg" +Board: Ralink APSoC DRAM:  128 MB 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    1.688825] 0x000004500000-0x000004600000 : "board_data" +relocate_code Pointer at: 87f88000 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    1.705484] 0x000004600000-0x000004800000 : "glbcfg2" + 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    1.726717] 0x000004800000-0x000004900000 : "board_data2" +Config XHCI 40M PLL  
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    1.743451] 0x000004900000-0x000007f80000 : "ubiconcat1" +****************************** 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    2.036870] Concatenating MTD devices: +Software System Reset Occurred 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    2.044381] (0): "ubiconcat0" +****************************** 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    2.050279] (1): "ubiconcat1" +Allocate 16 byte aligned buffer: 87fc85d0 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    2.056184] into device "ubi-concat" +Enable NFI Clock 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    2.063332] 1 fixed-partitions partitions found on MTD device ubi-concat +# MTK NAND # : Use HW ECC 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    2.076681] Creating 1 MTD partitions on "ubi-concat": +NAND ID [EF F1 00 95 00] 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    2.086918] 0x000000000000-0x000005240000 : "ubi" +Device found in MTK table, ID: eff1, EXT_ID: 9500 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.555400] mt7530 mdio-bus:1f: MT7530 adapts as multi-chip module +Support this Device in MTK table! eff1  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.571768] mtk_soc_eth 1e100000.ethernet eth0: mediatek frame engine at 0xbe100000, irq 21 +select_chip 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.589667] i2c /dev entries driver +[NAND]select ecc bit:4, sparesize :64 spare_per_sector=16 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.598855] mt7621-pci 1e140000.pcie: host bridge /pcie@1e140000 ranges: +Signature matched and data read! 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.612268] mt7621-pci 1e140000.pcie:   No bus range found for /pcie@1e140000, using [bus 00-ff] +load_fact_bbt success 1023 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.629814] mt7621-pci 1e140000.pcie:      MEM 0x0060000000..0x006fffffff -> 0x0000000000 +load fact bbt success 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.646112] mt7621-pci 1e140000.pcie:       IO 0x001e160000..0x001e16ffff -> 0x0000000000 +[mtk_nand] probe successfully! 
-Mon Jun 13 21:04:29 2022 kern.err kernel: [    2.662503] mt7621-pci 1e140000.pcie: Parsing DT failed +mtd->writesize=2048 mtd->oobsize=64,    mtd->erasesize=131072  devinfo.iowidth=8 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.674979] NET: Registered protocol family 10 +..============================================  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.685585] Segment Routing with IPv6 +Ralink UBoot Version: 5.0.0.4 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.692976] NET: Registered protocol family 17 +--------------------------------------------  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.701958] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. +ASIC MT7621A DualCore (MAC to MT7530 Mode) 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.728218] 8021q: 802.1Q VLAN Support v1.8 +DRAM_CONF_FROM: Auto-Detection  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.739872] mt7530 mdio-bus:1f: MT7530 adapts as multi-chip module +DRAM_TYPE: DDR3  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.776526] mt7530 mdio-bus:1f lan2 (uninitialized): PHY [mt7530-0:02] driver [MediaTek MT7530 PHY] (irq=26) +DRAM bus: 16 bit 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.798676] mt7530 mdio-bus:1f lan1 (uninitialized): PHY [mt7530-0:03] driver [MediaTek MT7530 PHY] (irq=27) +Xtal Mode=3 OCP Ratio=1/3 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.820793] mt7530 mdio-bus:1f wan (uninitialized): PHY [mt7530-0:04] driver [MediaTek MT7530 PHY] (irq=28) +Flash component: NAND Flash 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.843049] mt7530 mdio-bus:1f: configuring for fixed/rgmii link mode +Date:Nov  2 2020  Time:17:27:10 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.859917] DSA: tree 0 setup +============================================  
-Mon Jun 13 21:04:29 2022 kern.err kernel: [    2.866249] rt2880-pinmux pinctrl: pcie is already enabled +icache: sets:256, ways:4, linesz:32 ,total:32768 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.877286] mt7621-pci 1e140000.pcie: host bridge /pcie@1e140000 ranges: +dcache: sets:256, ways:4, linesz:32 ,total:32768  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.890659] mt7621-pci 1e140000.pcie:   No bus range found for /pcie@1e140000, using [bus 00-ff] + 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.908198] mt7621-pci 1e140000.pcie:      MEM 0x0060000000..0x006fffffff -> 0x0000000000 + ##### The CPU freq = 880 MHZ ####  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.924503] mt7621-pci 1e140000.pcie:       IO 0x001e160000..0x001e16ffff -> 0x0000000000 + estimate memory size =128 Mbytes 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.940907] mt7621-pci-phy 1e149000.pcie-phy: PHY for 0xbe149000 (dual port = 1) +#Reset_MT7530 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    2.956072] mt7621-pci-phy 1e14a000.pcie-phy: PHY for 0xbe14a000 (dual port = 0) +set LAN/WAN LLLLW 
-Mon Jun 13 21:04:29 2022 kern.err kernel: [    2.971119] mt7621-pci 1e140000.pcie: failed to parse bus ranges property: -22 + 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.085770] mt7621-pci-phy 1e149000.pcie-phy: Xtal is 40MHz +Please choose the operation:  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.096887] mt7621-pci-phy 1e14a000.pcie-phy: Xtal is 40MHz +   1: Load system code to SDRAM via TFTP.  
-Mon Jun 13 21:04:29 2022 kern.err kernel: [    3.208212] mt7621-pci 1e140000.pcie: pcie0 no card, disable it (RST & CLK) +   2: Load system code then write to Flash via TFTP.  
-Mon Jun 13 21:04:29 2022 kern.err kernel: [    3.222075] mt7621-pci 1e140000.pcie: pcie2 no card, disable it (RST & CLK) +   3: Boot system code via Flash (default). 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.235948] mt7621-pci 1e140000.pcie: PCIE1 enabled +   4: Entr boot command line interface. 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.245676] mt7621-pci 1e140000.pcie: PCI coherence region base: 0x60000000, mask/settings: 0xf0000002 +   7: Load Boot Loader code then write to Flash via Serial.  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.264407] mt7621-pci 1e140000.pcie: PCI host bridge to bus 0000:00 +   9: Load Boot Loader code then write to Flash via TFTP.  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.277103] pci_bus 0000:00: root bus resource [io  0x1e160000-0x1e16ffff] +default: 3 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.290806] pci_bus 0000:00: root bus resource [mem 0x60000000-0x6fffffff] + 0  
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.304510] pci_bus 0000:00: root bus resource [bus 00-ff] +    
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.315468] pci_bus 0000:00: root bus resource [mem 0x60000000-0x6fffffff] (bus address [0x00000000-0x0fffffff]) +3: System Boot system code via Flash[0]. 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.335789] pci 0000:00:00.0: [0e8d:0801] type 01 class 0x060400 +## Booting image at bc300000 ... 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.347778] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x7fffffff] +   Verifying Trx ... OK 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.360268] pci 0000:00:00.0: reg 0x14: [mem 0x60200000-0x6020ffff+   Image Name:   MIPS OpenWrt Linux-5.10.127 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.372821] pci 0000:00:00.0: supports D1 +   Image Type:   MIPS Linux Kernel Image (uncompressed) 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.380811] pci 0000:00:00.0: PME# supported from D0 D1 D3hot +   Data Size:    2679498 Bytes =  2.6 MB 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.394049] pci 0000:01:00.0: [14c3:7615] type 00 class 0x000280 +   Load Address: 80001000 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.406094] pci 0000:01:00.0: reg 0x10: initial BAR value 0x00000000 invalid +   Entry Point:  80001000 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.420140] pci 0000:01:00.0: reg 0x10: [mem size 0x00100000 64bit] +.........................................   Verifying Checksum ... OK 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.432796] pci 0000:01:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x1 link at 0000:00:00.0 (capable of 4.000 Gb/s with 5.0 GT/s PCIe x1 link) +OK 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.463878] pci 0000:00:00.0: PCI bridge to [bus 01-ff] +No initrd 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.474312] pci 0000:00:00.0:   bridge window [io  0x0000-0x0fff] +## Transferring control to Linux (at address 80001000) ... 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.486452] pci 0000:00:00.0:   bridge window [mem 0x60000000-0x600fffff] +## Giving linux memsize in MB, 128 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.499979] pci 0000:00:00.0:   bridge window [mem 0x60100000-0x601fffff pref] + 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.514383] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01 +Starting kernel ... 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.527605] pci 0000:00:00.0: BAR 0: no space for [mem size 0x80000000] + 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.540781] pci 0000:00:00.0: BAR 0: failed to assign [mem size 0x80000000] +for led test (red off) ... 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.554658] pci 0000:00:00.0: BAR 8: assigned [mem 0x60000000-0x600fffff] + 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.568188] pci 0000:00:00.0: BAR 9: assigned [mem 0x60100000-0x601fffff pref+ 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.582584] pci 0000:00:00.0: BAR 1: assigned [mem 0x60200000-0x6020ffff] +OpenWrt kernel loader for MIPS based SoC 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.596118] pci 0000:00:00.0: BAR 7: assigned [io  0x1e160000-0x1e160fff] +Copyright (C) 2011 Gabor Juhos <juhosg@openwrt.org> 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.609653] pci 0000:01:00.0: BAR 0: assigned [mem 0x60000000-0x600fffff 64bit] +Decompressing kernel... done! 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.624226] pci 0000:00:00.0: PCI bridge to [bus 01] +Starting kernel at 80001000... 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.634134] pci 0000:00:00.0:   bridge window [io  0x1e160000-0x1e160fff] + 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.647657] pci 0000:00:00.0:   bridge window [mem 0x60000000-0x600fffff] +[    0.000000] Linux version 5.10.127 (builder@buildhost) (mipsel-openwrt-linux-musl-gcc (OpenWrt GCC 11.2.0 r19523-bfd070e7fa) 11.2.0, GNU ld (GNU Binutils) 2.37) #0 SMP Wed Jul 6 19:09:39 2022 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.661184] pci 0000:00:00.0:   bridge window [mem 0x60100000-0x601fffff pref] +[    0.000000] SoC Type: MediaTek MT7621 ver:1 eco:3 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    3.678600] UBI: auto-attach mtd12 +[    0.000000] printk: bootconsole [early0] enabled 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    3.685469] ubi0: attaching mtd12 +[    0.000000] CPU0 revision is: 0001992f (MIPS 1004Kc) 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    3.692379] mt7530 mdio-bus:1f: Link is Up - 1Gbps/Full - flow control rx/tx +[    0.000000] MIPS: machine is MTS WG430223 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    4.937520] ubi0: scanning is finished +[    0.000000] Initrd not found or empty - disabling initrd 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    4.961714] ubi0: attached mtd12 (name "ubi", size 82 MiB) +[    0.000000] VPE topology {2,2} total 4 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    4.972697] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes +[    0.000000] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    4.986398] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 +[    0.000000] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    4.999916] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 +[    0.000000] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    5.013787] ubi0: good PEBs: 658, bad PEBs: 0, corrupted PEBs: 0 +[    0.000000] Zone ranges: 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    5.025751] ubi0: user volume: 2, internal volumes: 1, max. volumes count: 128 +[    0.000000]   Normal   [mem 0x0000000000000000-0x0000000007ffffff] 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    5.040129] ubi0: max/mean erase counter: 3/1, WL threshold: 4096, image sequence number: 1651250830 +[    0.000000]   HighMem  empty 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    5.058310] ubi0: available PEBs: 0, total reserved PEBs: 658, PEBs reserved for bad PEB handling: 13 +[    0.000000] Movable zone start for each node 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    5.076719] ubi0: background thread "ubi_bgt0d" started, PID 460 +[    0.000000] Early memory node ranges 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    5.078526] block ubiblock0_0: created from ubi0:0(rootfs) +[    0.000000]   node   0: [mem 0x0000000000000000-0x0000000007ffffff] 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    5.099734] ubiblock: device ubiblock0_0 (rootfs) set to be root filesystem +[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000007ffffff] 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    5.120477] VFS: Mounted root (squashfs filesystem) readonly on device 254:0. +[    0.000000] percpu: Embedded 15 pages/cpu s30256 r8192 d22992 u61440 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    5.138988] Freeing unused kernel memory: 1288K +[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 32480 
-Mon Jun 13 21:04:29 2022 kern.warn kernel: [    5.148039] This architecture does not have kernel memory protection. +[    0.000000] Kernel command line: console=ttyS0,57600 rootfstype=squashfs,jffs2 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    5.160874] Run /sbin/init as init process +[    0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes, linear) 
-Mon Jun 13 21:04:29 2022 kern.debug kernel: [    5.169019]   with arguments: +[    0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes, linear) 
-Mon Jun 13 21:04:29 2022 kern.debug kernel: [    5.169025]     /sbin/init +[    0.000000] Writing ErrCtl register=00068800 
-Mon Jun 13 21:04:29 2022 kern.debug kernel: [    5.169030]   with environment: +[    0.000000] Readback ErrCtl register=00068800 
-Mon Jun 13 21:04:29 2022 kern.debug kernel: [    5.169035]     HOME=/ +[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off 
-Mon Jun 13 21:04:29 2022 kern.debug kernel: [    5.169040]     TERM=linux +[    0.000000] Memory: 119536K/131072K available (6999K kernel code, 630K rwdata, 824K rodata, 1260K init, 243K bss, 11536K reserved, 0K cma-reserved, 0K highmem) 
-Mon Jun 13 21:04:29 2022 user.info kernel: [    5.753042] init: Console is alive +[    0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 
-Mon Jun 13 21:04:29 2022 user.info kernel: [    5.760275] init: - watchdog - +[    0.000000] rcu: Hierarchical RCU implementation. 
-Mon Jun 13 21:04:29 2022 user.info kernel: [    6.606946] kmodloader: loading kernel modules from /etc/modules-boot.d/+[    0.000000]  Tracing variant of Tasks RCU enabled. 
-Mon Jun 13 21:04:29 2022 user.info kernel: [    6.741038] kmodloader: done loading kernel modules from /etc/modules-boot.d/+[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. 
-Mon Jun 13 21:04:29 2022 user.info kernel: [    6.764063] init: - preinit - +[    0.000000] NR_IRQS: 256 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    7.541715] random: jshn: uninitialized urandom read (4 bytes read) +[    0.000000] CPU Clock: 880MHz 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    7.624599] random: jshn: uninitialized urandom read (4 bytes read) +[    0.000000] clocksource: GIC: mask: 0xffffffffffffffff max_cycles: 0xcaf478abb4, max_idle_ns: 440795247997 ns 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    8.649764] random: jshn: uninitialized urandom read (4 bytes read) +[    0.000013] sched_clock: 64 bits at 880MHz, resolution 1ns, wraps every 4398046511103ns 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    8.702049] random: jshn: uninitialized urandom read (4 bytes read) +[    0.015856] clocksource: MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 4343773742 ns 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [    8.740239] random: jshn: uninitialized urandom read (4 bytes read) +[    0.033806] Calibrating delay loop... 586.13 BogoMIPS (lpj=2930688) 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    8.933592] mtk_soc_eth 1e100000.ethernet eth0: configuring for fixed/rgmii link mode +[    0.106127] pid_max: default: 32768 minimum: 301 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    8.949864] mtk_soc_eth 1e100000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx +[    0.115434] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    8.954173] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode +[    0.129838] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    8.980211] 8021q: adding VLAN 0 to HW filter on device lan1 +[    0.148118] rcu: Hierarchical SRCU implementation. 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [    8.994138] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready +[    0.157927] dyndbg: Ignore empty _ddebug table in a CONFIG_DYNAMIC_DEBUG_CORE build 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [   13.220523] UBIFS (ubi0:1): Mounting in unauthenticated mode +[    0.173495] smp: Bringing up secondary CPUs ... 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [   13.232167] UBIFS (ubi0:1): background thread "ubifs_bgt0_1" started, PID 588 +[    0.183235] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [   13.315426] UBIFS (ubi0:1): recovery needed +[    0.183245] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [   13.504537] UBIFS (ubi0:1): recovery completed +[    0.183256] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [   13.513498] UBIFS (ubi0:1): UBIFS: mounted UBI device 0, volume 1, name "rootfs_data" +[    0.183333] CPU1 revision is: 0001992f (MIPS 1004Kc) 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [   13.529099] UBIFS (ubi0:1): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes +[    0.243340] Synchronize counters for CPU 1: done. 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [   13.548836] UBIFS (ubi0:1): FS size: 74027008 bytes (70 MiB, 583 LEBs), journal size 3682304 bytes (3 MiB, 29 LEBs) +[    0.305504] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [   13.569616] UBIFS (ubi0:1): reserved for root: 3496478 bytes (3414 KiB) +[    0.305513] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [   13.582786] UBIFS (ubi0:1): media format: w5/r0 (latest is w5/r0), UUID F3142A9C-E2D1-4C76-9337-737444F51CA5, small LPT model +[    0.305520] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. 
-Mon Jun 13 21:04:29 2022 user.info kernel: [   13.612722] mount_root: switching to ubifs overlay +[    0.305568] CPU2 revision is: 0001992f (MIPS 1004Kc) 
-Mon Jun 13 21:04:29 2022 user.warn kernel: [   13.644623] urandom-seed: Seeding with /etc/urandom.seed +[    0.364467] Synchronize counters for CPU 2: done. 
-Mon Jun 13 21:04:29 2022 user.info kernel: [   13.850846] procd: - early - +[    0.424802] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. 
-Mon Jun 13 21:04:29 2022 user.info kernel: [   13.856968] procd: - watchdog - +[    0.424811] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes 
-Mon Jun 13 21:04:29 2022 user.info kernel: [   14.523919] procd: - watchdog - +[    0.424819] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. 
-Mon Jun 13 21:04:29 2022 user.info kernel: [   14.534873] procd: - ubus - +[    0.424871] CPU3 revision is: 0001992f (MIPS 1004Kc) 
-Mon Jun 13 21:04:29 2022 kern.warn kernel: [   14.622125] urandom_read_iter: 5 callbacks suppressed +[    0.484049] Synchronize counters for CPU 3: done. 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [   14.622137] random: ubusd: uninitialized urandom read (4 bytes read) +[    0.543658] smp: Brought up 1 node, 4 CPUs 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [   14.647185] random: ubusd: uninitialized urandom read (4 bytes read) +[    0.556001] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [   14.664876] random: ubusd: uninitialized urandom read (4 bytes read) +[    0.575510] futex hash table entries: 1024 (order: 3, 32768 bytes, linear) 
-Mon Jun 13 21:04:29 2022 user.info kernel: [   14.681872] procd: - init - +[    0.589338] pinctrl core: initialized pinctrl subsystem 
-Mon Jun 13 21:04:29 2022 user.info kernel: [   15.485319] kmodloader: loading kernel modules from /etc/modules.d/+[    0.602048] NET: Registered protocol family 16 
-Mon Jun 13 21:04:29 2022 user.info kernel: [   15.798640] urngd: v1.0.2 started. +[    0.612031] thermal_sys: Registered thermal governor 'step_wise' 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [   15.880122] Loading modules backported from Linux version v5.15.33-0-g06f50ca83ace +[    0.613370] cpuidle: using governor teo 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [   15.895250] Backport generated by backports.git v5.15.33-1-0-g183c4ab2 +[    0.636006rt2880-pinmux pinctrl: there is not valid maps for state default 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [   16.018130] random: crng init done +[    0.684099] clocksource: Switched to clocksource GIC 
-Mon Jun 13 21:04:29 2022 kern.notice kernel: [   16.025080] random: 23 urandom warning(s) missed due to ratelimiting +[    0.695857] NET: Registered protocol family 2 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [   16.128587] mt7621-pci 1e140000.pcie: bus=1 slot=0 irq=23 +[    0.704836] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear) 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [   16.139413] pci 0000:00:00.0: enabling device (0006 -> 0007) +[    0.720276] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear) 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [   16.150728] mt7615e 0000:01:00.0: enabling device (0000 -> 0002) +[    0.736965] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear) 
-Mon Jun 13 21:04:29 2022 kern.debug kernel: [   16.175509ieee80211 phy0: Selected rate control algorithm 'minstrel_ht' +[    0.752111] TCP bind hash table entries: 1024 (order: 1, 8192 bytes, linear) 
-Mon Jun 13 21:04:29 2022 kern.debug kernel: [   16.180535] ieee80211 phy1: Selected rate control algorithm 'minstrel_ht' +[    0.766080] TCP: Hash tables configured (established 1024 bind 1024) 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [   16.195545] mt7615e 0000:01:00.0: HW/SW Version: 0x8a108a10, Build Time: 20180518100604a +[    0.778848] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [   16.195545+[    0.791749] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [   16.260893] PPP generic driver version 2.4.2 +[    0.805861] NET: Registered protocol family 1 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [   16.272733] NET: Registered protocol family 24 +[    0.814455] PCI: CLS 0 bytes, default 32 
-Mon Jun 13 21:04:29 2022 user.info kernel: [   16.294791] kmodloader: done loading kernel modules from /etc/modules.d/+[    0.824605] workingset: timestamp_bits=14 max_order=15 bucket_order=1 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [   16.502722] mt7615e 0000:01:00.0: N9 Firmware Version: _reserved_, Build Time: 20200814163649 +[    0.841651] squashfs: version 4.0 (2009/01/31) Phillip Lougher 
-Mon Jun 13 21:04:29 2022 kern.info kernel: [   16.609941] mt7615e 0000:01:00.0: CR4 Firmware Version: _reserved_, Build Time: 20190121161307 +[    0.853131] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. 
-Mon Jun 13 21:04:30 2022 authpriv.info dropbear[1129]: Not backgrounding +[    0.873441] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) 
-Mon Jun 13 21:04:32 2022 user.notice : Added device handler type: bonding +[    0.889822] mt7621_gpio 1e000600.gpio: registering 32 gpios 
-Mon Jun 13 21:04:32 2022 user.notice : Added device handler type: 8021ad +[    0.901199] mt7621_gpio 1e000600.gpio: registering 32 gpios 
-Mon Jun 13 21:04:32 2022 user.notice : Added device handler type: 8021q +[    0.912557] mt7621_gpio 1e000600.gpio: registering 32 gpios 
-Mon Jun 13 21:04:32 2022 user.notice : Added device handler type: macvlan +[    0.924619] Serial: 8250/16550 driver, 16 ports, IRQ sharing enabled 
-Mon Jun 13 21:04:32 2022 user.notice : Added device handler type: veth +[    0.941446] printk: console [ttyS0] disabled 
-Mon Jun 13 21:04:32 2022 user.notice : Added device handler type: bridge +[    0.949925] 1e000c00.uartlite: ttyS0 at MMIO 0x1e000c00 (irq = 19, base_baud = 3125000) is a 16550A 
-Mon Jun 13 21:04:32 2022 user.notice : Added device handler type: Network device +[    0.967835] printkconsole [ttyS0] enabled 
-Mon Jun 13 21:04:32 2022 user.notice : Added device handler type: tunnel +[    0.967835] printk: console [ttyS0] enabled 
-Mon Jun 13 21:04:32 2022 cron.err crond[1396]: crond (busybox 1.35.0) started, log level 5 +[    0.984384] printkbootconsole [early0] disabled 
-Mon Jun 13 21:04:32 2022 daemon.notice wpa_supplicant[1250]: Successfully initialized wpa_supplicant +[    0.984384] printk: bootconsole [early0] disabled 
-Mon Jun 13 21:04:33 2022 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/network +[    1.005801] mt7621-nand 1e003000.nandUsing programmed access timing: 31c07388 
-Mon Jun 13 21:04:33 2022 user.notice ucitrack: Setting up /etc/config/network reload dependency on /etc/config/wireless +[    1.020685] nand: device found, Manufacturer ID: 0xef, Chip ID: 0xf1 
-Mon Jun 13 21:04:33 2022 user.notice ucitrack: Setting up /etc/config/luci-splash reload dependency on /etc/config/firewall +[    1.033368] nand: Winbond W29N01HV 
-Mon Jun 13 21:04:33 2022 user.notice ucitrack: Setting up /etc/config/qos reload dependency on /etc/config/firewall +[    1.040219] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 
-Mon Jun 13 21:04:33 2022 user.notice ucitrack: Setting up /etc/config/miniupnpd reload dependency on /etc/config/firewall +[    1.055300] mt7621-nand 1e003000.nand: ECC strength adjusted to 4 bits 
-Mon Jun 13 21:04:33 2022 user.notice ucitrack: Setting up /etc/config/odhcpd reload dependency on /etc/config/dhcp +[    1.068336] mt7621-nand 1e003000.nandUsing programmed access timing21005134 
-Mon Jun 13 21:04:34 2022 user.notice ucitrack: Setting up non-init /etc/config/fstab reload handler: /sbin/block mount +[    1.082890] mt7621-nand 1e003000.nandUsing programmed access timing: 21005134 
-Mon Jun 13 21:04:34 2022 user.notice ucitrack: Setting up /etc/config/system reload trigger for non-procd /etc/init.d/led +[    1.097445] Scanning device for bad blocks 
-Mon Jun 13 21:04:34 2022 user.notice ucitrack: Setting up /etc/config/luci_statistics reload dependency on /etc/config/system +[    1.749717] 10 fixed-partitions partitions found on MTD device mt7621-nand 
-Mon Jun 13 21:04:34 2022 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/system +[    1.763406] Creating 10 MTD partitions on "mt7621-nand": 
-Mon Jun 13 21:04:34 2022 daemon.warn netifd: You have delegated IPv6-prefixes but haven't assigned them to any interface. Did you forget to set option ip6assign on your lan-interfaces? +[    1.773988] 0x000000000000-0x000000100000 : "u-boot" 
-Mon Jun 13 21:04:34 2022 kern.info kernel: [   23.071213] mtk_soc_eth 1e100000.ethernet eth0: Link is Down +[    1.784891] 0x000000100000-0x000000200000 : "u-boot-env" 
-Mon Jun 13 21:04:35 2022 kern.info kernel: [   23.095270] mtk_soc_eth 1e100000.ethernet eth0: configuring for fixed/rgmii link mode +[    1.796612] 0x000000200000-0x000000300000 : "Factory" 
-Mon Jun 13 21:04:35 2022 kern.info kernel: [   23.111343] mtk_soc_eth 1e100000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx +[    1.807797] 0x000000300000-0x000002300000 : "firmware" 
-Mon Jun 13 21:04:35 2022 kern.info kernel: [   23.128556] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready +[    1.819121] 2 fixed-partitions partitions found on MTD device firmware 
-Mon Jun 13 21:04:35 2022 kern.info kernel: [   23.144301] device eth0 entered promiscuous mode +[    1.832145] Creating 2 MTD partitions on "firmware": 
-Mon Jun 13 21:04:35 2022 kern.info kernel: [   23.154234] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode +[    1.842035] 0x000000000000-0x000000440000 : "kernel" 
-Mon Jun 13 21:04:35 2022 kern.info kernel: [   23.168267] 8021q: adding VLAN 0 to HW filter on device lan1 +[    1.852865] 0x000000440000-0x000002000000 : "ubiconcat0" 
-Mon Jun 13 21:04:35 2022 kern.info kernel: [   23.183364] br-lan: port 1(lan1) entered blocking state +[    1.864565] 0x000002300000-0x000004300000 : "Firmware2" 
-Mon Jun 13 21:04:35 2022 kern.info kernel: [   23.194020] br-lan: port 1(lan1) entered disabled state +[    1.876076] 0x000004300000-0x000004500000 : "glbcfg" 
-Mon Jun 13 21:04:35 2022 kern.info kernel: [   23.205600] device lan1 entered promiscuous mode +[    1.886959] 0x000004500000-0x000004600000 : "board_data" 
-Mon Jun 13 21:04:35 2022 daemon.notice netifd: Interface 'lan' is enabled +[    1.898520] 0x000004600000-0x000004800000 : "glbcfg2" 
-Mon Jun 13 21:04:35 2022 daemon.notice netifd: Interface 'LAN6' is enabled +[    1.909684] 0x000004800000-0x000004900000 : "board_data2" 
-Mon Jun 13 21:04:35 2022 kern.info kernel: [   23.229841] mt7530 mdio-bus:1f lan2: configuring for phy/gmii link mode +[    1.921478] 0x000004900000-0x000007f80000 : "ubiconcat1" 
-Mon Jun 13 21:04:35 2022 kern.info kernel: [   23.243788] 8021q: adding VLAN 0 to HW filter on device lan2 +[    1.940869] Concatenating MTD devices: 
-Mon Jun 13 21:04:35 2022 kern.info kernel: [   23.259307] br-lan: port 2(lan2) entered blocking state +[    1.948383] (0): "ubiconcat0" 
-Mon Jun 13 21:04:35 2022 kern.info kernel: [   23.269901] br-lan: port 2(lan2) entered disabled state +[    1.954295] (1): "ubiconcat1" 
-Mon Jun 13 21:04:35 2022 kern.info kernel: [   23.282481] device lan2 entered promiscuous mode +[    1.960184] into device "ubi-concat" 
-Mon Jun 13 21:04:35 2022 daemon.notice netifdInterface 'loopback' is enabled +[    1.967367] 1 fixed-partitions partitions found on MTD device ubi-concat 
-Mon Jun 13 21:04:35 2022 daemon.notice netifdInterface 'loopback' is setting up now +[    1.980703] Creating 1 MTD partitions on "ubi-concat": 
-Mon Jun 13 21:04:35 2022 daemon.notice netifd: Interface 'loopback' is now up +[    1.990937] 0x000000000000-0x000005240000 : "ubi" 
-Mon Jun 13 21:04:35 2022 daemon.notice netifdNetwork device 'eth0' link is up +[    2.045676] mt7530 mdio-bus:1f: MT7530 adapts as multi-chip module 
-Mon Jun 13 21:04:35 2022 daemon.notice netifdNetwork device 'lo' link is up +[    2.063488] mtk_soc_eth 1e100000.ethernet eth0: mediatek frame engine at 0xbe100000, irq 21 
-Mon Jun 13 21:04:35 2022 daemon.notice netifdInterface 'loopback' has link connectivity+[    2.081045] mtk_soc_eth 1e100000.ethernet wanmediatek frame engine at 0xbe100000, irq 21 
 +[    2.098496] i2c /dev entries driver 
 +[    2.108177] mt7621-pci 1e140000.pcie: host bridge /pcie@1e140000 ranges: 
 +[    2.121571] mt7621-pci 1e140000.pcie:   No bus range found for /pcie@1e140000, using [bus 00-ff] 
 +[    2.139098] mt7621-pci 1e140000.pcie:      MEM 0x0060000000..0x006fffffff -> 0x0000000000 
 +[    2.155416] mt7621-pci 1e140000.pcie:       IO 0x001e160000..0x001e16ffff -> 0x0000000000 
 +[    2.171803] mt7621-pci 1e140000.pcie: Parsing DT failed 
 +[    2.184680] NET: Registered protocol family 10 
 +[    2.195421] Segment Routing with IPv6 
 +[    2.202811] NET: Registered protocol family 17 
 +[    2.211821] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. 
 +[    2.238040] 8021q: 802.1Q VLAN Support v1.8 
 +[    2.249822] mt7530 mdio-bus:1f: MT7530 adapts as multi-chip module 
 +[    2.286096] mt7530 mdio-bus:1f lan2 (uninitialized): PHY [mt7530-0:02] driver [MediaTek MT7530 PHY] (irq=26) 
 +[    2.308183] mt7530 mdio-bus:1f lan1 (uninitialized): PHY [mt7530-0:03] driver [MediaTek MT7530 PHY] (irq=27) 
 +[    2.331062] mt7530 mdio-bus:1f: configuring for fixed/rgmii link mode 
 +[    2.347860] DSA: tree 0 setup 
 +[    2.354127] rt2880-pinmux pinctrl: pcie is already enabled 
 +[    2.365148] mt7621-pci 1e140000.pcie: host bridge /pcie@1e140000 ranges: 
 +[    2.378510] mt7621-pci 1e140000.pcie:   No bus range found for /pcie@1e140000, using [bus 00-ff] 
 +[    2.396046] mt7621-pci 1e140000.pcie:      MEM 0x0060000000..0x006fffffff -> 0x0000000000 
 +[    2.412336] mt7621-pci 1e140000.pcie:       IO 0x001e160000..0x001e16ffff -> 0x0000000000 
 +[    2.428734] mt7621-pci-phy 1e149000.pcie-phy: PHY for 0xbe149000 (dual port = 1) 
 +[    2.443828] mt7621-pci-phy 1e14a000.pcie-phy: PHY for 0xbe14a000 (dual port = 0) 
 +[    2.458824] mt7621-pci 1e140000.pcie: failed to parse bus ranges property: -22 
 +[    2.573380] mt7621-pci-phy 1e149000.pcie-phy: Xtal is 40MHz 
 +[    2.584505] mt7621-pci-phy 1e14a000.pcie-phy: Xtal is 40MHz 
 +[    2.695742] mt7621-pci 1e140000.pcie: pcie0 no card, disable it (RST & CLK) 
 +[    2.709609] mt7621-pci 1e140000.pcie: pcie2 no card, disable it (RST & CLK) 
 +[    2.723476] mt7621-pci 1e140000.pcie: PCIE1 enabled 
 +[    2.733192] mt7621-pci 1e140000.pcie: PCI coherence region base: 0x60000000, mask/settings: 0xf0000002 
 +[    2.751892] mt7621-pci 1e140000.pcie: PCI host bridge to bus 0000:00 
 +[    2.764576] pci_bus 0000:00: root bus resource [io  0x1e160000-0x1e16ffff] 
 +[    2.778271] pci_bus 0000:00: root bus resource [mem 0x60000000-0x6fffffff] 
 +[    2.791960] pci_bus 0000:00: root bus resource [bus 00-ff] 
 +[    2.802886] pci_bus 0000:00: root bus resource [mem 0x60000000-0x6fffffff] (bus address [0x00000000-0x0fffffff]) 
 +[    2.823197] pci 0000:00:00.0: [0e8d:0801] type 01 class 0x060400 
 +[    2.835187] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x7fffffff] 
 +[    2.847670] pci 0000:00:00.0: reg 0x14: [mem 0x60100000-0x6010ffff
 +[    2.860214] pci 0000:00:00.0: supports D1 
 +[    2.868199] pci 0000:00:00.0: PME# supported from D0 D1 D3hot 
 +[    2.881300] pci 0000:01:00.0: [14c3:7615] type 00 class 0x000280 
 +[    2.893331] pci 0000:01:00.0: reg 0x10: initial BAR value 0x00000000 invalid 
 +[    2.907381] pci 0000:01:00.0: reg 0x10: [mem size 0x00100000 64bit] 
 +[    2.920032] pci 0000:01:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x1 link at 0000:00:00.0 (capable of 4.000 Gb/s with 5.0 GT/s PCIe x1 link) 
 +[    2.950959] pci 0000:00:00.0: PCI bridge to [bus 01-ff] 
 +[    2.961391] pci 0000:00:00.0:   bridge window [io  0x0000-0x0fff] 
 +[    2.973533] pci 0000:00:00.0:   bridge window [mem 0x60000000-0x600fffff] 
 +[    2.987060] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01 
 +[    3.000272] pci 0000:00:00.0: BAR 0: no space for [mem size 0x80000000] 
 +[    3.013446] pci 0000:00:00.0: BAR 0: failed to assign [mem size 0x80000000] 
 +[    3.027323] pci 0000:00:00.0: BAR 8: assigned [mem 0x60000000-0x600fffff] 
 +[    3.040840] pci 0000:00:00.0: BAR 1: assigned [mem 0x60100000-0x6010ffff
 +[    3.054368] pci 0000:00:00.0: BAR 7: assigned [io  0x1e160000-0x1e160fff] 
 +[    3.067892] pci 0000:01:00.0: BAR 0: assigned [mem 0x60000000-0x600fffff 64bit] 
 +[    3.082455] pci 0000:00:00.0: PCI bridge to [bus 01] 
 +[    3.092348] pci 0000:00:00.0:   bridge window [io  0x1e160000-0x1e160fff] 
 +[    3.105869] pci 0000:00:00.0:   bridge window [mem 0x60000000-0x600fffff] 
 +[    3.121700] UBI: auto-attach mtd12 
 +[    3.128554] ubi0: attaching mtd12 
 +[    3.135509] mt7530 mdio-bus:1f: Link is Up - 1Gbps/Full - flow control rx/tx 
 +[    3.976449] ubi0: scanning is finished 
 +[    4.000811] ubi0: attached mtd12 (name "ubi", size 82 MiB) 
 +[    4.011808] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes 
 +[    4.025513] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 
 +[    4.039037] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 
 +[    4.052898] ubi0: good PEBs: 658, bad PEBs: 0, corrupted PEBs: 0 
 +[    4.064874] ubi0: user volume: 2, internal volumes: 1, max. volumes count: 128 
 +[    4.079262] ubi0: max/mean erase counter: 2/0, WL threshold: 4096, image sequence number: 1657134579 
 +[    4.097452] ubi0: available PEBs: 0, total reserved PEBs: 658, PEBs reserved for bad PEB handling: 13 
 +[    4.115846] ubi0: background thread "ubi_bgt0d" started, PID 459 
 +[    4.118343] block ubiblock0_0: created from ubi0:0(rootfs) 
 +[    4.138828] ubiblock: device ubiblock0_0 (rootfs) set to be root filesystem 
 +[    4.160701] VFS: Mounted root (squashfs filesystem) readonly on device 254:0. 
 +[    4.179046] Freeing unused kernel memory: 1260K 
 +[    4.188136] This architecture does not have kernel memory protection. 
 +[    4.200980] Run /sbin/init as init process 
 +[    4.761693] init: Console is alive 
 +[    4.768941] init: - watchdog - 
 +[    5.462669] kmodloader: loading kernel modules from /etc/modules-boot.d/
 +[    5.590081] kmodloader: done loading kernel modules from /etc/modules-boot.d/
 +[    5.614454] init: - preinit - 
 +[    6.390464] random: jshn: uninitialized urandom read (4 bytes read) 
 +[    6.474850] random: jshn: uninitialized urandom read (4 bytes read) 
 +[    7.022554] random: jshn: uninitialized urandom read (4 bytes read) 
 +[    7.358687] mtk_soc_eth 1e100000.ethernet eth0: configuring for fixed/rgmii link mode 
 +[    7.374926] mtk_soc_eth 1e100000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx 
 +[    7.384585] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode 
 +[    7.405255] 8021q: adding VLAN 0 to HW filter on device lan1 
 +[    7.419641] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready 
 +[    7.447872] randomprocduninitialized urandom read (4 bytes read) 
 +Press the [f] key and hit [enter] to enter failsafe mode 
 +Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level 
 +[    8.982859] mt7530 mdio-bus:1f lan1: Link is Up - 100Mbps/Full - flow control off 
 +[    8.998033] IPv6: ADDRCONF(NETDEV_CHANGE): lan1: link becomes ready 
 +[   11.722083] UBIFS (ubi0:1): Mounting in unauthenticated mode 
 +[   11.733681] UBIFS (ubi0:1): background thread "ubifs_bgt0_1" started, PID 586 
 +[   11.816839] UBIFS (ubi0:1): recovery needed 
 +[   11.980728] UBIFS (ubi0:1): recovery completed 
 +[   11.989767] UBIFS (ubi0:1): UBIFS: mounted UBI device 0, volume 1, name "rootfs_data" 
 +[   12.005377] UBIFS (ubi0:1): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes 
 +[   12.025116] UBIFS (ubi0:1): FS size: 75804672 bytes (72 MiB, 597 LEBs), journal size 3809280 bytes (3 MiB, 30 LEBs) 
 +[   12.045890] UBIFS (ubi0:1): reserved for root: 3580441 bytes (3496 KiB) 
 +[   12.059066] UBIFS (ubi0:1): media format: w5/r0 (latest is w5/r0), UUID D3C4510B-B083-480C-9882-6C01CF484DB4, small LPT model 
 +[   12.089020] mount_root: switching to ubifs overlay 
 +[   12.120313] urandom-seed: Seeding with /etc/urandom.seed 
 +[   12.318374] mt7530 mdio-bus:1f lan1Link is Down 
 +[   12.338103] procd: - early - 
 +[   12.344231] procd: - watchdog - 
 +[   13.024319] procd: - watchdog - 
 +[   13.136577] procd: - ubus - 
 +[   13.281049] random: ubusd: uninitialized urandom read (4 bytes read) 
 +[   13.305006] random: ubusd: uninitialized urandom read (4 bytes read) 
 +[   13.318188] random: ubusd: uninitialized urandom read (4 bytes read) 
 +[   13.334620] procd: - init - 
 +Please press Enter to activate this console. 
 +[   14.167262] kmodloader: loading kernel modules from /etc/modules.d/
 +[   14.589228] urngd: v1.0.2 started. 
 +[   14.602838] Loading modules backported from Linux version v5.15.33-0-g06f50ca83ace 
 +[   14.618046] Backport generated by backports.git v5.15.33-1-0-g183c4ab2 
 +[   14.855362] mt7621-pci 1e140000.pcie: bus=1 slot=0 irq=23 
 +[   14.866243] pci 0000:00:00.0: enabling device (0006 -> 0007) 
 +[   14.871429] randomcrng init done 
 +[   14.877544] mt7615e 0000:01:00.0: enabling device (0000 -> 0002) 
 +[   14.896357random: 29 urandom warning(s) missed due to ratelimiting 
 +[   14.925737] mt7615e 0000:01:00.0: HW/SW Version: 0x8a108a10, Build Time: 20180518100604a 
 +[   14.925737]  
 +[   14.963493] PPP generic driver version 2.4.2 
 +[   14.974335] NET: Registered protocol family 24 
 +[   14.992409] kmodloader: done loading kernel modules from /etc/modules.d/
 +[   15.196245] mt7615e 0000:01:00.0: N9 Firmware Version: _reserved_, Build Time: 20200814163649 
 +[   15.335265] mt7615e 0000:01:00.0: CR4 Firmware Version: _reserved_, Build Time: 20190121161307 
 +[   23.884142] mtk_soc_eth 1e100000.ethernet eth0: Link is Down 
 +[   23.910357] mtk_soc_eth 1e100000.ethernet eth0: configuring for fixed/rgmii link mode 
 +[   23.926568] mtk_soc_eth 1e100000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx 
 +[   23.937607] device eth0 entered promiscuous mode 
 +[   23.953262] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode 
 +[   23.967757] 8021q: adding VLAN 0 to HW filter on device lan1 
 +[   23.982570] IPv6ADDRCONF(NETDEV_CHANGE)eth0link becomes ready 
 +[   23.996117] br-lan: port 1(lan1) entered blocking state 
 +[   24.007007] br-lan: port 1(lan1) entered disabled state 
 +[   24.018607] device lan1 entered promiscuous mode 
 +[   24.052261] mt7530 mdio-bus:1f lan2: configuring for phy/gmii link mode 
 +[   24.066341] 8021q: adding VLAN 0 to HW filter on device lan2 
 +[   24.082678] br-lan: port 2(lan2) entered blocking state 
 +[   24.093295] br-lan: port 2(lan2) entered disabled state 
 +[   24.105952] device lan2 entered promiscuous mode 
 +[   24.138111] mtk_soc_eth 1e100000.ethernet wan: PHY [mdio-bus:04] driver [MediaTek MT7530 PHY] (irq=POLL) 
 +[   24.157112] mtk_soc_eth 1e100000.ethernet wanconfiguring for phy/rgmii-rxid link mode 
 +[   25.611394] mt7530 mdio-bus:1f lan1: Link is Up - 100Mbps/Full - flow control off 
 +[   25.626532] br-lanport 1(lan1) entered blocking state 
 +[   25.637056] br-lanport 1(lan1) entered forwarding state 
 +[   25.650280] IPv6ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready 
 +[   28.304400] mtk_soc_eth 1e100000.ethernet wan: Link is Up - 1Gbps/Full - flow control rx/tx 
 +[   28.321140] IPv6ADDRCONF(NETDEV_CHANGE)wan: link becomes ready 
 + 
 + 
 + 
 +BusyBox v1.35.0 (2022-07-06 19:09:39 UTC) built-in shell (ash) 
 + 
 +  _______                     ________        __ 
 +       |.-----.-----.-----.|  |  |  |.----.|  |_ 
 +     ||  _  |  -__|     ||  |  |  ||   _||   _| 
 + |_______||   __|_____|__|__||________||__|  |____| 
 +          |__| W I R E L E S S   F R E E D O M 
 + ----------------------------------------------------- 
 + OpenWrt 22.03.0-rc5, r19523-bfd070e7fa 
 + ----------------------------------------------------- 
 +=== WARNING! ===================================== 
 +There is no root password defined on this device! 
 +Use the "passwd" command to set up a new password 
 +in order to prevent unauthorized SSH logins. 
 +-------------------------------------------------- 
 +root@OpenWrt:/# ubus call system board 
 +
 +        "kernel""5.10.127", 
 +        "hostname""OpenWrt", 
 +        "system""MediaTek MT7621 ver:1 eco:3", 
 +        "model""MTS WG430223", 
 +        "board_name""mts,wg430223", 
 +        "rootfs_type": "squashfs", 
 +        "release":
 +                "distribution": "OpenWrt", 
 +                "version": "22.03.0-rc5", 
 +                "revision""r19523-bfd070e7fa", 
 +                "target": "ramips/mt7621", 
 +                "description": "OpenWrt 22.03.0-rc5 r19523-bfd070e7fa" 
 +        } 
 +}
 </nowiki> </nowiki>
 </WRAP>\\ </WRAP>\\
Line 643: Line 1626:
  
 === Online OpenWrt builder === === Online OpenWrt builder ===
-  * [[https://chef.libremesh.org/?version=SNAPSHOT&target=ramips%2Fmt7621&id=mts_wg430223|Build MTS WG430223 firmware]]+  * [[https://firmware-selector.openwrt.org/?version=SNAPSHOT&target=ramips%2Fmt7621&id=mts_wg430223|Build MTS WG430223 firmware]]
  
-=== Breed bootloader === +=== Common === 
-  * [[https://github.com/legale/breed-mt7621-xiaomi-r3g.bin-reset-button-changer/tree/main/smartbox-flash-giga-turbo-pro|Breed bootloader (MOD) r1338 for Smartbox Flash / MTS WG430223, GIGA, Turbo, PRO (github)]] +  * [[https://mega.nz/folder/xoBklZTZ#g1l_wH-nBOMONrDqOkeEvQ/folder/F1gQWC5a|Stock firmware collection]]
-  * [[https://t.me/smartboxgiga/27744|Breed bootloader (MOD) r1338 for Smartbox Flash / MTS WG430223, GIGA, Turbo, PRO]] +
-  * [[https://breed.hackpascal.net/breed-mt7621-xiaomi-r3g.bin|Breed bootloader (original) Xiaomi R3G]] +
-  * [[https://4pda.to/forum/index.php?showtopic=954030&st=2740#entry104489218|Breedenter utility]]+
  
 ===== Tags ===== ===== Tags =====
  
 [[meta:tags|How to add tags]] [[meta:tags|How to add tags]]
-{{tag>ramips mediatek mt7621 GigabitEthernet wlan 3port 802.11abgn 802.11a 802.11bgn 802.11ac 128nand 128RAM serial u-boot arcadyan dbdc mt7615dn dual_firmware mts breed}}+{{tag>ramips mediatek mt7621 GigabitEthernet wlan 3port 802.11abgn 802.11a 802.11bgn 802.11ac 128nand 128RAM serial u-boot arcadyan dbdc mt7615dn dual_firmware mts}}
  • Last modified: 2024/02/12 11:13
  • by 127.0.0.1