Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision Next revisionBoth sides next revision | ||
| inbox:toh:d-link:dap-x1860 [2023/04/02 21:07] – Add recent activity thilotee | inbox:toh:d-link:dap-x1860 [2023/11/03 11:19] – add tables maurerle | ||
|---|---|---|---|
| Line 19: | Line 19: | ||
| Openwrt is up and running. | Openwrt is up and running. | ||
| + | |||
| + | ===== Supported Versions ===== | ||
| + | |||
| + | ---- datatable ---- | ||
| + | cols : Brand, Model, Versions, Supported Current Rel, OEM device homepage URL_url, OWrt Forum Topic URL_url, Device Techdata_pageid | ||
| + | headers : Brand, Model, Version, Current Release, OEM Info, Forum Topic, Technical Data | ||
| + | align : c, | ||
| + | filter | ||
| + | filter | ||
| + | ---- | ||
| + | |||
| + | ---- datatable ---- | ||
| + | cols : Unsupported Functions_unsupporteds | ||
| + | filter | ||
| + | filter | ||
| + | ---- | ||
| ==== Supported since commit: ==== | ==== Supported since commit: ==== | ||
| Line 29: | Line 45: | ||
| ==== How to flash OpenWrt to this device ==== | ==== How to flash OpenWrt to this device ==== | ||
| + | |||
| + | ---- datatable ---- | ||
| + | cols : Model, Versions, Supported Current Rel, Firmware OpenWrt Install URL_url, Firmware OpenWrt Upgrade URL_url, Firmware OEM Stock URL_url | ||
| + | headers : Model, Version, Current Release, Firmware OpenWrt Install, Firmware OpenWrt Upgrade, Firmware OEM Stock | ||
| + | align : c,c,c | ||
| + | filter | ||
| + | filter | ||
| + | ---- | ||
| Steps: | Steps: | ||
| Line 35: | Line 59: | ||
| - Connect to the repeater with ethernet cable. | - Connect to the repeater with ethernet cable. | ||
| - Enter recovery mode. (Hold RESET button, before plugin in the repeater, until orange power light starts blinking) | - Enter recovery mode. (Hold RESET button, before plugin in the repeater, until orange power light starts blinking) | ||
| - | - In Chrome open http:// | + | - In Chrome open http:// |
| - Upload factory.bin | - Upload factory.bin | ||
| - Wait a couple of minutes. | - Wait a couple of minutes. | ||
| Line 47: | Line 71: | ||
| - | /*** if info available: uncomment and fill in | + | ===== Hardware Highlights |
| - | ===== Experimental firmware | + | ---- datatable ---- |
| - | + | cols : Model, Versions, CPU, CPU MHz, Flash MB_mbflashs, | |
| - | //List experimental firmware download links here.// | + | header |
| - | + | align : c, | |
| - | //None at this time.// | + | filter |
| - | + | filter | |
| - | | + | ---- |
| - | * trunk image (add link) | + | |
| - | * ... | + | |
| - | ***/ | + | |
| - | + | ||
| - | + | ||
| - | ===== Hardware highlights ===== | + | |
| - | ^ CPU ^ Ram ^ Flash ^ Network | + | |
| - | | MT7621A @880Mhz | + | |
| Line 181: | Line 197: | ||
| **Insert photo of backside label** | **Insert photo of backside label** | ||
| + | Main PCB, top: \\ | ||
| + | {{: | ||
| + | Power supply unit, top: \\ | ||
| + | {{: | ||
| **Insert photo of PCB** | **Insert photo of PCB** | ||
| - | |||
| ==== Opening the case ==== | ==== Opening the case ==== | ||
| Line 193: | Line 212: | ||
| How to connect to the Serial Port of this specific device:\\ | How to connect to the Serial Port of this specific device:\\ | ||
| - | **Insert photo of PCB with markings for serial port** | + | {{: |
| + | 1: Tx, 2: GND, 3: Rx, 4: Vcc \\ | ||
| - | <WRAP BOX> | + | ^ Serial connection parameters\\ for D-Link DAP-X1860 |
| - | FIXME //Replace EXAMPLE by real values.// | + | |
| - | </ | + | |
| - | + | ||
| - | ^ Serial connection parameters\\ for D-Link DAP-X1860 | + | |
| ==== JTAG ==== | ==== JTAG ==== | ||
| Line 206: | Line 222: | ||
| How to connect to the JTAG Port of this specific device:\\ | How to connect to the JTAG Port of this specific device:\\ | ||
| **Insert photo of PCB with markings for JTAG port** | **Insert photo of PCB with markings for JTAG port** | ||
| + | |||
| + | ===== Factory image encryption / decryption ===== | ||
| + | |||
| + | The bootloader recovery system (pressing reset button during plug-in) requires flashing an unencrypted ELX image, | ||
| + | however it will accept and flash just anything. If you accidentally bricked your device by uploading a D-Link stock firmware, | ||
| + | you need to decrypt the stock firmware first and re-upload the decrypted '' | ||
| + | |||
| + | To install OpenWrt, either a recovery image can be flashed via bootloader (which only works in some Chromium-based browsers) | ||
| + | or an encrypted and signed image can be uploaded via the regular web interface (also wirelessly, e.g. using a phone). | ||
| + | |||
| + | The web interface is at '' | ||
| + | |||
| + | If login does not work even after resetting config, try a different browser. | ||
| + | Skip the nag wizard by directly accessing http:// | ||
| + | |||
| + | |||
| + | ==== Image encryption ==== | ||
| + | |||
| + | The input file is assumed to be '' | ||
| + | Within the device firmware, an outdated version of '' | ||
| + | For current versions of openssl, the parameter '' | ||
| + | |||
| + | Download and unpack the GPL Code for DAP-X1860 from https:// | ||
| + | |||
| + | # retrieve image signing key | ||
| + | strings DAP-X1860_GPL/ | ||
| + | |||
| + | # digest stage 1 | ||
| + | openssl dgst -sha512 -out FW.sha512.ds.st1 kernel_DAP-X1860.bin | ||
| + | |||
| + | # sign digest -> stage 1 signature | ||
| + | openssl rsautl -sign -inkey key.pem -in FW.sha512.ds.st1 -pkcs -out FW.signauture.st1 | ||
| + | |||
| + | # tar stage 1 | ||
| + | tar cf FWImage.st1 kernel_DAP-X1860.bin FW.signauture.st1 | ||
| + | |||
| + | # encrypt stage 1 -> stage 2 | ||
| + | openssl enc -md md5 -aes-256-cbc -salt -in FWImage.st1 -out FWImage.st2 -k MB0dBx62oXJXDvt12lETWQ== | ||
| + | |||
| + | # digest stage 2 | ||
| + | openssl dgst -sha512 -out FW.sha512.ds.st2 FWImage.st2 | ||
| + | |||
| + | # sign digest -> stage 2 signature | ||
| + | openssl rsautl -inkey key.pem -sign -in FW.sha512.ds.st2 -out FW.signauture.st2 | ||
| + | |||
| + | # tar stage 2 | ||
| + | tar cf kernel_DAP-X1860-encrypt.bin FWImage.st2 FW.signauture.st2 | ||
| + | |||
| + | |||
| + | ==== Image decryption ==== | ||
| + | |||
| + | To revert the device to D-Link OEM Firmware, it needs to be decrypted as stated in the commit message: | ||
| + | |||
| + | # untar stage 2 | ||
| + | tar -xvf DAP-X1860_RevA_Firmware_101b94.bin | ||
| + | |||
| + | # decrypt stage 2 -> stage 1 | ||
| + | openssl enc -d -md md5 -aes-256-cbc -in FWImage.st2 -out FWImage.st1 -k MB0dBx62oXJXDvt12lETWQ== | ||
| + | |||
| + | # untar stage 1 | ||
| + | tar -xvf FWImage.st1 | ||
| + | |||
| + | You may also verify the signatures using '' | ||
| ===== Bootlogs ===== | ===== Bootlogs ===== | ||
| Line 956: | Line 1035: | ||
| ==== OpenWrt bootlog ==== | ==== OpenWrt bootlog ==== | ||
| <WRAP bootlog> | <WRAP bootlog> | ||
| - | < | + | < |
| + | [ 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 D-Link DAP-X1860 A1 | ||
| + | [ 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] | ||
| + | [ 0.000000] | ||
| + | [ 0.000000] Movable zone start for each node | ||
| + | [ 0.000000] Early memory node ranges | ||
| + | [ 0.000000] | ||
| + | [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x000000000fffffff] | ||
| + | [ 0.000000] percpu: Embedded 11 pages/cpu s16144 r8192 d20720 u45056 | ||
| + | [ 0.000000] pcpu-alloc: s16144 r8192 d20720 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, | ||
| + | [ 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=00041428 | ||
| + | [ 0.000000] Readback ErrCtl register=00041428 | ||
| + | [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off | ||
| + | [ 0.000000] Memory: 248572K/ | ||
| + | [ 0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, | ||
| + | [ 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 100 jiffies. | ||
| + | [ 0.000000] NR_IRQS: 256 | ||
| + | [ 0.000000] clocksource: | ||
| + | [ 0.000004] sched_clock: | ||
| + | [ 0.008141] Calibrating delay loop... 581.63 BogoMIPS (lpj=290816) | ||
| + | [ 0.023253] pid_max: default: 32768 minimum: 301 | ||
| + | [ 0.028083] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) | ||
| + | [ 0.035333] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) | ||
| + | [ 0.046610] rcu: Hierarchical SRCU implementation. | ||
| + | [ 0.051752] dyndbg: Ignore empty _ddebug table in a CONFIG_DYNAMIC_DEBUG_CORE build | ||
| + | [ 0.059902] smp: Bringing up secondary CPUs ... | ||
| + | [ 0.065314] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. | ||
| + | [ 0.065344] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes | ||
| + | [ 0.065359] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. | ||
| + | [ 0.065455] CPU1 revision is: 0001992f (MIPS 1004Kc) | ||
| + | [ 0.074733] Synchronize counters for CPU 1: done. | ||
| + | [ 0.107252] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. | ||
| + | [ 0.107279] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes | ||
| + | [ 0.107292] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. | ||
| + | [ 0.107326] CPU2 revision is: 0001992f (MIPS 1004Kc) | ||
| + | [ 0.124428] Synchronize counters for CPU 2: done. | ||
| + | [ 0.155198] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. | ||
| + | [ 0.155226] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes | ||
| + | [ 0.155239] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. | ||
| + | [ 0.155276] CPU3 revision is: 0001992f (MIPS 1004Kc) | ||
| + | [ 0.164364] Synchronize counters for CPU 3: done. | ||
| + | [ 0.194268] smp: Brought up 1 node, 4 CPUs | ||
| + | [ 0.202638] clocksource: | ||
| + | [ 0.212333] futex hash table entries: 1024 (order: 3, 32768 bytes, linear) | ||
| + | [ 0.219356] pinctrl core: initialized pinctrl subsystem | ||
| + | [ 0.225962] NET: Registered PF_NETLINK/ | ||
| + | [ 0.232536] thermal_sys: | ||
| + | [ 0.233163] cpuidle: using governor teo | ||
| + | [ 0.254378] FPU Affinity set after 1170 emulations | ||
| + | [ 0.268572] clocksource: | ||
| + | [ 0.274638] NET: Registered PF_INET protocol family | ||
| + | [ 0.279753] IP idents hash table entries: 4096 (order: 3, 32768 bytes, linear) | ||
| + | [ 0.287840] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear) | ||
| + | [ 0.296201] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) | ||
| + | [ 0.303906] TCP established hash table entries: 2048 (order: 1, 8192 bytes, linear) | ||
| + | [ 0.311561] TCP bind hash table entries: 2048 (order: 2, 16384 bytes, linear) | ||
| + | [ 0.318693] TCP: Hash tables configured (established 2048 bind 2048) | ||
| + | [ 0.325138] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) | ||
| + | [ 0.331675] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) | ||
| + | [ 0.338972] NET: Registered PF_UNIX/ | ||
| + | [ 0.344642] PCI: CLS 0 bytes, default 32 | ||
| + | [ 0.352729] workingset: timestamp_bits=14 max_order=16 bucket_order=2 | ||
| + | [ 0.363698] squashfs: version 4.0 (2009/ | ||
| + | [ 0.369487] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. | ||
| + | [ 0.384293] mt7621_gpio 1e000600.gpio: | ||
| + | [ 0.390415] mt7621_gpio 1e000600.gpio: | ||
| + | [ 0.396512] mt7621_gpio 1e000600.gpio: | ||
| + | [ 0.402842] mt7621-pci 1e140000.pcie: | ||
| + | [ 0.409557] mt7621-pci 1e140000.pcie: | ||
| + | [ 0.418368] mt7621-pci 1e140000.pcie: | ||
| + | [ 0.426511] mt7621-pci 1e140000.pcie: | ||
| + | [ 0.751555] mt7621-pci 1e140000.pcie: | ||
| + | [ 0.758495] mt7621-pci 1e140000.pcie: | ||
| + | [ 0.763321] mt7621-pci 1e140000.pcie: | ||
| + | [ 0.768191] PCI coherence region base: 0x60000000, mask/ | ||
| + | [ 0.775348] mt7621-pci 1e140000.pcie: | ||
| + | [ 0.781676] pci_bus 0000:00: root bus resource [bus 00-ff] | ||
| + | [ 0.787125] pci_bus 0000:00: root bus resource [mem 0x60000000-0x6fffffff] | ||
| + | [ 0.793953] pci_bus 0000:00: root bus resource [io 0x0000-0xffff] | ||
| + | [ 0.800138] pci 0000: | ||
| + | [ 0.806104] pci 0000: | ||
| + | [ 0.812328] pci 0000: | ||
| + | [ 0.818628] pci 0000: | ||
| + | [ 0.822582] pci 0000: | ||
| + | [ 0.829192] pci 0000: | ||
| + | [ 0.835226] pci 0000: | ||
| + | [ 0.841461] pci 0000: | ||
| + | [ 0.847754] pci 0000: | ||
| + | [ 0.851710] pci 0000: | ||
| + | [ 0.859806] pci 0000: | ||
| + | [ 0.865835] pci 0000: | ||
| + | [ 0.873039] pci 0000: | ||
| + | [ 0.880232] pci 0000: | ||
| + | [ 0.887554] pci 0000: | ||
| + | [ 0.891771] pci 0000: | ||
| + | [ 0.898381] pci 0000: | ||
| + | [ 0.914616] pci 0000: | ||
| + | [ 0.919831] pci 0000: | ||
| + | [ 0.925871] pci 0000: | ||
| + | [ 0.932631] pci 0000: | ||
| + | [ 0.939801] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01 | ||
| + | [ 0.946682] pci 0000: | ||
| + | [ 0.952710] pci 0000: | ||
| + | [ 0.959909] pci 0000: | ||
| + | [ 0.967087] pci 0000: | ||
| + | [ 0.974376] pci 0000: | ||
| + | [ 0.978593] pci 0000: | ||
| + | [ 0.985202] pci 0000: | ||
| + | [ 1.001451] pci 0000: | ||
| + | [ 1.006673] pci 0000: | ||
| + | [ 1.012738] pci 0000: | ||
| + | [ 1.019465] pci 0000: | ||
| + | [ 1.026658] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02 | ||
| + | [ 1.033264] pci 0000: | ||
| + | [ 1.039824] pci 0000: | ||
| + | [ 1.046738] pci 0000: | ||
| + | [ 1.053298] pci 0000: | ||
| + | [ 1.060218] pci 0000: | ||
| + | [ 1.066956] pci 0000: | ||
| + | [ 1.074126] pci 0000: | ||
| + | [ 1.080885] pci 0000: | ||
| + | [ 1.088051] pci 0000: | ||
| + | [ 1.094793] pci 0000: | ||
| + | [ 1.101542] pci 0000: | ||
| + | [ 1.107589] pci 0000: | ||
| + | [ 1.113640] pci 0000: | ||
| + | [ 1.121338] pci 0000: | ||
| + | [ 1.129045] pci 0000: | ||
| + | [ 1.136761] pci 0000: | ||
| + | [ 1.141669] pci 0000: | ||
| + | [ 1.147730] pci 0000: | ||
| + | [ 1.154456] pci 0000: | ||
| + | [ 1.161652] pci 0000: | ||
| + | [ 1.169350] pci 0000: | ||
| + | [ 1.177050] pci 0000: | ||
| + | [ 1.184760] pci 0000: | ||
| + | [ 1.189666] pci 0000: | ||
| + | [ 1.195720] pci 0000: | ||
| + | [ 1.202452] pci 0000: | ||
| + | [ 1.212736] Serial: 8250/16550 driver, 3 ports, IRQ sharing disabled | ||
| + | [ 1.221282] printk: console [ttyS0] disabled | ||
| + | [ 1.225733] 1e000c00.uartlite: | ||
| + | [ 1.234814] printk: console [ttyS0] enabled | ||
| + | [ 1.243128] printk: bootconsole [early0] disabled | ||
| + | [ 1.256061] nand: device found, Manufacturer ID: 0xc2, Chip ID: 0xf1 | ||
| + | [ 1.262545] nand: Macronix MX30LF1G18AC | ||
| + | [ 1.266436] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 | ||
| + | [ 1.274042] mt7621-nand 1e003000.nand: | ||
| + | [ 1.282674] Signature found at block 1023 [0x07fe0000] | ||
| + | [ 1.287843] NMBM management region starts at block 960 [0x07800000] | ||
| + | [ 1.298114] First info table with writecount 0 found in block 960 | ||
| + | [ 1.315895] Second info table with writecount 0 found in block 963 | ||
| + | [ 1.322215] NMBM has been successfully attached | ||
| + | [ 1.326927] 8 fixed-partitions partitions found on MTD device mt7621-nand | ||
| + | [ 1.334223] Creating 8 MTD partitions on " | ||
| + | [ 1.339561] 0x000000000000-0x000000080000 : " | ||
| + | [ 1.351180] 0x000000080000-0x000000100000 : " | ||
| + | [ 1.362641] 0x000000100000-0x000000180000 : " | ||
| + | [ 1.374057] 0x000000180000-0x000000980000 : " | ||
| + | [ 1.462192] 0x000000980000-0x000003580000 : " | ||
| + | [ 1.919405] 0x000003580000-0x000003980000 : " | ||
| + | [ 1.967803] 0x000003980000-0x000004000000 : " | ||
| + | [ 2.040759] 0x000004000000-0x000007800000 : " | ||
| + | [ 2.631503] Concatenating MTD devices: | ||
| + | [ 2.635369] (0): " | ||
| + | [ 2.638307] (1): " | ||
| + | [ 2.641220] into device " | ||
| + | [ 2.645120] 1 fixed-partitions partitions found on MTD device virtual_flash | ||
| + | [ 2.652097] Creating 1 MTD partitions on " | ||
| + | [ 2.657537] 0x000000000000-0x000006400000 : " | ||
| + | [ 3.805373] mt7530 mdio-bus: | ||
| + | [ 3.818640] mtk_soc_eth 1e100000.ethernet eth0: mediatek frame engine at 0xbe100000, irq 21 | ||
| + | [ 3.830004] i2c_dev: i2c /dev entries driver | ||
| + | [ 3.838335] NET: Registered PF_INET6 protocol family | ||
| + | [ 3.845945] Segment Routing with IPv6 | ||
| + | [ 3.849770] In-situ OAM (IOAM) with IPv6 | ||
| + | [ 3.853851] NET: Registered PF_PACKET protocol family | ||
| + | [ 3.859414] 8021q: 802.1Q VLAN Support v1.8 | ||
| + | [ 3.870132] mt7530 mdio-bus: | ||
| + | [ 3.893600] mt7530 mdio-bus: | ||
| + | [ 3.901908] mt7530 mdio-bus: | ||
| + | [ 3.904430] mt7530 mdio-bus:1f lan (uninitialized): | ||
| + | [ 3.923594] DSA: tree 0 setup | ||
| + | [ 3.930147] UBI: auto-attach mtd8 | ||
| + | [ 3.933547] ubi0: attaching mtd8 | ||
| + | [ 6.004354] ubi0: scanning is finished | ||
| + | [ 6.026033] ubi0: attached mtd8 (name " | ||
| + | [ 6.031598] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes | ||
| + | [ 6.038503] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 | ||
| + | [ 6.045324] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 | ||
| + | [ 6.052298] ubi0: good PEBs: 800, bad PEBs: 0, corrupted PEBs: 0 | ||
| + | [ 6.058316] ubi0: user volume: 2, internal volumes: 1, max. volumes count: 128 | ||
| + | [ 6.065567] ubi0: max/mean erase counter: 3/1, WL threshold: 4096, image sequence number: 1679311391 | ||
| + | [ 6.074712] ubi0: available PEBs: 0, total reserved PEBs: 800, PEBs reserved for bad PEB handling: 16 | ||
| + | [ 6.083992] ubi0: background thread " | ||
| + | [ 6.086453] block ubiblock0_0: | ||
| + | [ 6.095583] ubiblock: device ubiblock0_0 (rootfs) set to be root filesystem | ||
| + | [ 6.112064] VFS: Mounted root (squashfs filesystem) readonly on device 254:0. | ||
| + | [ 6.123722] Freeing unused kernel image (initmem) memory: 1240K | ||
| + | [ 6.129718] This architecture does not have kernel memory protection. | ||
| + | [ 6.136193] Run /sbin/init as init process | ||
| + | [ 6.140306] | ||
| + | [ 6.140318] | ||
| + | [ 6.140324] | ||
| + | [ 6.140329] | ||
| + | [ 6.140335] | ||
| + | [ 6.619313] init: Console is alive | ||
| + | [ 6.623280] init: - watchdog - | ||
| + | [ 8.081901] kmodloader: loading kernel modules from / | ||
| + | [ 8.219390] usbcore: registered new interface driver usbfs | ||
| + | [ 8.225151] usbcore: registered new interface driver hub | ||
| + | [ 8.230686] usbcore: registered new device driver usb | ||
| + | [ 8.275487] ehci_hcd: USB 2.0 ' | ||
| + | [ 8.291716] SCSI subsystem initialized | ||
| + | [ 8.300998] fsl-ehci: Freescale EHCI Host controller driver | ||
| + | [ 8.308460] ehci-platform: | ||
| + | [ 8.324955] usbcore: registered new interface driver usb-storage | ||
| + | [ 8.333474] usbcore: registered new interface driver uas | ||
| + | [ 8.339720] kmodloader: done loading kernel modules from / | ||
| + | [ 8.354033] init: - preinit - | ||
| + | [ 9.265123] random: jshn: uninitialized urandom read (4 bytes read) | ||
| + | [ 9.408606] random: jshn: uninitialized urandom read (4 bytes read) | ||
| + | [ 9.471936] random: jshn: uninitialized urandom read (4 bytes read) | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ 104.201790] IPv6: ADDRCONF(NETDEV_CHANGE): | ||
| + | [ 104.208813] br-lan: port 3(phy1-ap0) entered blocking state | ||
| + | [ 104.214484] br-lan: port 3(phy1-ap0) entered forwarding state | ||
| + | </ | ||
| </ | </ | ||
| Line 963: | Line 1380: | ||
| ===== Tags ===== | ===== Tags ===== | ||
| [[meta: | [[meta: | ||
| - | {{tag>EXAMPLETAG unsupported}} | + | {{tag>ramips mt7621 128nand 256ram 1port gigabitethernet 2wnic 802.11bgn 802.11ax u-boot 2core mips 1nic internalantenna serial 2button wall_plug mains_powered |