找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
广告投放联系QQ68610888
查看: 48710|回复: 234

【2023.12.14更新】企智通501m v2可以使用新版openwrt了(包括trunk)。。。

  [复制链接]
本帖最后由 wackejohn 于 2023-12-14 15:29 编辑

如题,本人入了个企智通的501m v2,到手才知道openwrt只到AA版本。。。相当不甘心。。。首先尝试自己编译trunk,然后刷入,无果内核无法识别交换机。。。接着各种google,查到原来源码改成了device tree的方式。。。期间还怀疑需要刷uboot,在成功将设备搞砖后还好用openjtag救回。。。就在本人准备放弃,奔向wrt1900ac时,人品爆发了。。。
这里先贴个本人修改的dts文件:

  1. /*
  2. * Marvell RD88F6181 A Board descrition
  3. *
  4. * Andrew Lunn <[email]andrew@lunn.ch[/email]>
  5. *
  6. * This file is licensed under the terms of the GNU General Public
  7. * License version 2.  This program is licensed "as is" without any
  8. * warranty of any kind, whether express or implied.
  9. *
  10. * This file contains the definitions for the board with the A0 or
  11. * higher stepping of the SoC. The ethernet switch does not have a
  12. * "wan" port.
  13. */

  14. /dts-v1/;
  15. #include "kirkwood-rd88f6281.dtsi"

  16. / {
  17.         model = "QiZhiTong 501M V2";
  18.         compatible = "marvell,rd88f6281-a", "marvell,rd88f6281","marvell,kirkwood-88f6281", "marvell,kirkwood";

  19.         chosen {
  20.                 bootargs = "console=ttyS0,9600n8 earlyprintk";
  21.         };

  22.         mbus {
  23.                 pcie-controller {
  24.                         status = "okay";

  25.                         pcie@1,0 {
  26.                                 status = "okay";
  27.                         };

  28.                         pcie@2,0 {
  29.                                 status = "okay";
  30.                         };
  31.                 };
  32.         };

  33.         ocp@f1000000 {
  34.                 pinctrl: pin-controller[url=home.php?mod=space&uid=3967]@10000[/url] {
  35.                         pinctrl-names = "default";

  36.                         pmx_sdio_cd: pmx-sdio-cd {
  37.                                 marvell,pins = "mpp28";
  38.                                 marvell,function = "gpio";
  39.                         };
  40.                 };

  41.                 serial@12000 {
  42.                         status = "okay";

  43.                 };

  44.                 sata@80000 {
  45.                         status = "okay";
  46.                         nr-ports = <1>;
  47.                 };
  48.                 mvsdio@90000 {
  49.                         pinctrl-0 = <&pmx_sdio &pmx_sdio_cd>;
  50.                         pinctrl-names = "default";
  51.                         status = "okay";
  52.                         cd-gpios = <&gpio0 28 GPIO_ACTIVE_HIGH>;
  53.                         /* No WP GPIO */
  54.                 };
  55.         };
  56.         
  57.         dsa@0 {
  58.                 compatible = "marvell,dsa";
  59.                 #address-cells = <2>;
  60.                 #size-cells = <0>;
  61.                
  62.                 interrupts = <10>;
  63.                 dsa,ethernet = <&eth0port>;
  64.                 dsa,mii-bus = <&mdio>;

  65.                 switch@0 {
  66.                         #address-cells = <1>;
  67.                         #size-cells = <0>;
  68.                         status = "okay";
  69.                         reg = <10 0>;
  70.                         
  71.                         port@0 {
  72.                                 reg = <0>;
  73.                                 label = "lan1";
  74.                         };

  75.                         port@1 {
  76.                                reg = <1>;
  77.                                label = "lan2";
  78.                         };

  79.                         port@2 {
  80.                                reg = <2>;
  81.                                label = "lan3";
  82.                         };

  83.                         port@3 {
  84.                                reg = <3>;
  85.                                label = "lan4";
  86.                         };

  87.                         port@4 {
  88.                                 reg = <4>;
  89.                                 label = "aux";
  90.                         };

  91.                         port@5 {
  92.                                reg = <5>;
  93.                                label = "cpu";
  94.                         };
  95.                 };
  96.         };
  97. };

  98. &mdio {
  99.         status = "okay";
  100. };

  101. &eth0 {
  102.         status = "okay";
  103.         
  104.         ethernet0-port@0 {
  105.                 speed = <1000>;
  106.                 duplex = <1>;
  107.         };
  108. };

  109. &eth1 {
  110.         status = "okay";
  111.         
  112.         ethernet1-port@0 {
  113.                  compatible = "marvell,88e1116r";
  114.                  speed = <1000>;
  115.                  duplex = <1>;
  116.         };
  117. };

复制代码

整个描述交换机段的关键貌似在“interrupts = <10>;”(无意中google到的关于dsa的文档,里面有关于各个参数的解释)

然后贴个openwrt启动记录:

  1.          __  __                      _ _
  2.         |  \/  | __ _ _ ____   _____| | |
  3.         | |\/| |/ _` | '__\ \ / / _ \ | |
  4.         | |  | | (_| | |   \ V /  __/ | |
  5.         |_|  |_|\__,_|_|    \_/ \___|_|_|
  6. _   _     ____              _
  7. | | | |   | __ )  ___   ___ | |_
  8. | | | |___|  _ \ / _ \ / _ \| __|
  9. | |_| |___| |_) | (_) | (_) | |_
  10. \___/    |____/ \___/ \___/ \__|
  11. ** MARVELL BOARD: MB-302 v1.0

  12. U-Boot 1.1.4 (Nov 11 2010 - 16:09:33) Marvell version: 3.4.27 T06

  13. U-Boot code: 00600000 -> 0067FFF0  BSS: -> 006CFAC0

  14. Soc: 88F6281 A1 (DDR2)
  15. CPU running @ 1200Mhz L2 running @ 400Mhz
  16. SysClock = 400Mhz , TClock = 200Mhz

  17. DRAM CAS Latency = 5 tRP = 5 tRAS = 18 tRCD=6
  18. DRAM CS[0] base 0x00000000   size 256MB
  19. DRAM CS[1] base 0x10000000   size 256MB
  20. DRAM Total size 512MB  16bit width
  21. Addresses 8M - 0M are saved for the U-Boot usage.
  22. Mem malloc Initialization (8M - 7M): Done
  23. NAND:64 MB
  24. Flash:  0 kB

  25. CPU : Marvell Feroceon (Rev 1)

  26. Streaming disabled
  27. Write allocate disabled

  28. Module 0 is RGMII

  29. USB 0: host mode
  30. PEX 0: interface detected no Link.
  31. Net:   egiga0 [PRIME], egiga1
  32. Hit 'Tab' key to switch the boot entry:  0

  33. SD found. Card desciption is:
  34. Manufacturer:       0x1c, OEM "SV"
  35. Product name:       "USD  ", revision 1.0
  36. Serial number:      21367872
  37. Manufacturing date: 6/2008
  38. CRC:                0x00, b0 = 0

  39. 1894174 bytes read
  40. ## Booting image at 00800000 ...
  41.    Image Name:   ARM OpenWrt Linux-4.3
  42.    Created:      2015-11-29  13:35:30 UTC
  43.    Image Type:   ARM Linux Kernel Image (uncompressed)
  44.    Data Size:    1894110 Bytes =  1.8 MB
  45.    Load Address: 00008000
  46.    Entry Point:  00008000
  47.    Verifying Checksum ... OK
  48. OK

  49. Starting kernel ...

  50. [    0.000000] Booting Linux on physical CPU 0x0
  51. [    0.000000] Linux version 4.3.0 (Wacke@HOME-Server) (gcc version 5.2.0 (OpenWrt GCC 5.2.0 r47397) ) #44 Sun Nov 29 21:35:02 CST 2015
  52. [    0.000000] CPU: Feroceon 88FR131 [56251311] revision 1 (ARMv5TE), cr=0005397f
  53. [    0.000000] CPU: VIVT data cache, VIVT instruction cache
  54. [    0.000000] Machine model: QiZhiTong 501M V2
  55. [    0.000000] Memory policy: Data cache writeback
  56. [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 130048
  57. [    0.000000] Kernel command line: rootdelay=1 root=/dev/mmcblk0p1 noinitrd console=ttyS0,9600
  58. [    0.000000] PID hash table entries: 2048 (order: 1, 8192 bytes)
  59. [    0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
  60. [    0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
  61. [    0.000000] Memory: 514224K/524288K available (3882K kernel code, 133K rwdata, 1072K rodata, 164K init, 192K bss, 10064K reserved, 0K cma-reserved)
  62. [    0.000000] Virtual kernel memory layout:
  63. [    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
  64. [    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
  65. [    0.000000]     vmalloc : 0xe0800000 - 0xff000000   ( 488 MB)
  66. [    0.000000]     lowmem  : 0xc0000000 - 0xe0000000   ( 512 MB)
  67. [    0.000000]     modules : 0xbf000000 - 0xc0000000   (  16 MB)
  68. [    0.000000]       .text : 0xc0008000 - 0xc04dedc4   (4956 kB)
  69. [    0.000000]       .init : 0xc04df000 - 0xc0508000   ( 164 kB)
  70. [    0.000000]       .data : 0xc0508000 - 0xc05295f0   ( 134 kB)
  71. [    0.000000]        .bss : 0xc05295f0 - 0xc0559888   ( 193 kB)
  72. [    0.000000] NR_IRQS:16 nr_irqs:16 16
  73. [    0.000000] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 9556302233 ns
  74. [    0.000007] sched_clock: 32 bits at 200MHz, resolution 5ns, wraps every 10737418237ns
  75. [    0.000135] Calibrating delay loop... 1191.11 BogoMIPS (lpj=5955584)
  76. [    0.090081] pid_max: default: 32768 minimum: 301
  77. [    0.090201] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
  78. [    0.090217] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
  79. [    0.090706] CPU: Testing write buffer coherency: ok
  80. [    0.091016] Setting up static identity map for 0x81e0 - 0x821c
  81. [    0.091279] mvebu-soc-id: MVEBU SoC ID=0x6281, Rev=0x3
  82. [    0.095448] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
  83. [    0.095569] pinctrl core: initialized pinctrl subsystem
  84. [    0.096593] NET: Registered protocol family 16
  85. [    0.096949] DMA: preallocated 256 KiB pool for atomic coherent allocations
  86. [    0.097755] cpuidle: using governor ladder
  87. [    0.098096] Feroceon L2: Enabling L2
  88. [    0.098136] Feroceon L2: Cache support initialised.
  89. [    0.098394] [Firmware Info]: /ocp@f1000000/ethernet-controller@72000/ethernet0-port@0: local-mac-address is not set
  90. [    0.114022] SCSI subsystem initialized
  91. [    0.114345] usbcore: registered new interface driver usbfs
  92. [    0.114419] usbcore: registered new interface driver hub
  93. [    0.114487] usbcore: registered new device driver usb
  94. [    0.115374] clocksource: Switched to clocksource orion_clocksource
  95. [    0.116324] NET: Registered protocol family 2
  96. [    0.116843] TCP established hash table entries: 4096 (order: 2, 16384 bytes)
  97. [    0.116899] TCP bind hash table entries: 4096 (order: 2, 16384 bytes)
  98. [    0.116949] TCP: Hash tables configured (established 4096 bind 4096)
  99. [    0.117003] UDP hash table entries: 256 (order: 0, 4096 bytes)
  100. [    0.117025] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
  101. [    0.117176] NET: Registered protocol family 1
  102. [    0.118006] futex hash table entries: 256 (order: -1, 3072 bytes)
  103. [    0.121426] squashfs: version 4.0 (2009/01/31) Phillip Lougher
  104. [    0.121446] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc.
  105. [    0.122468] io scheduler noop registered
  106. [    0.122487] io scheduler deadline registered (default)
  107. [    0.123579] kirkwood-pinctrl f1010000.pin-controller: registered pinctrl driver
  108. [    0.124133] irq: Cannot allocate irq_descs @ IRQ35, assuming pre-allocated
  109. [    0.124472] irq: Cannot allocate irq_descs @ IRQ67, assuming pre-allocated
  110. [    0.124743] mvebu-pcie mbus:pcie-controller: ignoring PCIe DT node, missing pcie-port property
  111. [    0.125031] mvebu-pcie mbus:pcie-controller: PCI host bridge to bus 0000:00
  112. [    0.125048] pci_bus 0000:00: root bus resource [io  0x1000-0xfffff]
  113. [    0.125059] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xefffffff]
  114. [    0.125071] pci_bus 0000:00: root bus resource [bus 00-ff]
  115. [    0.125317] PCI: bus0: Fast back to back transfers disabled
  116. [    0.125331] pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
  117. [    0.125491] PCI: bus1: Fast back to back transfers enabled
  118. [    0.125535] pci 0000:00:01.0: PCI bridge to [bus 01]
  119. [    0.157228] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled
  120. [    0.158198] console [ttyS0] disabled
  121. [    0.158264] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 26, base_baud = 12500000) is a 16550A
  122. [    5.542548] console [ttyS0] enabled
  123. [    5.585398] nand: device found, Manufacturer ID: 0x20, Chip ID: 0x76
  124. [    5.661500] nand: ST Micro NAND 64MiB 3,3V 8-bit
  125. [    5.716808] nand: 64 MiB, SLC, erase size: 16 KiB, page size: 512, OOB size: 16
  126. [    5.804409] Scanning device for bad blocks
  127. [    6.069653] 3 ofpart partitions found on MTD device orion_nand
  128. [    6.139489] Creating 3 MTD partitions on "orion_nand":
  129. [    6.201049] 0x000000000000-0x000000100000 : "u-boot"
  130. [    6.298879] 0x000000100000-0x000000300000 : "uImage"
  131. [    6.359487] 0x000000300000-0x000000800000 : "rootfs"
  132. [    6.420088] mtd: device 2 (rootfs) set to be root filesystem
  133. [    6.488006] mtdsplit: squashfs has invalid size in "rootfs"
  134. [    6.555804] libphy: Fixed MDIO Bus: probed
  135. [    6.605134] libphy: orion_mdio_bus: probed
  136. [    6.654296] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4
  137. [    6.736889] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address 00:90:0b:1d:38:44
  138. [    6.841700] mv643xx_eth_port mv643xx_eth_port.1 eth1: port 0 with MAC address 00:90:0b:1d:38:45
  139. [    6.946023] sky2: driver version 1.30
  140. [    6.989917] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
  141. [    7.068084] ehci-pci: EHCI PCI platform driver
  142. [    7.121365] ehci-platform: EHCI generic platform driver
  143. [    7.184041] ehci-orion: EHCI orion driver
  144. [    7.232167] orion-ehci f1050000.ehci: EHCI Host Controller
  145. [    7.297884] orion-ehci f1050000.ehci: new USB bus registered, assigned bus number 1
  146. [    7.389736] orion-ehci f1050000.ehci: irq 29, io mem 0xf1050000
  147. [    7.475396] orion-ehci f1050000.ehci: USB 2.0 started, EHCI 1.00
  148. [    7.547945] hub 1-0:1.0: USB hub found
  149. [    7.593020] hub 1-0:1.0: 1 port detected
  150. [    7.640434] usbcore: registered new interface driver usb-storage
  151. [    7.712919] mvsdio f1090000.mvsdio: Got CD GPIO
  152. [    7.806046] NET: Registered protocol family 10
  153. [    7.860614] NET: Registered protocol family 17
  154. [    7.913912] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.
  155. [    8.065125] Distributed Switch Architecture driver version 0.1
  156. [    8.138410] mv643xx_eth_port mv643xx_eth_port.0 eth0: [0]: detected a Marvell 88E6161 (A2) switch
  157. [    8.272733] mmc0: host does not support reading read-only switch, assuming write-enable
  158. [    8.368652] usb 1-1: new high-speed USB device number 2 using orion-ehci
  159. [    8.449006] mmc0: new high speed SD card at address b368
  160. [    8.513135] mmcblk0: mmc0:b368 USD   1.87 GiB
  161. [    8.567656]  mmcblk0: p1
  162. [    8.656407] hub 1-1:1.0: USB hub found
  163. [    8.701788] hub 1-1:1.0: 2 ports detected
  164. [    8.752492] libphy: dsa slave smi: probed
  165. [    8.807448] 8021q: 802.1Q VLAN Support v1.8
  166. [    8.859445] hctosys: unable to open rtc device (rtc0)
  167. [    8.921321] Waiting 1 sec before mounting root device...
  168. [    9.985437] UBIFS error (pid: 1): cannot open "ubi0:rootfs", error -19
  169. [   10.062128] EXT4-fs (mmcblk0p1): couldn't mount as ext3 due to feature incompatibilities
  170. [   10.161716] EXT4-fs (mmcblk0p1): mounting ext2 file system using the ext4 subsystem
  171. [   10.264191] EXT4-fs (mmcblk0p1): mounted filesystem without journal. Opts: (null)
  172. [   10.353851] VFS: Mounted root (ext2 filesystem) readonly on device 179:1.
  173. [   10.435640] Freeing unused kernel memory: 164K (c04df000 - c0508000)
  174. [   10.708063] init: Console is alive
  175. [   10.883786] sata_mv f1080000.sata: slots 32 ports 1
  176. [   10.943870] scsi host0: sata_mv
  177. [   10.981727] ata1: SATA max UDMA/133 irq 32
  178. [   11.375394] ata1: SATA link down (SStatus 0 SControl F300)
  179. [   11.749364] init: - preinit -
  180. Press the [f] key and hit [enter] to enter failsafe mode
  181. Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level
  182. [   14.911926] mount_root: mounting /dev/root
  183. [   14.961297] EXT4-fs (mmcblk0p1): warning: mounting unchecked fs, running e2fsck is recommended
  184. [   15.068170] EXT4-fs (mmcblk0p1): re-mounted. Opts: (null)
  185. [   15.138444] procd: - early -
  186. [   16.147855] procd: - ubus -
  187. [   17.186555] random: ubusd urandom read with 39 bits of entropy available
  188. [   18.276341] procd: - init -
  189. Please press Enter to activate this console.
  190. [   19.957191] ip6_tables: (C) 2000-2006 Netfilter Core Team
  191. [   20.030055] Netfilter messages via NETLINK v0.30.
  192. [   20.088316] ip_set: protocol 6
  193. [   20.145433] i2c /dev entries driver
  194. [   20.201591] ip_tables: (C) 2000-2006 Netfilter Core Team
  195. [   20.271621] nf_conntrack version 0.5.0 (8037 buckets, 32148 max)
  196. [   20.365110] xt_time: kernel timezone is -0000
  197. [   20.424406] PPP generic driver version 2.4.2
  198. [   20.477235] NET: Registered protocol family 24
  199. [   22.991832] mv643xx_eth_port mv643xx_eth_port.0 eth0: link up, 1000 Mb/s, full duplex, flow control disabled
  200. [   23.283284] dsa dsa@0 lan1: failed to reflect master change
  201. [   23.350093] device lan1 entered promiscuous mode
  202. [   23.405380] device eth0 entered promiscuous mode
  203. [   23.471301] IPv6: ADDRCONF(NETDEV_UP): br-lan: link is not ready
  204. [   23.574603] dsa dsa@0 lan2: failed to reflect master change
  205. [   23.641496] device lan2 entered promiscuous mode
  206. [   23.732705] dsa dsa@0 lan3: failed to reflect master change
  207. [   23.799449] device lan3 entered promiscuous mode
  208. [   24.070903] dsa dsa@0 lan4: failed to reflect master change
  209. [   24.137649] device lan4 entered promiscuous mode
  210. [   24.261774] mv643xx_eth_port mv643xx_eth_port.1 eth1: link up, 1000 Mb/s, full duplex, flow control disabled
  211. [   24.857551] dsa dsa@0 lan3: Link is Down
  212. [   24.906678] dsa dsa@0 lan1: Link is Down
  213. [   24.955718] dsa dsa@0 lan2: Link is Down
  214. [   25.847481] dsa dsa@0 lan4: Link is Down
  215. [   26.947819] dsa dsa@0 lan1: Link is Up - 1Gbps/Full - flow control off
  216. [   27.028191] br-lan: port 1(lan1) entered forwarding state
  217. [   27.092869] br-lan: port 1(lan1) entered forwarding state
  218. [   27.158560] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready
  219. [   29.085384] br-lan: port 1(lan1) entered forwarding state
  220. [   39.643523] mv643xx_eth_port mv643xx_eth_port.1 eth1: link up, 1000 Mb/s, full duplex, flow control disabled
  221. [   41.237310] random: nonblocking pool is initialized
  222. [   54.904799] mv643xx_eth_port mv643xx_eth_port.1 eth1: link up, 1000 Mb/s, full duplex, flow control disabled
  223. [   70.168611] mv643xx_eth_port mv643xx_eth_port.1 eth1: link up, 1000 Mb/s, full duplex, flow control disabled
  224. [   85.428171] mv643xx_eth_port mv643xx_eth_port.1 eth1: link up, 1000 Mb/s, full duplex, flow control disabled
  225. [  100.688366] mv643xx_eth_port mv643xx_eth_port.1 eth1: link up, 1000 Mb/s, full duplex, flow control disabled
  226. [  115.949138] mv643xx_eth_port mv643xx_eth_port.1 eth1: link up, 1000 Mb/s, full duplex, flow control disabled

复制代码

初步测试各端口正常,但是lan口的led灯依然只亮一个,希望有高手能继续完善该dst文件(比如机器有个rst键和开关机键,不知道怎么在dts文件定义),还有就是这个机器该如何划分vlan,是否支持类似eth0.1 eth0.2这类的虚拟接口?



本人编译版本下载链接:https://pan.baidu.com/s/1VEX9Qkh3h0aQEDC6-5R_Tw?pwd=n8ks 提取码: n8ks
我的恩山、我的无线 The best wifi forum is right here.
 楼主| | 显示全部楼层
自己顶。。。
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

来自手机 | 显示全部楼层
帮顶
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

努力,帮顶!!!
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

来自手机 | 显示全部楼层
顶下,加油,↖(^ω^)↗
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| | 显示全部楼层
哎,直接沉了。。貌似没人折腾这个机器了?
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

帮顶哈哈,这个设备救砖用串口即可。
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

大神,我也是用这个机子的,但刷不成功啊,能不能给点经验我啊

点评

附上最新修改的编译补丁: 90-qzt501mv2.patch放入\target\linux\kirkwood\patches-4.3目录 Makefile放入\target\linux\kirkwood\image目录覆盖原文件 120-plug.mk放入\target\linux\kirkwood\profiles覆盖  详情 回复 发表于 2015-12-8 20:10
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| | 显示全部楼层
本帖最后由 wackejohn 于 2015-12-8 20:13 编辑
amwtdkj 发表于 2015-12-8 17:19
大神,我也是用这个机子的,但刷不成功啊,能不能给点经验我啊

附上最新修改的编译补丁:

90-qzt501mv2.patch放入\target\linux\kirkwood\patches-4.3目录

Makefile放入\target\linux\kirkwood\image目录覆盖原文件

120-plug.mk放入\target\linux\kirkwood\profiles覆盖原文件

然后在编译的menuconfig里面可以选择 501m v2进行编译,另外需要配置内核将88E6161的驱动编译进内核,仅编译内核扩展无效,目前我是用SD卡启动的,squashfs镜像目前刷入无法启动,可能是NAND分区没有对应好导致的,希望有高手可以适配下。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

×
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

我就是用squashfs镜像刷机的!但都不行!大神你这个办法是要自己编译的吗?
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

能图形吗?
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| | 显示全部楼层
就是要自己编译的,把我附件里面的几个文件覆盖到源码目录,然后编译  
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

来自手机 | 显示全部楼层
…我手抖把这块板子的uboot给erase了  楼主可以发我邮箱一份吗…kirisamemiyu@gmail.com

点评

已发送至你邮箱。。。  详情 回复 发表于 2016-1-11 09:12
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| | 显示全部楼层
kirisame 发表于 2016-1-11 02:56
…我手抖把这块板子的uboot给erase了  楼主可以发我邮箱一份吗…kirisamemiyu@gmail.com

已发送至你邮箱。。。

点评

大神,能给我也发一份u-boot吗?原版的u-boot给刷没了。  详情 回复 发表于 2016-1-15 15:19
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

wackejohn 发表于 2016-1-11 09:12
已发送至你邮箱。。。

大神,能给我也发一份u-boot吗?原版的u-boot给刷没了。
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

有疑问请添加管理员QQ86788181|手机版|小黑屋|Archiver|恩山无线论坛(常州市恩山计算机开发有限公司版权所有) ( 苏ICP备05084872号 )

GMT+8, 2024-4-27 16:17

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

| 江苏省互联网有害信息举报中心 举报信箱:js12377 | @jischina.com.cn 举报电话:025-88802724 本站不良内容举报信箱:68610888@qq.com 举报电话:0519-86695797

快速回复 返回顶部 返回列表