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:rostelecom:rt-fe-1a [2023/12/06 16:18] – [Supported Versions] csharper2005toh:rostelecom:rt-fe-1a [2023/12/06 20:19] – [OEM installation using the TFTP method] 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}}+Rostelecom RT-FE-1A is a wireless WiFi 5 router manufactured by Sercomm company.
  
-//Write a short, relevant description of the device. Include a technical overview, but avoid marketing buzzwords/useless stuff. Two to four sentences is about right. A picture is good, too. Edit the page to see how to add pictures.// 
- 
-<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 12:
 /*****/ /*****/
  
-{{media:example:genericrouter1.png?200|Generic Router}} +{{media:rostelecom:rt-fe-1a.png?300|Rostelecom RT-FE-1A}}
- +
-<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 61: Line 42:
 filter  : Brand=Rostelecom filter  : Brand=Rostelecom
 filter  : Model=RT-FE-1A filter  : Model=RT-FE-1A
-filter  : Versions~ 
 ---- ----
  
Line 74: Line 54:
 filter  : Brand=Rostelecom filter  : Brand=Rostelecom
 filter  : Model=RT-FE-1A filter  : Model=RT-FE-1A
-filter  : Versions~ 
 ---- ----
 */ */
Line 87: Line 66:
 filter  : Brand=Rostelecom filter  : Brand=Rostelecom
 filter  : Model=RT-FE-1A filter  : Model=RT-FE-1A
-filter  : Versions~ 
 ---- ----
  
Line 93: Line 71:
 -> [[docs:guide-user:installation:generic.flashing|Install OpenWrt (generic explanation)]] -> [[docs:guide-user:installation:generic.flashing|Install OpenWrt (generic explanation)]]
  
-FIXME Please add the installation procedure here.+1.  Login to the router web interface (default http://192.168.0.1/) under //admin// account
  
-==== Flash Layout ==== +2.  Navigate to //Settings -> Configuration -> Save to Computer//
-<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+3.  Decode the configuration. For example, using //cfgtool.py// tool (https://github.com/r3d5ky/sercomm_cfg_unpacker): 
-</WRAP>+<code> 
 +cfgtool.py -u configurationBackup.cfg 
 +</code>
  
-==== OEM easy installation ====+4.  Open //configurationBackup.xml// and find the following block: 
 +<code> 
 +<OBJECT name="User." type="object" writable="1" encryption="0"
 +<OBJECT name="1." type="object" writable="1" encryption="0"
 +<PARAMETER name="Password" type="string" value="<some value>" writable="1" encryption="1" password="1" /> 
 +</OBJECT> 
 +</code>
  
-<WRAP BOX> +5.  Replace //<some value>// by a new //superadmin// password (//s0meP@ss// in this example) and add a line which enabling //superadmin// login after. For example, the block after the changes: 
-FIXME //The instructions below are for Broadcom devices and only serve as an example.//\\ +<code> 
-**//Remove modify them if they do not apply to this particular device!//**+<OBJECT name="User." type="object" writable="1" encryption="0"
 +<OBJECT name="1." type="object" writable="1" encryption="0"
 +<PARAMETER name="Password" type="string" value="s0meP@ss" writable="1" encryption="1" password="1" /> 
 +<PARAMETER name="Enable" type="boolean" value="1" writable="1" encryption="0"/> 
 +</OBJECT> 
 +</code>
  
-This section deals with +6.  Encode the configuration. For example, using cfgtool.py tool: 
-  * How you install OpenWrt from a device freshly opened +<code> 
-  * The steps required such as reset to factory defaults if the device has already been configured+cfgtool.py -p configurationBackup.xml 
 +</code>
  
-**Note:** Reset router to factory defaults if it has been previously configured. +7.  Upload the changed configuration (//configurationBackup_changed.cfg//to the router
-  * 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 ====+8.  Login to the router web interface (//superadmin:xxxxxxxxxx//, where //xxxxxxxxxx// is a new password from the p.5)
  
-->  [[docs:guide-user:installation:generic.flashing.tftp]]+9.  Enable SSH access to the router (//Settings -> Access control -> SSH//)
  
-=== Specific values needed for tftp ===+10. Connect to the router using SSH shell using //superadmin// account
  
-<WRAP BOX>+11. Run in SSH shell: 
 +<code> 
 +sh 
 +</code>
  
-FIXME Enter values for "FILL-IN" below+12. Make a mtd backup (optional step): 
 +  - Set up a tftp server (e.g. tftpd64 for windows) 
 +  - Connect to a router using SSH shell and run the following commands: 
 +<code> 
 +cd /tmp 
 +for i in 0 1 2 3 4 5 6 7 8 9; do nanddump -f mtd$i /dev/mtd$i; \ 
 +tftp -l mtd$i -p 192.168.0.2; md5sum mtd$i >> mtd.md5; rm mtd$i; done 
 +tftp -l mtd.md5 -p 192.168.0.2 
 +</code>
  
-^ Bootloader tftp server IPv4 address  | FILL-IN   | +13. Change bootflag to Sercomm1 and reboot: 
-^ Bootloader MAC address (special)     | FILL-IN   | +<code> 
-^ Firmware tftp image                  [[:downloads|Latest OpenWrt release]] (**''NOTE:''** Name must contain //"tftp"//) | +printf 1 dd bs=1 seek=7 count=1 of=/dev/mtdblock3 
-^ TFTP transfer window                 | FILL-IN seconds                                | +reboot 
-^ TFTP window start                    | approximately FILL-IN seconds after power on   | +</code>
-^ TFTP client required IP address      | FILL-IN                                        |+
  
-</WRAP>+14. Login to the router web interface under //admin// account
  
-===== Upgrading OpenWrt ===== +15Remove dots from the OpenWrt factory image filename
-->  [[docs:guide-user:installation:generic.sysupgrade]]+
  
-<WRAP BOX>+16. Update firmware via web using OpenWrt factory image
  
-FIXME These are generic instructionsUpdate with your router's specifics.+==== Flash Layout ==== 
 + 
 +^ Start - End                    ^ Label                             ^ 
 +| 0x000000000000-0x000000100000  | "u-boot"                          | 
 +| 0x000000100000-0x000000200000  | "dynamic partition map"           | 
 +| 0x000000200000-0x000000300000  | "Factory"                         | 
 +| 0x000000300000-0x000000400000  | "Boot Flag"                       | 
 +| 0x000000400000-0x000000a00000  | "kernel"                          | 
 +| 0x000000a00000-0x000001000000  | "Kernel 2"                        | 
 +| 0x000001000000-0x000002800000  | "File System 1"                   | 
 +| 0x000002800000-0x000004000000  | "File System 2"                   | 
 +| 0x000004000000-0x000004800000  | "Configuration/log"               | 
 +| 0x000004800000-0x000005400000  | "application tmp buffer (Ftool)" 
 +| 0x000005400000-0x000007c20000  | "free space (in stock firmware)" 
 + 
 + 
 +==== OEM easy installation ==== 
 + 
 +See [[:toh:rostelecom:rt-fe-1a#installation]] 
 +==== OEM installation using the TFTP method ==== 
 + 
 +->  [[docs:guide-user:installation:generic.flashing.tftp]] 
 + 
 +==== Return to stock  ==== 
 +Change bootflag to Sercomm1 in OpenWrt CLI and then reboot: 
 +<code> 
 +printf 1 | dd bs=1 seek=7 count=1 of=/dev/mtdblock3 
 +</code> 
 +===== Upgrading OpenWrt ===== 
 +->  [[docs:guide-user:installation:generic.sysupgrade]]
  
 ==== LuCI Web Upgrade Process ==== ==== LuCI Web Upgrade Process ====
  
-  * Browse to ''<nowiki>http://192.168.1.1/cgi-bin/luci/mini/system/upgrade/</nowiki>'' LuCI Upgrade URL+  * Browse to ''<nowiki>http://192.168.1.1/</nowiki>''
   * Upload image file for sysupgrade to LuCI   * Upload image file for sysupgrade to LuCI
   * Wait for reboot   * Wait for reboot
Line 154: Line 177:
  
 If you don't have a GUI (LuCI) available, you can alternatively upgrade via the command line. If you don't have a GUI (LuCI) available, you can alternatively upgrade via the command line.
-There are two command line methods for upgrading: 
  
   * ''sysupgrade''   * ''sysupgrade''
-  * ''mtd'' 
  
 Note: It is important that you put the firmware image into the ramdisk (/tmp) before you start flashing. Note: It is important that you put the firmware image into the ramdisk (/tmp) before you start flashing.
Line 171: Line 192:
 </code> </code>
  
-=== mtd === 
- 
-If ''sysupgrade'' does not support this router, use ''mtd''. 
- 
-  * Login as root via SSH on 192.168.1.1, then enter the following commands: 
- 
-<code> 
-cd /tmp 
-wget http://downloads.openwrt.org/snapshots/trunk/XXX/xxx.abc 
-mtd write /tmp/xxx.abc linux && reboot 
-</code> 
- 
-</WRAP> 
  
 ===== Debricking ===== ===== Debricking =====
Line 196: Line 204:
  
 ===== 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           lan1 - lan4           | 192.168.1.1/24           
-vlan0 (eth0.0)   EXAMPLE LAN ports (1 to 4)   EXAMPLE None             | +wan              wan                   | DHCP                     
-| vlan1 (eth0.1)   | EXAMPLE WAN port             | EXAMPLE DHCP             +
-| wl0              | EXAMPLE WiFi                 | EXAMPLE Disabled         |+
  
-</WRAP> 
  
 ==== Switch Ports (for VLANs) ==== ==== Switch Ports (for VLANs) ====
-<WRAP BOX> 
-FIXME Please fill in real values for this device, then remove the EXAMPLEs 
  
-Numbers 0-3 are Ports 1-4 as labeled on the unit, number 4 is the Internet (WAN) on the unit, 5 is the internal connection to the router itself. Don't be fooled: Port 1 on the unit is number 3 when configuring VLANs. vlan0 = eth0.0, vlan1 = eth0.1 and so on. 
 ^ Port             ^ Switch port   ^ ^ Port             ^ Switch port   ^
-| Internet (WAN)   EXAMPLE 4     | +| Internet (WAN)       | 
-| LAN 1            | EXAMPLE 3     | +| LAN 1            |     | 
-| LAN 2            | EXAMPLE 2     | +| LAN 2            | 2     | 
-| LAN 3            | EXAMPLE 1     | +| LAN 3            |     | 
-| LAN 4            | EXAMPLE 0     |+| LAN 4            |     |
  
-</WRAP> 
  
 ==== Buttons ==== ==== Buttons ====
 -> [[docs:guide-user:hardware:hardware.button]] on howto use and configure the hardware button(s). -> [[docs:guide-user:hardware:hardware.button]] on howto use and configure the hardware button(s).
 Here, we merely name the buttons, so we can use them in the above Howto. Here, we merely name the buttons, so we can use them in the above Howto.
- 
-<WRAP BOX> 
-FIXME Please fill in real values for this device, then remove the EXAMPLEs 
  
 The Rostelecom RT-FE-1A has the following buttons: The Rostelecom RT-FE-1A has the following buttons:
  
-^ BUTTON                       ^ Event   ^ +^ BUTTON               ^ Event   ^ 
-EXAMPLE Reset                |  reset  | +| Reset                |  reset  | 
-EXAMPLE Secure Easy Setup    |   ses   +WPS                  |   wps   |
-| EXAMPLE No buttons at all.      -    |+
  
-</WRAP> 
  
 ===== Hardware ===== ===== Hardware =====
 ==== Info ==== ==== Info ====
-<WRAP BOX> 
-FIXME 
-  - This table is automatically generated, **once the correct filters for Brand and Model are set.** 
-  - If you see "Nothing." instead of a table, please **edit this section and adjust the filters with the proper Brand and Model.** Just try, it's easy. 
-  - If you still don't see a table here, or a table filled with '¿': [[toh:start|Is there already a Techdata page available]] for Rostelecom RT-FE-1A ? If not: [[meta:create_new_dataentry_page|Create one]]. 
-  - If you see a table with the desired device data, everything is OK and you can delete this text and the ''<nowiki><WRAP></nowiki>'' that encloses it. 
-  - If it still doesn't work: Don't panic, calm down, take a deep breath and [[:contact|contact a wiki admin]] (tmomas) for help. 
-</WRAP> 
  
 ---- datatemplatelist dttpllist ---- ---- datatemplatelist dttpllist ----
Line 256: Line 242:
 filter  : Brand=Rostelecom filter  : Brand=Rostelecom
 filter  : Model=RT-FE-1A filter  : Model=RT-FE-1A
-filter  : Versions= 
 ---- ----
  
Line 278: Line 263:
 **Note:** This will void your warranty! **Note:** This will void your warranty!
  
-<WRAP BOX> +There are crews behind the rubber feet. There are also clips around the edge of the case you will need to prize open, using, for example, plastic card.
-FIXME //Describe what needs to be done to open the device, e.g. remove rubber feet, adhesive labels, screws, ...// +
-  * To remove the cover and open the devicedo a/b/c +
-</WRAP>+
  
 //Main PCB://\\ //Main PCB://\\
Line 292: Line 274:
 **Insert photo of PCB with markings for serial port** **Insert photo of PCB with markings for serial port**
  
-<WRAP BOX> +Pins are silkscreened on the board
-FIXME //Replace EXAMPLE by real values.// +
-</WRAP>+
  
-^ Serial connection parameters\\ for Rostelecom RT-FE-1A @@Version@@ EXAMPLE 115200, 8N1, 3.3V |+^ Serial connection parameters\\ for Rostelecom RT-FE-1A | 57600, 8N1, 3.3V |
  
 ==== JTAG ==== ==== JTAG ====
Line 320: Line 300:
 ==== OpenWrt bootlog ==== ==== OpenWrt bootlog ====
 <WRAP bootlog> <WRAP bootlog>
-<nowiki>COPY HERE THE BOOTLOG ONCE OPENWRT IS INSTALLED AND RUNNING</nowiki>+<nowiki>[    0.000000] Linux version 5.15.139 (builder@buildhost) (mipsel-openwrt-linux-musl-gcc (OpenWrt GCC 12.3.0 r23645-8bca585dea) 12.3.0, GNU ld (GNU Binutils) 2.40.0) #0 SMP Wed Dec 6 15:32:00 2023 
 +[    0.000000] SoC Type: MediaTek MT7621 ver:1 eco:3 
 +[    0.000000] printk: bootconsole [early0] enabled 
 +[    0.000000] CPU0 revision is: 0001992f (MIPS 1004Kc) 
 +[    0.000000] MIPS: machine is Rostelecom RT-FE-1A 
 +[    0.000000] Initrd not found or empty - disabling initrd 
 +[    0.000000] VPE topology {2,2} total 4 
 +[    0.000000] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. 
 +[    0.000000] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes 
 +[    0.000000] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. 
 +[    0.000000] Zone ranges: 
 +[    0.000000]   Normal   [mem 0x0000000000000000-0x000000000fffffff] 
 +[    0.000000] Movable zone start for each node 
 +[    0.000000] Early memory node ranges 
 +[    0.000000]   node   0: [mem 0x0000000000000000-0x000000000fffffff] 
 +[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x000000000fffffff] 
 +[    0.000000] percpu: Embedded 11 pages/cpu s14736 r8192 d22128 u45056 
 +[    0.000000] pcpu-alloc: s14736 r8192 d22128 u45056 alloc=11*4096 
 +[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3  
 +[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 64960 
 +[    0.000000] Kernel command line: console=ttyS0,57600 rootfstype=squashfs,jffs2 
 +[    0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes, linear) 
 +[    0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes, linear) 
 +[    0.000000] Writing ErrCtl register=0006f890 
 +[    0.000000] Readback ErrCtl register=0006f890 
 +[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off 
 +[    0.000000] Memory: 249116K/262144K available (7300K kernel code, 624K rwdata, 880K rodata, 1232K init, 226K bss, 13028K reserved, 0K cma-reserved) 
 +[    0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 
 +[    0.000000] rcu: Hierarchical RCU implementation. 
 +[    0.000000] Tracing variant of Tasks RCU enabled. 
 +[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. 
 +[    0.000000] NR_IRQS: 256 
 +[    0.000000] clocksource: GIC: mask: 0xffffffffffffffff max_cycles: 0xcaf478abb4, max_idle_ns: 440795247997 ns 
 +[    0.000004] sched_clock: 64 bits at 880MHz, resolution 1ns, wraps every 4398046511103ns 
 +[    0.016026] Calibrating delay loop... 586.13 BogoMIPS (lpj=2930688) 
 +[    0.088330] pid_max: default: 32768 minimum: 301 
 +[    0.098284] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) 
 +[    0.112702] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) 
 +[    0.131902] rcu: Hierarchical SRCU implementation. 
 +[    0.142110] smp: Bringing up secondary CPUs ... 
 +[    0.151880] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. 
 +[    0.151907] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes 
 +[    0.151922] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. 
 +[    0.151966] CPU1 revision is: 0001992f (MIPS 1004Kc) 
 +[    0.211657] Synchronize counters for CPU 1: done. 
 +[    0.273883] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. 
 +[    0.273905] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes 
 +[    0.273917] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. 
 +[    0.273944] CPU2 revision is: 0001992f (MIPS 1004Kc) 
 +[    0.332842] Synchronize counters for CPU 2: done. 
 +[    0.393207] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. 
 +[    0.393229] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes 
 +[    0.393240] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. 
 +[    0.393272] CPU3 revision is: 0001992f (MIPS 1004Kc) 
 +[    0.452418] Synchronize counters for CPU 3: done. 
 +[    0.512014] smp: Brought up 1 node, 4 CPUs 
 +[    0.525514] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns 
 +[    0.545010] futex hash table entries: 1024 (order: 3, 32768 bytes, linear) 
 +[    0.558912] pinctrl core: initialized pinctrl subsystem 
 +[    0.570845] NET: Registered PF_NETLINK/PF_ROUTE protocol family 
 +[    0.583310] thermal_sys: Registered thermal governor 'step_wise' 
 +[    0.589487] FPU Affinity set after 11720 emulations 
 +[    0.614034] clocksource: Switched to clocksource GIC 
 +[    0.625383] NET: Registered PF_INET protocol family 
 +[    0.635178] IP idents hash table entries: 4096 (order: 3, 32768 bytes, linear) 
 +[    0.650538] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear) 
 +[    0.667100] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) 
 +[    0.682456] TCP established hash table entries: 2048 (order: 1, 8192 bytes, linear) 
 +[    0.697665] TCP bind hash table entries: 2048 (order: 2, 16384 bytes, linear) 
 +[    0.711855] TCP: Hash tables configured (established 2048 bind 2048) 
 +[    0.724605] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) 
 +[    0.737527] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) 
 +[    0.751702] NET: Registered PF_UNIX/PF_LOCAL protocol family 
 +[    0.762937] PCI: CLS 0 bytes, default 32 
 +[    0.773429] workingset: timestamp_bits=14 max_order=16 bucket_order=2 
 +[    0.791561] squashfs: version 4.0 (2009/01/31) Phillip Lougher 
 +[    0.803145] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. 
 +[    0.824175] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) 
 +[    0.842856] mt7621_gpio 1e000600.gpio: registering 32 gpios 
 +[    0.854467] mt7621_gpio 1e000600.gpio: registering 32 gpios 
 +[    0.865884] mt7621_gpio 1e000600.gpio: registering 32 gpios 
 +[    0.877418] mt7621-pci 1e140000.pcie: host bridge /pcie@1e140000 ranges: 
 +[    0.890684] mt7621-pci 1e140000.pcie:   No bus range found for /pcie@1e140000, using [bus 00-ff] 
 +[    0.908162] mt7621-pci 1e140000.pcie:      MEM 0x0060000000..0x006fffffff -> 0x0060000000 
 +[    0.924378] mt7621-pci 1e140000.pcie:       IO 0x001e160000..0x001e16ffff -> 0x0000000000 
 +[    1.294038] mt7621-pci 1e140000.pcie: pcie2 no card, disable it (RST & CLK) 
 +[    1.307814] mt7621-pci 1e140000.pcie: PCIE0 enabled 
 +[    1.317460] mt7621-pci 1e140000.pcie: PCIE1 enabled 
 +[    1.327159] PCI coherence region base: 0x60000000, mask/settings: 0xf0000002 
 +[    1.341348] mt7621-pci 1e140000.pcie: PCI host bridge to bus 0000:00 
 +[    1.353872] pci_bus 0000:00: root bus resource [bus 00-ff] 
 +[    1.364751] pci_bus 0000:00: root bus resource [mem 0x60000000-0x6fffffff] 
 +[    1.378393] pci_bus 0000:00: root bus resource [io  0x0000-0xffff] 
 +[    1.390710] pci 0000:00:00.0: [0e8d:0801] type 01 class 0x060400 
 +[    1.402601] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x7fffffff] 
 +[    1.415040] pci 0000:00:00.0: reg 0x14: [mem 0x60200000-0x6020ffff] 
 +[    1.427540] pci 0000:00:00.0: supports D1 
 +[    1.435418] pci 0000:00:00.0: PME# supported from D0 D1 D3hot 
 +[    1.447721] pci 0000:00:01.0: [0e8d:0801] type 01 class 0x060400 
 +[    1.459641] pci 0000:00:01.0: reg 0x10: [mem 0x00000000-0x7fffffff] 
 +[    1.472032] pci 0000:00:01.0: reg 0x14: [mem 0x60210000-0x6021ffff] 
 +[    1.484547] pci 0000:00:01.0: supports D1 
 +[    1.492385] pci 0000:00:01.0: PME# supported from D0 D1 D3hot 
 +[    1.506125] pci 0000:01:00.0: [14c3:7615] type 00 class 0x000280 
 +[    1.518050] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x000fffff 64bit] 
 +[    1.531665] 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) 
 +[    1.562611] pci 0000:00:00.0: PCI bridge to [bus 01-ff] 
 +[    1.572931] pci 0000:00:00.0:   bridge window [io  0x0000-0x0fff] 
 +[    1.584995] pci 0000:00:00.0:   bridge window [mem 0x60000000-0x600fffff] 
 +[    1.598484] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01 
 +[    1.611900] pci 0000:02:00.0: [14c3:7603] type 00 class 0x028000 
 +[    1.623790] pci 0000:02:00.0: reg 0x10: [mem 0x00000000-0x000fffff] 
 +[    1.636342] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold 
 +[    1.649876] pci 0000:00:01.0: PCI bridge to [bus 02-ff] 
 +[    1.660191] pci 0000:00:01.0:   bridge window [io  0x0000-0x0fff] 
 +[    1.672265] pci 0000:00:01.0:   bridge window [mem 0x60100000-0x601fffff] 
 +[    1.685754] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02 
 +[    1.698921] pci 0000:00:00.0: BAR 0: no space for [mem size 0x80000000] 
 +[    1.712001] pci 0000:00:00.0: BAR 0: failed to assign [mem size 0x80000000] 
 +[    1.725828] pci 0000:00:01.0: BAR 0: no space for [mem size 0x80000000] 
 +[    1.738961] pci 0000:00:01.0: BAR 0: failed to assign [mem size 0x80000000] 
 +[    1.752794] pci 0000:00:00.0: BAR 8: assigned [mem 0x60000000-0x600fffff] 
 +[    1.766263] pci 0000:00:01.0: BAR 8: assigned [mem 0x60100000-0x601fffff] 
 +[    1.779746] pci 0000:00:00.0: BAR 1: assigned [mem 0x60200000-0x6020ffff] 
 +[    1.793226] pci 0000:00:01.0: BAR 1: assigned [mem 0x60210000-0x6021ffff] 
 +[    1.806710] pci 0000:00:00.0: BAR 7: assigned [io  0x0000-0x0fff] 
 +[    1.818799] pci 0000:00:01.0: BAR 7: assigned [io  0x1000-0x1fff] 
 +[    1.830898] pci 0000:01:00.0: BAR 0: assigned [mem 0x60000000-0x600fffff 64bit] 
 +[    1.845416] pci 0000:00:00.0: PCI bridge to [bus 01] 
 +[    1.855258] pci 0000:00:00.0:   bridge window [io  0x0000-0x0fff] 
 +[    1.867359] pci 0000:00:00.0:   bridge window [mem 0x60000000-0x600fffff] 
 +[    1.880840] pci 0000:02:00.0: BAR 0: assigned [mem 0x60100000-0x601fffff] 
 +[    1.894309] pci 0000:00:01.0: PCI bridge to [bus 02] 
 +[    1.904161] pci 0000:00:01.0:   bridge window [io  0x1000-0x1fff] 
 +[    1.916251] pci 0000:00:01.0:   bridge window [mem 0x60100000-0x601fffff] 
 +[    1.932267] Serial: 8250/16550 driver, 16 ports, IRQ sharing enabled 
 +[    1.949592] printk: console [ttyS0] disabled 
 +[    1.958117] 1e000c00.uartlite: ttyS0 at MMIO 0x1e000c00 (irq = 19, base_baud = 3125000) is a 16550A 
 +[    1.976037] printk: console [ttyS0] enabled 
 +[    1.992596] printk: bootconsole [early0] disabled 
 +[    2.014826] nand: device found, Manufacturer ID: 0xc2, Chip ID: 0xf1 
 +[    2.027548] nand: Macronix MX30LF1G18AC 
 +[    2.035203] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 
 +[    2.050294] mt7621-nand 1e003000.nand: ECC strength adjusted to 4 bits 
 +[    2.120639] scpart: Valid 'SC PART MAP' (11 partitions) found at 0x100000 
 +[    2.134241] 11 scpart partitions found on MTD device mt7621-nand 
 +[    2.146214] Creating 11 MTD partitions on "mt7621-nand": 
 +[    2.156800] 0x000000000000-0x000000100000 : "u-boot" 
 +[    2.178040] 0x000000100000-0x000000200000 : "dynamic partition map" 
 +[    2.201816] 0x000000200000-0x000000300000 : "Factory" 
 +[    2.223736] 0x000000300000-0x000000400000 : "Boot Flag" 
 +[    2.245277] 0x000000400000-0x000000a00000 : "kernel" 
 +[    2.316590] 0x000000a00000-0x000001000000 : "Kernel 2" 
 +[    2.388676] 0x000001000000-0x000002800000 : "File System 1" 
 +[    2.642202] 0x000002800000-0x000004000000 : "File System 2" 
 +[    2.895823] 0x000004000000-0x000004800000 : "Configuration/log" 
 +[    2.989578] 0x000004800000-0x000005400000 : "application tmp buffer (Ftool)" 
 +[    3.125502] 0x000005400000-0x000007c20000 : "free space (in stock firmware)" 
 +[    3.551666] Concatenating MTD devices: 
 +[    3.559245] (0): "File System 1" 
 +[    3.565698] (1): "Configuration/log" 
 +[    3.572802] (2): "application tmp buffer (Ftool)" 
 +[    3.582166] (3): "free space (in stock firmware)" 
 +[    3.591546] into device "ubi-concat" 
 +[    3.598718] 1 fixed-partitions partitions found on MTD device ubi-concat 
 +[    3.612080] Creating 1 MTD partitions on "ubi-concat": 
 +[    3.622324] 0x000000000000-0x000005420000 : "ubi" 
 +[    4.607624] mt7530-mdio mdio-bus:1f: MT7530 adapts as multi-chip module 
 +[    4.628173] mtk_soc_eth 1e100000.ethernet eth0: mediatek frame engine at 0xbe100000, irq 21 
 +[    4.648273] mtk_soc_eth 1e100000.ethernet wan: mediatek frame engine at 0xbe100000, irq 21 
 +[    4.666546] i2c_dev: i2c /dev entries driver 
 +[    4.678186] NET: Registered PF_INET6 protocol family 
 +[    4.690676] Segment Routing with IPv6 
 +[    4.698111] In-situ OAM (IOAM) with IPv6 
 +[    4.706078] NET: Registered PF_PACKET protocol family 
 +[    4.716333] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. 
 +[    4.742707] 8021q: 802.1Q VLAN Support v1.8 
 +[    4.757225] mt7530-mdio mdio-bus:1f: MT7530 adapts as multi-chip module 
 +[    4.789327] mt7530-mdio mdio-bus:1f: configuring for fixed/rgmii link mode 
 +[    4.803919] mt7530-mdio mdio-bus:1f: Link is Up - 1Gbps/Full - flow control rx/tx 
 +[    4.805182] mt7530-mdio mdio-bus:1f lan1 (uninitialized): PHY [mt7530-0:01] driver [MediaTek MT7530 PHY] (irq=23) 
 +[    4.842188] mt7530-mdio mdio-bus:1f lan2 (uninitialized): PHY [mt7530-0:02] driver [MediaTek MT7530 PHY] (irq=24) 
 +[    4.865370] mt7530-mdio mdio-bus:1f lan3 (uninitialized): PHY [mt7530-0:03] driver [MediaTek MT7530 PHY] (irq=25) 
 +[    4.888305] mt7530-mdio mdio-bus:1f lan4 (uninitialized): PHY [mt7530-0:04] driver [MediaTek MT7530 PHY] (irq=26) 
 +[    4.910760] DSA: tree 0 setup 
 +[    4.919707] UBI: auto-attach mtd11 
 +[    4.926553] ubi0: attaching mtd11 
 +[    5.025594] UBI: EOF marker found, PEBs from 36 will be erased 
 +[    5.836356] ubi0: scanning is finished 
 +[    5.886519] ubi0: volume 1 ("rootfs_data") re-sized from 9 to 621 LEBs 
 +[    5.900712] ubi0: attached mtd11 (name "ubi", size 84 MiB) 
 +[    5.911686] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes 
 +[    5.925394] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 
 +[    5.938915] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 
 +[    5.952777] ubi0: good PEBs: 672, bad PEBs: 1, corrupted PEBs: 0 
 +[    5.964737] ubi0: user volume: 2, internal volumes: 1, max. volumes count: 128 
 +[    5.979116] ubi0: max/mean erase counter: 1/0, WL threshold: 4096, image sequence number: 1701876720 
 +[    5.997308] ubi0: available PEBs: 0, total reserved PEBs: 672, PEBs reserved for bad PEB handling: 13 
 +[    6.015691] ubi0: background thread "ubi_bgt0d" started, PID 341 
 +[    6.018230] block ubiblock0_0: created from ubi0:0(rootfs) 
 +[    6.038647] ubiblock: device ubiblock0_0 (rootfs) set to be root filesystem 
 +[    6.087665] VFS: Mounted root (squashfs filesystem) readonly on device 254:0. 
 +[    6.107626] Freeing unused kernel image (initmem) memory: 1232K 
 +[    6.119509] This architecture does not have kernel memory protection. 
 +[    6.132380] Run /sbin/init as init process 
 +[    6.140551]   with arguments: 
 +[    6.140563]     /sbin/init 
 +[    6.140573]   with environment: 
 +[    6.140581]     HOME=/ 
 +[    6.140590]     TERM=linux 
 +[    6.789109] init: Console is alive 
 +[    6.796562] init: - watchdog - 
 +[    7.737346] kmodloader: loading kernel modules from /etc/modules-boot.d/
 +[    7.808475] kmodloader: done loading kernel modules from /etc/modules-boot.d/
 +[    7.833631] init: - preinit - 
 +[    8.857324] random: jshn: uninitialized urandom read (4 bytes read) 
 +[    8.982250] random: jshn: uninitialized urandom read (4 bytes read) 
 +[    9.027600] random: jshn: uninitialized urandom read (4 bytes read) 
 +[    9.313072] mtk_soc_eth 1e100000.ethernet eth0: configuring for fixed/rgmii link mode 
 +[    9.333854] mt7530-mdio mdio-bus:1f lan1: configuring for phy/gmii link mode 
 +[    9.348099] mtk_soc_eth 1e100000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx 
 +[    9.365078] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready 
 +[   11.574861] UBIFS (ubi0:1): default file-system created 
 +[   11.586670] UBIFS (ubi0:1): Mounting in unauthenticated mode 
 +[   11.598286] UBIFS (ubi0:1): background thread "ubifs_bgt0_1" started, PID 463 
 +[   11.724900] UBIFS (ubi0:1): UBIFS: mounted UBI device 0, volume 1, name "rootfs_data" 
 +[   11.740574] UBIFS (ubi0:1): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes 
 +[   11.760326] UBIFS (ubi0:1): FS size: 77582336 bytes (73 MiB, 611 LEBs), max 621 LEBs, journal size 3936256 bytes (3 MiB, 31 LEBs) 
 +[   11.783555] UBIFS (ubi0:1): reserved for root: 3664404 bytes (3578 KiB) 
 +[   11.796740] UBIFS (ubi0:1): media format: w5/r0 (latest is w5/r0), UUID 3AF76B62-5F32-45D0-AD52-25A5ADF599A5, small LPT model 
 +[   11.822683] mount_root: overlay filesystem has not been fully initialized yet 
 +[   11.837721] mount_root: switching to ubifs overlay 
 +[   11.855368] urandom-seed: Seed file not found (/etc/urandom.seed) 
 +[   11.963866] procd: - early - 
 +[   11.970010] procd: - watchdog - 
 +[   12.589456] procd: - watchdog - 
 +[   12.596426] procd: - ubus - 
 +[   12.662855] random: ubusd: uninitialized urandom read (4 bytes read) 
 +[   12.678018] random: ubusd: uninitialized urandom read (4 bytes read) 
 +[   12.695844] random: ubusd: uninitialized urandom read (4 bytes read) 
 +[   12.713489] procd: - init - 
 +[   13.273296] kmodloader: loading kernel modules from /etc/modules.d/
 +[   13.515444] Loading modules backported from Linux version v6.1.24-0-g0102425ac76b 
 +[   13.530405] Backport generated by backports.git v5.15.92-1-44-gd6ea70fafd36 
 +[   13.737561] pci 0000:00:01.0: enabling device (0002 -> 0003) 
 +[   13.748953] mt7603e 0000:02:00.0: enabling device (0000 -> 0002) 
 +[   13.761218] mt7603e 0000:02:00.0: ASIC revision: 76030010 
 +[   14.410306] urngd: v1.0.2 started. 
 +[   14.802425] mt7603e 0000:02:00.0: Firmware Version: ap_pcie 
 +[   14.813612] mt7603e 0000:02:00.0: Build Time: 20160107100755 
 +[   14.846460] mt7603e 0000:02:00.0: firmware init done 
 +[   15.034790] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht' 
 +[   15.048440] pci 0000:00:00.0: enabling device (0002 -> 0003) 
 +[   15.059796] mt7615e 0000:01:00.0: enabling device (0000 -> 0002) 
 +[   15.090848] ieee80211 phy1: Selected rate control algorithm 'minstrel_ht' 
 +[   15.090907] ieee80211 phy1: copying sband (band 1) due to VHT EXT NSS BW flag 
 +[   15.177959] random: crng init done 
 +[   15.184856] random: 31 urandom warning(s) missed due to ratelimiting 
 +[   15.203150] PPP generic driver version 2.4.2 
 +[   15.213815] NET: Registered PF_PPPOX protocol family 
 +[   15.236485] kmodloader: done loading kernel modules from /etc/modules.d/
 +[   15.250254] mt7615e 0000:01:00.0: HW/SW Version: 0x8a108a10, Build Time: 20180518100604a 
 +[   15.250254]  
 +[   15.519271] mt7615e 0000:01:00.0: N9 Firmware Version: _reserved_, Build Time: 20200814163649 
 +[   15.640946] mt7615e 0000:01:00.0: CR4 Firmware Version: _reserved_, Build Time: 20190415154149 
 +[   62.934911] mtk_soc_eth 1e100000.ethernet eth0: Link is Down 
 +[   62.970367] mtk_soc_eth 1e100000.ethernet eth0: configuring for fixed/rgmii link mode 
 +[   62.986641] mtk_soc_eth 1e100000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx 
 +[   63.004757] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready 
 +[   63.020083] mt7530-mdio mdio-bus:1f lan1: configuring for phy/gmii link mode 
 +[   63.037436] br-lan: port 1(lan1) entered blocking state 
 +[   63.047996] br-lan: port 1(lan1) entered disabled state 
 +[   63.061046] device lan1 entered promiscuous mode 
 +[   63.070463] device eth0 entered promiscuous mode 
 +[   63.108324] mt7530-mdio mdio-bus:1f lan2: configuring for phy/gmii link mode 
 +[   63.125661] br-lan: port 2(lan2) entered blocking state 
 +[   63.136182] br-lan: port 2(lan2) entered disabled state 
 +[   63.149259] device lan2 entered promiscuous mode 
 +[   63.173392] mt7530-mdio mdio-bus:1f lan3: configuring for phy/gmii link mode 
 +[   63.189991] br-lan: port 3(lan3) entered blocking state 
 +[   63.200538] br-lan: port 3(lan3) entered disabled state 
 +[   63.213966] device lan3 entered promiscuous mode 
 +[   63.238217] mt7530-mdio mdio-bus:1f lan4: configuring for phy/gmii link mode 
 +[   63.255201] br-lan: port 4(lan4) entered blocking state 
 +[   63.265747] br-lan: port 4(lan4) entered disabled state 
 +[   63.278852] device lan4 entered promiscuous mode 
 +[   63.317383] mtk_soc_eth 1e100000.ethernet wan: PHY [mdio-bus:00] driver [MediaTek MT7530 PHY] (irq=POLL) 
 +[   63.336423] mtk_soc_eth 1e100000.ethernet wan: configuring for phy/rgmii link mode 
 +[   66.231649] mt7530-mdio mdio-bus:1f lan4: Link is Up - 1Gbps/Full - flow control rx/tx 
 +[   66.247570] br-lan: port 4(lan4) entered blocking state 
 +[   66.258030] br-lan: port 4(lan4) entered forwarding state 
 +[   66.270154] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready 
 +[  141.069468] br-lan: port 5(phy0-ap0) entered blocking state 
 +[  141.080720] br-lan: port 5(phy0-ap0) entered disabled state 
 +[  141.092608] device phy0-ap0 entered promiscuous mode 
 +[  141.123438] IPv6: ADDRCONF(NETDEV_CHANGE): phy0-ap0: link becomes ready 
 +[  141.137215] br-lan: port 5(phy0-ap0) entered blocking state 
 +[  141.148449] br-lan: port 5(phy0-ap0) entered forwarding state 
 +[  159.394731] br-lan: port 6(phy1-ap0) entered blocking state 
 +[  159.405902] br-lan: port 6(phy1-ap0) entered disabled state 
 +[  159.417616] device phy1-ap0 entered promiscuous mode 
 +[  159.427930] br-lan: port 6(phy1-ap0) entered blocking state 
 +[  159.439090] br-lan: port 6(phy1-ap0) entered forwarding state 
 +[  159.451368] br-lan: port 6(phy1-ap0) entered disabled state 
 +[  159.467350] device phy1-ap0 left promiscuous mode 
 +[  159.477062] br-lan: port 6(phy1-ap0) entered disabled state 
 +[  159.528624] br-lan: port 6(phy1-ap0) entered blocking state 
 +[  159.539864] br-lan: port 6(phy1-ap0) entered disabled state 
 +[  159.551712] device phy1-ap0 entered promiscuous mode 
 +[  161.723525] IPv6: ADDRCONF(NETDEV_CHANGE): phy1-ap0: link becomes ready 
 +[  161.737164] br-lan: port 6(phy1-ap0) entered blocking state 
 +[  161.748348] br-lan: port 6(phy1-ap0) entered forwarding state</nowiki>
 </WRAP>\\ </WRAP>\\
  
 ===== Notes ===== ===== Notes =====
-//Space for additional notes, links to forum threads or other resources.// 
  
-  * ... 
  
 ===== Tags ===== ===== Tags =====
-<WRAP BOX> +{{tag>U-boot 2core ramips mediatek MT7621 GigabitEthernet 1NIC 5Port 2WNIC wlan 802.11abgn 802.11a 802.11bgn 802.11ac mt7603 mt7615 4Ant 128NAND 256RAM Serial GPIO 2button 12v_powered rostelecom sercomm Dual_firmware }}
-FIXME //Add tags below, then remove this fixme.// +
-</WRAP>+
  
-[[meta:tags|How to add tags]] 
-{{tag>EXAMPLETAG}} 
  • Last modified: 2024/03/26 17:32
  • by csharper2005