├── .gitignore ├── README.md ├── c6300bd ├── C6300BD_1TLAUS_V1.04.15u_171031.bin └── bootloader.bin ├── cbw383zn ├── CBW-383ZN-0081.545.392116mp5.799.009.bin ├── bootloader.bin └── image.bin ├── cga4233 └── eu │ ├── .gitattributes │ ├── README.md │ ├── bootlog_cm.txt │ ├── bootlog_rg.txt │ ├── bootlog_rg_unlocked.txt │ ├── cm_dyn.bin │ ├── cm_perm.bin │ ├── cmboot.bin │ ├── cmrun1.bin │ ├── flash1.bin │ ├── label.jpg │ ├── mtd0_flash1.rdknonvol.bin │ ├── mtd11_flash0.bolt.bin │ ├── mtd12_flash0.cmnonvol1.bin │ ├── mtd13_flash0.DevProfile_RO.bin │ ├── mtd14_flash0.SSBL_ALT.bin │ ├── mtd15_flash0.macadr.bin │ ├── mtd16_flash0.Trackers0.bin │ ├── mtd17_flash0.Trackers1.bin │ ├── mtd18_flash0.nvram.bin │ ├── mtd19_flash0.nvram1.bin │ ├── mtd1_flash1.BankerTable.bin │ ├── mtd20_flash0.devtree0.bin │ ├── mtd21_flash0.devtree1.bin │ ├── mtd22_flash0.cmnonvol0.bin │ ├── mtd23_flash0.DevProfile.bin │ ├── mtd24_flash0.TSFS_Exception.bin │ ├── mtd25_flash0.rgnonvol0.bin │ ├── mtd26_flash0.rgnonvol1.bin │ ├── mtd27_flash0.bin │ ├── mtd2_flash1.Stage2Update.bin │ ├── mtd3_flash1.kernel0.bin │ ├── mtd4_flash1.cm0.bin │ ├── mtd5_flash1.rg0.bin │ ├── mtd6_flash1.kernel1.bin │ ├── mtd7_flash1.cm1.bin │ ├── mtd8_flash1.rg1.bin │ ├── mtd9_flash1.unused.bin │ ├── nvram_root.bin │ └── proc_mtd.txt ├── cm500 ├── bootloader.bin ├── image1.bin └── image2.bin ├── ddw36c ├── bootloader.bin ├── image1.bin └── image2.bin ├── epc3008 ├── bootloader.bin └── e3000-c1000r5593-150723c.bin ├── evw32c ├── EVW32C_0N-SBB-2.4.1008-SIP_sto.bin ├── EVW32C_VECTRA_2.7.1002-NCS_sto.bin ├── bcm3384TP1_apps.bin_nand_ubifs_bs128k_ps2k.7z ├── bcm3384TP1_kernel └── bootloader.bin ├── fast3890 └── FAST3890_TLC_50.10.11.T1_sto.bin ├── tc7200 ├── LNXDC.01.01-apps-121220.bin ├── LNXDC.01.01-kernel-121220.bin ├── LNXDC.01.01-rootfs-121220.bin ├── TC7200.20-DC.01.03-140425-F-1FF.bin ├── TC7200.20-DC.36.05-130422-F-1C1.bin ├── TC7200U-D6.01.27-131031-F-1C1.bin ├── TC7200U-D6.02.11-141019-F-1C1.bin ├── TC7200U-D6.02.42-180321-F-1C1.bin └── bootloader.bin ├── twg850 ├── TWG850-4U-9D.01.04-090108-S-001.bin ├── TWG850-4U-9D.01.09-100528-S-001.bin └── bootloader.bin └── twg870 ├── TWG870U-BA.01.36-110429-F-1C1.bin ├── TWG870U-BA.01.38-110803-F-1C1.bin ├── TWG870U-BA.01.75-130605-F-1C1.bin └── bootloader.bin /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # bcm2-dumps 2 | 3 | Firmware images for BCM33xx modems, mostly dumped using 4 | [bcm2-utils](https://github.com/jclehner/bcm2-utils). 5 | -------------------------------------------------------------------------------- /c6300bd/C6300BD_1TLAUS_V1.04.15u_171031.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/c6300bd/C6300BD_1TLAUS_V1.04.15u_171031.bin -------------------------------------------------------------------------------- /c6300bd/bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/c6300bd/bootloader.bin -------------------------------------------------------------------------------- /cbw383zn/CBW-383ZN-0081.545.392116mp5.799.009.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cbw383zn/CBW-383ZN-0081.545.392116mp5.799.009.bin -------------------------------------------------------------------------------- /cbw383zn/bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cbw383zn/bootloader.bin -------------------------------------------------------------------------------- /cbw383zn/image.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cbw383zn/image.bin -------------------------------------------------------------------------------- /cga4233/eu/.gitattributes: -------------------------------------------------------------------------------- 1 | mtd5_flash1.rg0.bin filter=lfs diff=lfs merge=lfs -text 2 | mtd8_flash1.rg1.bin filter=lfs diff=lfs merge=lfs -text 3 | -------------------------------------------------------------------------------- /cga4233/eu/README.md: -------------------------------------------------------------------------------- 1 | Technicolor CGA4233EU 2 | ===================== 3 | 4 | **NOTE: The `rg0` and `nvram` images are _not_ original. They have been modified to enable the Linux console, and 5 | login-less telnet on port 2323!** 6 | 7 | The particular device's label these images were dumped off of is shown below: 8 | 9 | ![label](label.jpg) 10 | 11 | 12 | The first NOR flash dump (`flash1.bin`) was created by desoldering the BGA chip. The other `flash1*.bin` dumps were created after getting root on the Linux part of the firmware. 13 | 14 | The flash layout (taken from `/proc/mtd` is as follows): 15 | 16 | ``` 17 | dev: size erasesize name 18 | mtd0: 03520000 00020000 "flash1.rdknonvol" 19 | mtd1: 00120000 00020000 "flash1.BankerTable" 20 | mtd2: 00120000 00020000 "flash1.Stage2Update" 21 | mtd3: 00740000 00020000 "flash1.kernel0" 22 | mtd4: 01360000 00020000 "flash1.cm0" 23 | mtd5: 0c5e0000 00020000 "flash1.rg0" 24 | mtd6: 00740000 00020000 "flash1.kernel1" 25 | mtd7: 01360000 00020000 "flash1.cm1" 26 | mtd8: 0c5e0000 00020000 "flash1.rg1" 27 | mtd9: 007a0000 00020000 "flash1.unused" 28 | mtd10: 20000000 00020000 "flash1" 29 | mtd11: 00090000 00010000 "flash0.bolt" 30 | mtd12: 00060000 00010000 "flash0.cmnonvol1" 31 | mtd13: 00010000 00010000 "flash0.DevProfile_RO" 32 | mtd14: 000d0000 00010000 "flash0.SSBL_ALT" 33 | mtd15: 00030000 00010000 "flash0.macadr" 34 | mtd16: 00010000 00010000 "flash0.Trackers0" 35 | mtd17: 00010000 00010000 "flash0.Trackers1" 36 | mtd18: 00020000 00010000 "flash0.nvram" 37 | mtd19: 00020000 00010000 "flash0.nvram1" 38 | mtd20: 00020000 00010000 "flash0.devtree0" 39 | mtd21: 00020000 00010000 "flash0.devtree1" 40 | mtd22: 00060000 00010000 "flash0.cmnonvol0" 41 | mtd23: 00010000 00010000 "flash0.DevProfile" 42 | mtd24: 00010000 00010000 "flash0.TSFS_Exception" 43 | mtd25: 00070000 00010000 "flash0.rgnonvol0" 44 | mtd26: 00070000 00010000 "flash0.rgnonvol1" 45 | mtd27: 00800000 00010000 "flash0" 46 | ``` 47 | 48 | This device's unique AES-256 keys (used for encrypting nonvol data) are: 49 | 50 | `cd7c76032e4c4dd97778b322bb627422311f2df843e91d92c63fd6625272c4c8` (big endian, i.e. CM) 51 | `03767ccdd94d4c2e22b37877227462bbf82d1f31921de94362d63fc6c8c47252` (little endian, i.e. RG) 52 | 53 | Bootlogs of the two UART consoles: 54 | 55 | * [RG](bootlog_rg.txt) (stock) 56 | * [RG](bootlog_rg_unlocked.txt) (unlocked) 57 | * [CM](bootlog_cm.txt) 58 | 59 | If you want root access to the Linux part, flash `nvram_root.bin` to both `flash0.nvram` 60 | and `flash0.nvram1` partitions. This launches Linux with `init=/bin/sh`. 61 | 62 | Also check out [this thread](https://github.com/jclehner/bcm2-utils/issues/34) for some more info. 63 | 64 | -------------------------------------------------------------------------------- /cga4233/eu/bootlog_cm.txt: -------------------------------------------------------------------------------- 1 | BCM339060 2 | BCM3390G0 Bootloader version 2.7.0alpha4, Built by jenkins on Sep 7 2019 at 07:03:41 3 | RAM Windows size 63 mb 4 | 5 | Loading compressed image 2 6 | Loading 3,936,152 compressed bytes to 0x83a30000 7 | Decompressing DOCSIS image at 0x83a3005c to 0x80004000 8 | Decompressed image size 18,213,396 bytes (0x80004000-0x81162a14) 9 | Jumping to application at 0x80004000 10 | 11 | eCos - hal_diag_init 12 | 13 | 14 | Using 66060288(0x03f00000) Bytes Ram Size from Mbox6. 15 | 16 | 17 | Using 66060288(0x03f00000) Bytes Ram Size from Mbox6. 18 | 19 | 20 | Using 66060288(0x03f00000) Bytes Ram Size from Mbox6. 21 | 22 | 23 | Using 66060288(0x03f00000) Bytes Ram Size from Mbox6. 24 | BcmHeapInitialize starts 25 | Init device '/dev/BrcmTelnetIoDriver' 26 | Init device '/dev/ttydiag' 27 | Init tty channel: 811622a8 28 | Init device '/dev/tty0' 29 | Init tty channel: 811622c8 30 | Init device '/dev/haldiag' 31 | HAL/diag SERIAL init 32 | Init device '/dev/ser0' 33 | BCM 33XX SERIAL init - dev: d3c00640.1 34 | Set output buffer - buf: 0x81332d40 len: 4096 35 | Set input buffer - buf: 0x81333d40 len: 4096 36 | BCM 33XX SERIAL config - UART = d3c00640, chan = 810ef9d4 37 | Init device '/dev/ser1' 38 | Init device '/dev/ser2' 39 | InitBoard: MIPS frequency 599900000 40 | InitBoard: MANUFACT bits 0xa 41 | +------------------------------------------------------------------------+ 42 | | This image is built using remote flash as nonvol. | 43 | +------------------------------------------------------------------------+ 44 | 45 | [00:00:00 01/01/1970] [tStartup] BcmBfcSystemFactory::NewBfcSystem: BcmEmtaCmDocsisSystem 46 | [00:00:00 01/01/1970] [tStartup] BcmBfcStdEmbeddedTarget::InitStorageDrivers: (BFC Target) Loading BootloaderStore driver... 47 | [00:00:00 01/01/1970] [tStartup] BcmBfcStdEmbeddedTarget::InitStorageDrivers: (BFC Target) Loading ProgramStore driver... 48 | [00:00:00 01/01/1970] [tStartup] BcmBfcStdEmbeddedTarget::InitStorageDrivers: (BFC Target) Loading NonVol driver... 49 | [00:00:00 01/01/1970] [tStartup] BcmBfcStdEmbeddedTarget::InitStorageDrivers: (BFC Target) Storage drivers initialized successfully. 50 | [00:00:00 01/01/1970] [tStartup] BcmBfcStdEmbeddedTarget::InitDeviceAbstractions: (BFC Target) Creating singletons for ProgramStore/BootloaderStore/NonVol devices... 51 | Detecting the next image number that we will store to by default... 52 | Bootloader indicates we are running image 2 53 | Image2 header is not valid! 54 | By default, we will dload to image number 2! 55 | 56 | ProgramStoreDriverSetAlternateSignature:: Alternate signature is set to D012 57 | [00:00:00 01/01/1970] [tStartup] BcmBfcStdEmbeddedTarget::InitDeviceAbstractions: (BFC Target) Device abstraction singletons created successfully. 58 | 59 | Create task ITCi, priority set toCreating a new host CPU_COMM DQM manager. Instance: 83c78e68, DQM_REGS = d3801c00 60 | Creating a new host CPU_COMM DQM manager. Instance: 83c772b8, DQM_REGS = d3801c00 61 | Creating a new host CPU_COMM DQM manager. Instance: 83c74904, DQM_REGS = d3801c00 62 | Creating a new host CPU_COMM DQM manager. Instance: 83c74854, DQM_REGS = d3801c00 63 | 2Creating a new host CPU_COMM DQM manager. Instance: 83c72598, DQM_REGS = d3801c00 64 | Creating a new host CPU_COMM DQM manager. Instance: 83c724e0, DQM_REGS = d3801c00 65 | 3Creating a new host CPU_COMM DQM manager. Instance: 83c7021c, DQM_REGS = d3801c00 66 | Creating a new host CPU_COMM DQM manager. Instance: 83c70164, DQM_REGS = d3801c00 67 | , stacksize=8704 68 | Create task ITCm, priority set to 23, stacksize=8704 69 | Create task ITCf, priority set to 23, stacksize=8704 70 | Create task ITCn, priority set to 23, stacksize=8704 71 | Create task ITCz, priority set to 23, stacksize=8704 72 | Create task ITCv, priority set to 23, stacksize=8704 73 | Create task ITCw, priority set to 23, stacksize=8704 74 | Create task ITCb, priority set to 23, stacksize=8704 75 | Create task ITCt, priority set to 23, stacksize=8704 76 | Create task ITCC, priority set to 23, stacksize=8704 77 | Create task ITCC1, priority set to 23, stacksize=8704 78 | Create task ITCTP1, priority set to 23, stacksize=8704 79 | Create task ITCSVM, priority set to 23, stacksize=8704 80 | LedController Version 11-1-2018 81 | BcmCmTCHNonVolSettings::GetSingletonInstance: WARNING - the singleton instance is NULL, and someone is accessing it! 82 | 83 | Init Console Disabled 84 | 85 | =====TCHnv===== BcmCmTCHNonVolSettings::TchSetTchVersionUpgradeManagement value=2 86 | 87 | TCH DBG diplexer mode reseted to default value (auto) in dynamic section 88 | 89 | TCH DBG HW_ID initialisation to default in dynamic section 90 | [00:00:00 01/01/1970] [tStartup] BcmCmBpiNonVolSettings::BcmCmBpiNonVolSettings: (Docsis CM BPI NonVol Settings) WARNING - Singleton pointer is not NULL! There are multiple instances! Leaving the singleton pointer alone... 91 | >>>>>>> CreateAndRegisterNonVolSettings : Instanciation of BcmCmVendorBpiNonVolSettings <<<<<<< 92 | mtaNvCalcChecksum: checksum= 1273101532 93 | Reading Permanent settings from non-vol... 94 | ITCRPC: ITC CTL Tx sent initial handshake CODE0 95 | ITCRPC: ITC1 CTL Tx sent initial handshake CODE0 96 | ITCRPC: ITC CTL TP1 Tx sent initial handshake CODE0 97 | ITCRPC: ITC CTL SVM Tx sent initial handshake CODE0 98 | ITCRPC: ITC CTL Rx got first message event 99 | ITCRPC: ITC CTL Tx sent reply handshake message CODE1 100 | ITCRPC: ITC CTL SVM Rx got first message event 101 | ITCRPC: ITC CTL SVM Tx sent reply handshake message CODE1 102 | RPC Version 00000005 103 | DQM Init complete for tunnel 0 104 | RPC Version 00000005 105 | DQM Init complete for tunnel 3 106 | msg->msgData[1] = 1 107 | Warning: service 8 rx unregistered function 1 108 | Checksum for permanent settings: 0xb6053ee6 109 | [00:00:01 01/01/1970] [tStartup] BcmCmTCHNonVolSettings::ReadFromImpl: (CM TCH NonVol Settings) ERROR - Buffer too small; doesn't have all of the Permanent settings! 110 | [00:00:01 01/01/1970] [tStartup] BcmCmTCHNonVolSettings::ReadFrom: (CM TCH NonVol Settings) ERROR - CM TCH NonVol Settings failed to read all of its settings from the buffer! 111 | [00:00:01 01/01/1970] [tStartup] BcmBfcAppCompositeNonVolSettings::ReadFrom: (BFC App Composite Nonvol Settings) ERROR - A contained Settings object failed to parse the Group settings! 112 | [00:00:01 01/01/1970] [tStartup] BcmBfcAppCompositeNonVolSettings::ReadFrom: (BFC App Composite Nonvol Settings) WARNING - Read an unrecognized settings group from the buffer (magic number 0x73656375 'secu'); storing in raw form for compatibility... 113 | [00:00:01 01/01/1970] [tStartup] BcmCmTCHNonVolSettings::IsDefault: (CM TCH NonVol Settings) Permanent settings are default! 114 | [00:00:01 01/01/1970] [tStartup] BcmEdvaNonVolSettings::IsDefault: (EDVA NonVol Settings) Permanent settings are default! 115 | 116 | * 117 | * 118 | * One or more of the settings groups was missing, possibly as a result of a code upgrade. 119 | * 120 | * 121 | Settings were read and verified. 122 | 123 | 124 | Reading Dynamic settings from non-vol... 125 | Checksum for dynamic settings: 0x1d0fc2b8 126 | 127 | ReadFromImpl Console: 2, then set it! 128 | 129 | 130 | TCH DBG ReadFromImpl (dynamic section) : fHwSwitchableDiplexer mode = 0 131 | 132 | TCH DBG ReadFromImpl (dynamic section): Hardware Version (Layout.Model.BOM) = 3.3.2 133 | =====TCHnv===== BcmCmTCHNonVolSettings::fTchCurrentVoipStack value=2 134 | BcmCmTCHNonVolSettings::fTchCmScanFreq value= 0 135 | Settings were read and verified. 136 | 137 | Console input has been disabled in non-vol. 138 | Console output has been disabled in non-vol! Goodbye... 139 | -------------------------------------------------------------------------------- /cga4233/eu/bootlog_rg.txt: -------------------------------------------------------------------------------- 1 | PU 01 2 | BCM33900060 3 | PRID33900060 4 | v1.18 5 | RR:00000001 6 | BFW 7 | layoutNum = 3 8 | Board is FGR or later. 9 | AVS init... 10 | B11 11 | STB V=00002817 D=000002b0 12 | DCM V=0000282f D=000002a3 13 | AVS init OK 14 | AVS load:select_image: addr_offset: 00005800 part_offset: 00000000 bootStatus: 2a002b00 15 | AVS load_code offset =00005800 16 | LOADED 17 | AVS: overtemp mon ON 18 | 19 | single board 20 | OTP Market ID = 00000c3e 21 | FSBL Market ID = 00000c3e 22 | Market ID Mask = 00ffffff 23 | Secure Boot 24 | MARKET ID VALIDATION : PASS 25 | MEMSYS-ALT 26 | MEMSYS AUTHENTICATION: PASS 27 | SHMOO 03030100 BLD:memsys_3.3.0.0-5-gbbc1e43a0 HW:hpg0_generic V:3.3.1.0 28 | MCB: FLEX 29 | AVS start:status=000000ff 30 | STB: Current voltage=00000366(870) 31 | temperature=00008ad1(35537) 32 | PV=00000333(819) 33 | MV=0000035c(860) 34 | DCD: Current voltage=00000367(871) 35 | temperature=000088ea(35050) 36 | PV=00000337(823) 37 | MV=0000035c(860) 38 | AVS FW rev=30313978 [0.1.9.x] 39 | OK 40 | DDR0: MCB#2-2 !@ ffe0e318 <= ffe0de50 MEMSYS-0 @ f1500000 41 | DDR SCRAMBLER ENABLED 42 | OK 43 | Secure boot detected 44 | SSBL.SAO PROBE... found 45 | COPY CODE... DONE - CRC OK 46 | SSBL AUTHENTICATION: PASS 47 | Using SSBL_ALT 48 | 49 | T E C H N I C O L O R 50 | _ _ _ _ _ _ _ _ _ _ _ _ _ _ 51 | /_/_/_/_/_/_/_/_/_/_/_/_/_/_/ eBOLT 3.62.7.10 Bank SSBL_ALT 52 | | | |_| | | |_| |_|_| |_| | | 53 | |_| | |_| |_| | | | |_| |_|_| 54 | |_| |_| |_| |_| |_| 55 | 56 | RESET CAUSE: 0x000001 power_on (1 of 32 possible causes) 57 | Overriding chip ID to be 3390, actual chip ID 0000 58 | MAC ADDRESS CHECKSUM FAILED 59 | MAC ADDRESS NOT PROGRAMMED; use macprog command 60 | AVS: park check 61 | AVS: temperature monitoring enabled 62 | AVS: STB: V=0.870V, T=+36.024C, PV=0.819V, MV=0.860V, FW=30313978 [0.1.9.x] 63 | AVS: DCD: V=0.869V, T=+35.537C, PV=0.823V, MV=0.860V 64 | warning: did not add macaddr to /pcie@f10c0000/pci@5,0 65 | Uncompressing Linux... done, booting the kernel. 66 | 67 | -------------------------------------------------------------------------------- /cga4233/eu/bootlog_rg_unlocked.txt: -------------------------------------------------------------------------------- 1 | PU 01 2 | BCM33900060 3 | PRID33900060 4 | v1.18 5 | RR:00000001 6 | BFW 7 | layoutNum = 3 8 | Board is FGR or later. 9 | AVS init... 10 | B11 11 | STB V=00002823 D=000002af 12 | DCM V=0000283c D=000002a0 13 | AVS init OK 14 | AVS load:select_image: addr_offset: 00005800 part_offset: 00000000 bootStatus: 2a002b00 15 | AVS load_code offset =00005800 16 | LOADED 17 | AVS: overtemp mon ON 18 | 19 | single board 20 | OTP Market ID = 00000c3e 21 | FSBL Market ID = 00000c3e 22 | Market ID Mask = 00ffffff 23 | Secure Boot 24 | MARKET ID VALIDATION : PASS 25 | MEMSYS-ALT 26 | MEMSYS AUTHENTICATION: PASS 27 | SHMOO 03030100 BLD:memsys_3.3.0.0-5-gbbc1e43a0 HW:hpg0_generic V:3.3.1.0 28 | MCB: FLEX 29 | AVS start:status=000000ff 30 | STB: Current voltage=00000367(871) 31 | temperature=000075e4(30180) 32 | PV=00000333(819) 33 | MV=0000035d(861) 34 | DCD: Current voltage=00000365(869) 35 | temperature=00007216(29206) 36 | PV=0000033b(827) 37 | MV=0000035a(858) 38 | AVS FW rev=30313978 [0.1.9.x] 39 | OK 40 | DDR0: MCB#2-2 !@ ffe0e318 <= ffe0de50 MEMSYS-0 @ f1500000 41 | DDR SCRAMBLER ENABLED 42 | OK 43 | Secure boot detected 44 | SSBL.SAO PROBE... found 45 | COPY CODE... DONE - CRC OK 46 | SSBL AUTHENTICATION: PASS 47 | Using SSBL_ALT 48 | 49 |  T E C H N I C O L O R  50 |  _ _ _ _ _ _ _ _ _ _ _ _ _ _  51 |  /_/_/_/_/_/_/_/_/_/_/_/_/_/_/  eBOLT 3.62.7.10 Bank SSBL_ALT 52 |  | | |_| | | |_| |_|_| |_| | |  53 |  |_| | |_| |_| | | | |_| |_|_|  54 |  |_| |_| |_| |_| |_|  55 |  56 | RESET CAUSE: 0x000001 power_on (1 of 32 possible causes) 57 | Overriding chip ID to be 3390, actual chip ID 0000 58 | MAC ADDRESS CHECKSUM FAILED 59 | MAC ADDRESS NOT PROGRAMMED; use macprog command 60 | AVS: park check 61 | AVS: temperature monitoring enabled 62 | AVS: STB: V=0.870V, T=+30.667C, PV=0.819V, MV=0.861V, FW=30313978 [0.1.9.x] 63 | AVS: DCD: V=0.867V, T=+30.180C, PV=0.827V, MV=0.858V 64 | warning: did not add macaddr to /pcie@f10c0000/pci@5,0 65 | Uncompressing Linux... done, booting the kernel. 66 | [ 0.000000] Booting Linux on physical CPU 0x0 67 | [ 0.000000] Initializing cgroup subsys cpuset 68 | [ 0.000000] Initializing cgroup subsys cpu 69 | [ 0.000000] Initializing cgroup subsys cpuacct 70 | [ 0.000000] Linux version 3.14.28-Prod_18.1 (jenkins@chenscbb02) (gcc version 4.8.4 (GCC) ) #1 SMP Sat Sep 7 08:09:48 IST 2019 71 | [ 0.000000] CPU: ARMv7 Processor [420f00f3] revision 3 (ARMv7), cr=30c7387d 72 | [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache 73 | [ 0.000000] Machine model: cgm4233 74 | [ 0.000000] moving dtb from 0x0000000013c3c000 to 0x000000000086de0c 75 | [ 0.000000] Reserved memory: reserved region for node 'reserved-nodma@00000000': base 0x0000000000000000, size 0 MiB 76 | [ 0.000000] Reserved memory: reserved region for node 'reserved-RG-memc0': base 0x0000000004000000, size 220 MiB 77 | [ 0.000000] Memory policy: Data cache writealloc 78 | [ 0.000000] MCP: Disabling write pairing 79 | [ 0.000000] PERCPU: Embedded 8 pages/cpu @9fbdd000 s8768 r8192 d15808 u32768 80 | [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 130048 81 | [ 0.000000] Kernel command line: ubi.mtd=flash1.rg1 rootfstype=ubifs root=ubi0:rootfs platformboot ubifs_apps jffs2_data coherent_pool=1M noXonsole Xonsole=null 82 | [ 0.000000] PID hash table entries: 2048 (order: 1, 8192 bytes) 83 | [ 0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes) 84 | [ 0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes) 85 | [ 0.000000] Memory: 285736K/524288K available (5987K kernel code, 318K rwdata, 1824K rodata, 256K init, 201K bss, 238552K reserved, 0K cma-reserved) 86 | [ 0.000000] Virtual kernel memory layout: 87 | [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB) 88 | [ 0.000000] fixmap : 0xfff00000 - 0xfffe0000 ( 896 kB) 89 | [ 0.000000] vmalloc : 0xa0800000 - 0xff000000 (1512 MB) 90 | [ 0.000000] lowmem : 0x80000000 - 0xa0000000 ( 512 MB) 91 | [ 0.000000] modules : 0x7f000000 - 0x80000000 ( 16 MB) 92 | [ 0.000000] .text : 0x80008000 - 0x807a9014 (7813 kB) 93 | [ 0.000000] .init : 0x807aa000 - 0x807ea240 ( 257 kB) 94 | [ 0.000000] .data : 0x807ec000 - 0x8083b800 ( 318 kB) 95 | [ 0.000000] .bss : 0x8083b808 - 0x8086de0c ( 202 kB) 96 | [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 97 | [ 0.000000] Hierarchical RCU implementation. 98 | [ 0.000000] RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2. 99 | [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 100 | [ 0.000000] NR_IRQS:16 nr_irqs:16 16 101 | [ 0.000000] irq_brcmstb_l2: registered L2 intc (mem: 0xfc403000, parent irq: 95) 102 | [ 0.000000] irq_brcmstb_l2: registered L2 intc (mem: 0xfc4a1000, parent irq: 63) 103 | [ 0.000000] irq_brcmstb_l2: registered L2 intc (mem: 0xfc410640, parent irq: 97) 104 | [ 0.000000] irq_brcmstb_l2: registered L2 intc (mem: 0xfc431200, parent irq: 50) 105 | [ 0.000000] irq_bcm7120_l2: registered BCM7120 L2 intc (mem: 0xfc40a600, parent IRQ(s): 2) 106 | [ 0.000000] irq_bcm7120_l2: registered BCM7120 L2 intc (mem: 0xfc417200, parent IRQ(s): 3) 107 | [ 0.000000] Architected cp15 timer(s) running at 27.00MHz (virt). 108 | [ 0.000003] sched_clock: 56 bits at 27MHz, resolution 37ns, wraps every 2545165795328ns 109 | [ 0.000008] Switching to timer-based delay loop 110 | [ 0.000133] Calibrating delay loop (skipped), value calculated using timer frequency.. 54.00 BogoMIPS (lpj=270000) 111 | [ 0.000143] pid_max: default: 32768 minimum: 301 112 | [ 0.000238] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes) 113 | [ 0.000244] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) 114 | [ 0.003649] Initializing cgroup subsys debug 115 | [ 0.003660] Initializing cgroup subsys devices 116 | [ 0.003666] Initializing cgroup subsys freezer 117 | [ 0.003671] Initializing cgroup subsys blkio 118 | [ 0.003697] CPU: Testing write buffer coherency: ok 119 | [ 0.003869] CPU0: update cpu_power 1024 120 | [ 0.003876] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000 121 | [ 0.003916] Setting up static identity map for 0x5b1d00 - 0x5b1d58 122 | [ 0.005718] ubus 6 segment capture space: d3e00000 size 1000 123 | [ 0.005726] ubus 2 segment capture space: d7e00000 size 1000 124 | [ 0.006337] CPU1: Booted secondary processor 125 | [ 0.006355] CPU1: update cpu_power 1024 126 | [ 0.006358] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001 127 | [ 0.006456] Brought up 2 CPUs 128 | [ 0.006465] SMP: Total of 2 processors activated. 129 | [ 0.006470] CPU: All CPU(s) started in SVC mode. 130 | [ 0.006857] devtmpfs: initialized 131 | [ 0.010746] VFP support v0.3: implementor 42 architecture 4 part 00 variant 0 rev 0 132 | [ 0.011052] pinctrl core: initialized pinctrl subsystem 133 | [ 0.011427] regulator-dummy: no parameters 134 | [ 0.011697] NET: Registered protocol family 16 135 | [ 0.012209] DMA: preallocated 1024 KiB pool for atomic coherent allocations 136 | [ 0.012893] cpuidle: using governor ladder 137 | [ 0.012899] cpuidle: using governor menu 138 | [ 0.017438] syscon f0404000.syscon: regmap [mem 0xf0404000-0xf040452f] registered 139 | [ 0.017608] syscon f04a2400.syscon: regmap [mem 0xf04a2400-0xf04a27ff] registered 140 | [ 0.017771] syscon f0450000.syscon: regmap [mem 0xf0450000-0xf04500ff] registered 141 | [ 0.017920] syscon f0404100.syscon: regmap [mem 0xf0404100-0xf040413f] registered 142 | [ 0.018068] syscon f0404140.syscon: regmap [mem 0xf0404140-0xf0404167] registered 143 | [ 0.018222] syscon f0410700.syscon: regmap [mem 0xf0410700-0xf041070b] registered 144 | [ 0.018384] syscon f041070c.syscon: regmap [mem 0xf041070c-0xf0410713] registered 145 | [ 0.018536] syscon f1501004.syscon: regmap [mem 0xf1501004-0xf1501403] registered 146 | [ 0.018684] syscon f0404080.syscon: regmap [mem 0xf0404080-0xf0404083] registered 147 | [ 0.018831] syscon f04040a4.syscon: regmap [mem 0xf04040a4-0xf04040a7] registered 148 | [ 0.018978] syscon f04a0154.syscon: regmap [mem 0xf04a0154-0xf04a0157] registered 149 | [ 0.019124] syscon f04a0354.syscon: regmap [mem 0xf04a0354-0xf04a0357] registered 150 | [ 0.019277] syscon f04a0400.syscon: regmap [mem 0xf04a0400-0xf04a0403] registered 151 | [ 0.023798] irq: no irq domain found for /rdb/gpio@f040a000 ! 152 | [ 0.024296] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers. 153 | [ 0.024301] hw-breakpoint: maximum watchpoint size is 8 bytes. 154 | [ 0.024368] Broadcom Brahma-B15 readahead cache at: 0xfc4a2478 155 | [ 0.024515] brcm-mbox driver v1.0 156 | [ 0.038150] bio: create slab at 0 157 | [ 0.039127] brcmstb-gpio f040a000.gpio: Couldn't get wake IRQ - GPIOs will not be able to wake from sleep 158 | [ 0.039141] brcmstb-gpio f040a000.gpio: Registered 5 banks (GPIO(s): 0-159) 159 | [ 0.039451] brcmstb-gpio f0417000.gpio: Couldn't get wake IRQ - GPIOs will not be able to wake from sleep 160 | [ 0.039461] brcmstb-gpio f0417000.gpio: Registered 2 banks (GPIO(s): 160-223) 161 | [ 0.039960] vreg-wl0: no parameters 162 | [ 0.040163] vreg-wl1: no parameters 163 | [ 0.040336] vreg-wl2: no parameters 164 | [ 0.040508] vreg-wl0-rf: no parameters 165 | [ 0.040671] vreg-wl1-rf: no parameters 166 | [ 0.041173] SCSI subsystem initialized 167 | [ 0.041854] usbcore: registered new interface driver usbfs 168 | [ 0.041938] usbcore: registered new interface driver hub 169 | [ 0.042040] usbcore: registered new device driver usb 170 | [ 0.043957] Enabled regulator(vreg-wl0). 171 | [ 0.044026] brcm-pci f1080000.pcie: adjusting to legacy (broken) pcie DT 172 | [ 0.044046] brcm-pci f1080000.pcie: could not get clock 173 | [ 0.044061] brcm-pci f1080000.pcie: cannot get msi intr; MSI disabled 174 | [ 0.044222] Enabled regulator(vreg-wl1). 175 | [ 0.044230] brcm-pci f1090000.pcie: adjusting to legacy (broken) pcie DT 176 | [ 0.044243] brcm-pci f1090000.pcie: could not get clock 177 | [ 0.044254] brcm-pci f1090000.pcie: cannot get msi intr; MSI disabled 178 | [ 0.079555] brcm-pci f1080000.pcie: link up, 5.0 Gbps x1 (SSC) 179 | [ 0.079743] PCI host bridge to bus 0000:00 180 | [ 0.079753] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xc7ffffff] 181 | [ 0.079759] pci_bus 0000:00: root bus resource [io 0x1000-0xffff] 182 | [ 0.079765] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff] 183 | [ 0.079796] brcm-pci f1080000.pcie: found device 14e4:3390 on bus 0 (PCIe0), slot 0 (irq 75) 184 | [ 0.080084] PCI: bus0: Fast back to back transfers disabled 185 | [ 0.080091] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring 186 | [ 0.080261] brcm-pci f1080000.pcie: found device 14e4:4360 on bus 1 (PCIe0), slot 0 (irq 75) 187 | [ 0.100085] PCI: bus1: Fast back to back transfers disabled 188 | [ 0.104118] brcm-pci f1090000.pcie: link up, 5.0 Gbps x1 (SSC) 189 | [ 0.104273] PCI host bridge to bus 0000:02 190 | [ 0.104282] pci_bus 0000:02: root bus resource [mem 0xc8000000-0xcbffffff] 191 | [ 0.104288] pci_bus 0000:02: root bus resource [io 0x10000-0x1ffff] 192 | [ 0.104294] pci_bus 0000:02: No busn resource found for root bus, will use [bus 02-ff] 193 | [ 0.104319] brcm-pci f1090000.pcie: found device 14e4:3390 on bus 2 (PCIe1), slot 0 (irq 82) 194 | [ 0.104563] PCI: bus2: Fast back to back transfers disabled 195 | [ 0.104571] pci 0000:02:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring 196 | [ 0.104731] brcm-pci f1090000.pcie: found device 14e4:4365 on bus 3 (PCIe1), slot 0 (irq 82) 197 | [ 0.120094] PCI: bus3: Fast back to back transfers disabled 198 | [ 0.120151] pci 0000:02:00.0: BAR 8: assigned [mem 0xc8000000-0xc8bfffff] 199 | [ 0.120159] pci 0000:02:00.0: BAR 9: assigned [mem 0xc8c00000-0xc8cfffff 64bit pref] 200 | [ 0.120168] pci 0000:03:00.0: BAR 2: assigned [mem 0xc8000000-0xc87fffff 64bit] 201 | [ 0.120190] pci 0000:03:00.0: BAR 4: assigned [mem 0xc8c00000-0xc8cfffff 64bit pref] 202 | [ 0.120212] pci 0000:03:00.0: BAR 0: assigned [mem 0xc8800000-0xc8807fff 64bit] 203 | [ 0.120232] pci 0000:02:00.0: PCI bridge to [bus 03] 204 | [ 0.120240] pci 0000:02:00.0: bridge window [mem 0xc8000000-0xc8bfffff] 205 | [ 0.120246] pci 0000:02:00.0: bridge window [mem 0xc8c00000-0xc8cfffff 64bit pref] 206 | [ 0.120263] pci 0000:00:00.0: BAR 8: assigned [mem 0xc0000000-0xc00fffff] 207 | [ 0.120271] pci 0000:01:00.0: BAR 0: assigned [mem 0xc0000000-0xc0007fff 64bit] 208 | [ 0.120291] pci 0000:00:00.0: PCI bridge to [bus 01] 209 | [ 0.120298] pci 0000:00:00.0: bridge window [mem 0xc0000000-0xc00fffff] 210 | [ 0.120336] Switched to clocksource arch_sys_counter 211 | [ 0.122130] thermal thermal_zone0: failed to read out thermal zone 0 212 | [ 0.122201] NET: Registered protocol family 2 213 | [ 0.122557] TCP established hash table entries: 4096 (order: 2, 16384 bytes) 214 | [ 0.122582] TCP bind hash table entries: 4096 (order: 3, 32768 bytes) 215 | [ 0.122626] TCP: Hash tables configured (established 4096 bind 4096) 216 | [ 0.122652] TCP: reno registered 217 | [ 0.122658] UDP hash table entries: 256 (order: 1, 8192 bytes) 218 | [ 0.122671] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes) 219 | [ 0.122791] NET: Registered protocol family 1 220 | [ 0.122972] RPC: Registered named UNIX socket transport module. 221 | [ 0.122978] RPC: Registered udp transport module. 222 | [ 0.122981] RPC: Registered tcp transport module. 223 | [ 0.122985] RPC: Registered tcp NFSv4.1 backchannel transport module. 224 | [ 0.123259] hw perfevents: enabled with ARMv7 Cortex-A15 PMU driver, 7 counters available 225 | [ 0.124497] futex hash table entries: 512 (order: 3, 32768 bytes) 226 | [ 0.132960] squashfs: version 4.0 (2009/01/31) Phillip Lougher 227 | [ 0.133771] NFS: Registering the id_resolver key type 228 | [ 0.133792] Key type id_resolver registered 229 | [ 0.133797] Key type id_legacy registered 230 | [ 0.133806] nfs4filelayout_init: NFSv4 File Layout Driver Registering... 231 | [ 0.133820] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc. 232 | [ 0.134195] fuse init (API version 7.22) 233 | [ 0.134935] msgmni has been set to 558 234 | [ 0.135627] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) 235 | [ 0.135633] io scheduler noop registered 236 | [ 0.135637] io scheduler deadline registered 237 | [ 0.135795] io scheduler cfq registered (default) 238 | [ 0.136009] brcm-gisb-arb f0400000.gisb-arb: registered mem: fc400000, irqs: 259, 260 239 | [ 0.136532] brcm-usb-phy f1000200.usb-phy: Clock not found in Device Tree 240 | [ 0.250726] pinctrl-single f04040a4.pinmux: allocating 1568 pins 241 | [ 0.251720] pinctrl-single f04040a4.pinmux: 1568 pins at pa fc4040a4 size 196 242 | [ 0.252484] PCI: enabling device 0000:00:00.0 (0140 -> 0143) 243 | [ 0.252739] PCI: enabling device 0000:02:00.0 (0140 -> 0143) 244 | [ 0.253203] pcieport 0000:00:00.0: Signaling PME through PCIe PME interrupt 245 | [ 0.253209] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt 246 | [ 0.253239] pcieport 0000:02:00.0: Signaling PME through PCIe PME interrupt 247 | [ 0.253245] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt 248 | [ 0.313495] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled 249 | [ 0.315424] f040a900.serial: ttyS0 at MMIO 0xf040a900 (irq = 108, base_baud = 5062500) is a 16550A 250 | [ 1.445927] console [ttyS0] enabled 251 | [ 1.450177] f040a940.serial: ttyS1 at MMIO 0xf040a940 (irq = 109, base_baud = 5062500) is a 16550A 252 | [ 1.459764] f040a980.serial: ttyS2 at MMIO 0xf040a980 (irq = 110, base_baud = 5062500) is a 16550A 253 | [ 1.470474] d3881800.serial: ttyS3 at MMIO 0xd3881800 (irq = 111, base_baud = 5062500) is a 16550A 254 | [ 1.485777] brd: module loaded 255 | [ 1.491798] loop: module loaded 256 | [ 1.496170] brcmnand f04a2800.nand: using HIF_INTR2 cascaded IRQ 257 | [ 1.502375] brcmnand f04a2800.nand: enabling FLASH_DMA 258 | [ 1.507786] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xdc 259 | [ 1.514164] nand: Micron MT29F4G08ABADAH4 260 | [ 1.518177] nand: 512MiB, SLC, page size: 2048, OOB size: 64 261 | [ 1.523860] brcmnand f04a2800.nand: 512MiB total, 128KiB blocks, 2KiB pages, 16B OOB, 8-bit, BCH-4 262 | [ 1.523860] 263 | [ 1.534655] Bad block table found at page 262080, version 0x01 264 | [ 1.540867] Bad block table found at page 262016, version 0x01 265 | [ 1.547059] 11 ofpart partitions found on MTD device f04a2800.nand 266 | [ 1.553266] Creating 11 MTD partitions on "f04a2800.nand": 267 | [ 1.558760] 0x000000000000-0x000003520000 : "flash1.rdknonvol" 268 | [ 1.565416] 0x000003520000-0x000003640000 : "flash1.BankerTable" 269 | [ 1.572144] 0x000003640000-0x000003760000 : "flash1.Stage2Update" 270 | [ 1.578929] 0x000003760000-0x000003ea0000 : "flash1.kernel0" 271 | [ 1.585282] 0x000003ea0000-0x000005200000 : "flash1.cm0" 272 | [ 1.591293] 0x000005200000-0x0000117e0000 : "flash1.rg0" 273 | [ 1.597348] 0x0000117e0000-0x000011f20000 : "flash1.kernel1" 274 | [ 1.603707] 0x000011f20000-0x000013280000 : "flash1.cm1" 275 | [ 1.609701] 0x000013280000-0x00001f860000 : "flash1.rg1" 276 | [ 1.615750] 0x00001f860000-0x000020000000 : "flash1.unused" 277 | [ 1.622013] 0x000000000000-0x000020000000 : "flash1" 278 | [ 1.628108] spi_brcmstb f04a3400.spi: unable to get clock 279 | [ 1.633533] spi_brcmstb f04a3400.spi: 1-lane output, 3-byte address 280 | [ 1.639926] spi_brcmstb f04a3400.spi: master is unqueued, this is deprecated 281 | [ 1.647267] m25p80 spi32766.0: found mx25l6405d, expected m25p80 282 | [ 1.653313] m25p80 spi32766.0: mx25l6405d (8192 Kbytes) 283 | [ 1.658597] 17 ofpart partitions found on MTD device spi32766.0 284 | [ 1.664545] Creating 17 MTD partitions on "spi32766.0": 285 | [ 1.669778] 0x000000000000-0x000000090000 : "flash0.bolt" 286 | [ 1.675951] 0x000000090000-0x0000000f0000 : "flash0.cmnonvol1" 287 | [ 1.682481] 0x0000000f0000-0x000000100000 : "flash0.DevProfile_RO" 288 | [ 1.689334] 0x000000100000-0x0000001d0000 : "flash0.SSBL_ALT" 289 | [ 1.695797] 0x0000001d0000-0x000000200000 : "flash0.macadr" 290 | [ 1.702075] 0x000000200000-0x000000210000 : "flash0.Trackers0" 291 | [ 1.708600] 0x000000210000-0x000000220000 : "flash0.Trackers1" 292 | [ 1.715133] 0x000000220000-0x000000240000 : "flash0.nvram" 293 | [ 1.721293] 0x000000240000-0x000000260000 : "flash0.nvram1" 294 | [ 1.727501] 0x000000260000-0x000000280000 : "flash0.devtree0" 295 | [ 1.733903] 0x000000280000-0x0000002a0000 : "flash0.devtree1" 296 | [ 1.740304] 0x0000002a0000-0x000000300000 : "flash0.cmnonvol0" 297 | [ 1.746808] 0x000000300000-0x000000310000 : "flash0.DevProfile" 298 | [ 1.753408] 0x000000310000-0x000000320000 : "flash0.TSFS_Exception" 299 | [ 1.760355] 0x000000320000-0x000000390000 : "flash0.rgnonvol0" 300 | [ 1.766850] 0x000000390000-0x000000400000 : "flash0.rgnonvol1" 301 | [ 1.773340] 0x000000000000-0x000000800000 : "flash0" 302 | [ 1.781397] libphy: Fixed MDIO Bus: probed 303 | [ 1.785940] PPP generic driver version 2.4.2 304 | [ 1.790471] PPP BSD Compression module registered 305 | [ 1.795180] PPP Deflate Compression module registered 306 | [ 1.800238] pegasus: v0.9.3 (2013/04/25), Pegasus/Pegasus II USB Ethernet driver 307 | [ 1.807744] usbcore: registered new interface driver pegasus 308 | [ 1.813508] usbcore: registered new interface driver asix 309 | [ 1.818990] usbcore: registered new interface driver ax88179_178a 310 | [ 1.825181] usbcore: registered new interface driver cdc_ether 311 | [ 1.831125] usbcore: registered new interface driver cdc_ncm 312 | [ 1.837289] xhci-brcm: xHCI BRCM driver 313 | [ 1.841201] xhci-brcm f1001000.xhci_v2: Clock not found in Device Tree 314 | [ 1.847750] xhci-brcm f1001000.xhci_v2: xHCI Host Controller 315 | [ 1.853584] xhci-brcm f1001000.xhci_v2: new USB bus registered, assigned bus number 1 316 | [ 1.861566] xhci-brcm f1001000.xhci_v2: irq 117, io mem 0xf1001000 317 | [ 1.868321] hub 1-0:1.0: USB hub found 318 | [ 1.872114] hub 1-0:1.0: config failed, hub doesn't have any ports! (err -19) 319 | [ 1.879384] xhci-brcm f1001000.xhci_v2: xHCI Host Controller 320 | [ 1.885211] xhci-brcm f1001000.xhci_v2: new USB bus registered, assigned bus number 2 321 | [ 1.893601] hub 2-0:1.0: USB hub found 322 | [ 1.897379] hub 2-0:1.0: 1 port detected 323 | [ 1.901712] ehci-brcm: EHCI BRCM driver 324 | [ 1.905615] ehci-brcm f1000300.ehci_v2: Clock not found in Device Tree 325 | [ 1.912169] ehci-brcm f1000300.ehci_v2: EHCI Host Controller 326 | [ 1.917986] ehci-brcm f1000300.ehci_v2: new USB bus registered, assigned bus number 3 327 | [ 1.935905] ehci-brcm f1000300.ehci_v2: irq 113, io mem 0xf1000300 328 | [ 1.960348] ehci-brcm f1000300.ehci_v2: USB 2.0 started, EHCI 1.00 329 | [ 1.967056] hub 3-0:1.0: USB hub found 330 | [ 1.970842] hub 3-0:1.0: 1 port detected 331 | [ 1.975120] ohci-brcm: OHCI BRCM driver 332 | [ 1.979012] ohci-brcm f1000400.ohci_v2: Clock not found in Device Tree 333 | [ 1.985563] ohci-brcm f1000400.ohci_v2: BRCM OHCI controller 334 | [ 1.991379] ohci-brcm f1000400.ohci_v2: new USB bus registered, assigned bus number 4 335 | [ 1.999259] ohci-brcm f1000400.ohci_v2: irq 115, io mem 0xf1000400 336 | [ 2.064858] hub 4-0:1.0: USB hub found 337 | [ 2.068631] hub 4-0:1.0: 1 port detected 338 | [ 2.073447] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 339 | [ 2.079988] ehci-pci: EHCI PCI platform driver 340 | [ 2.084540] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 341 | [ 2.090742] ohci-pci: OHCI PCI platform driver 342 | [ 2.095457] usbcore: registered new interface driver usb-storage 343 | [ 2.101649] usbcore: registered new interface driver usbserial 344 | [ 2.107558] usbcore: registered new interface driver option 345 | [ 2.113217] usbserial: USB Serial support registered for GSM modem (1-port) 346 | [ 2.120244] i2c /dev entries driver 347 | [ 2.123966] brcmstb-i2c f040a400.i2c: I2C driver probe entry. 348 | [ 2.129732] brcmstb-i2c f040a400.i2c: using default port select:0 349 | [ 2.136317] brcmstb-i2c f040a400.i2c: @50000hz registered in polling mode using port select:0 350 | [ 2.145121] brcmstb_thermal: set trips 0 <--> 125000 351 | [ 2.150091] brcmstb_thermal: disable trip, type 0 352 | [ 2.154809] brcmstb_thermal: set temp 1 to 125000 353 | [ 2.159518] brcmstb_thermal: enable trip, type 1 354 | [ 2.164264] brcmstb_thermal f0431500.thermal: registered AVS TMON of-sensor driver 355 | [ 2.172444] bcm7038-wdt f040a128.watchdog: Registered Broadcom Watchdog 356 | [ 2.179212] bcm7038-wdt f10b0928.watchdog: Registered Broadcom Watchdog 357 | [ 2.185989] bcm7038-wdt f040a200.watchdog: Registered Broadcom Watchdog 358 | [ 2.192801] cpufreq_cpu0: failed to get cpu0 regulator: -19 359 | [ 2.198503] cpufreq: CPU: Clock frequency 1503 MHz 360 | [ 2.203587] sdhci: Secure Digital Host Controller Interface driver 361 | [ 2.209773] sdhci: Copyright(c) Pierre Ossman 362 | [ 2.214144] sdhci-pltfm: SDHCI platform and OF driver helper 363 | [ 2.219856] sdhci-brcmstb f04a0000.sdhci: Clock not found in Device Tree 364 | [ 2.227614] mmc0: no vqmmc regulator found 365 | [ 2.231724] mmc0: no vmmc regulator found 366 | [ 2.280642] mmc0: SDHCI controller on f04a0000.sdhci [f04a0000.sdhci] using ADMA 367 | [ 2.323980] brcm-fpm: FPM with 2 pool(s) 368 | [ 2.332491] brcm-dqm: DQM device cpucomm with 96 Q's 369 | [ 2.337771] rpc_service_init: initializing rpc_init service 370 | [ 2.343401] rpc_register_functions registered rpc_init service with 1 functions 371 | [ 2.350727] rpc_service_init: initializing rpc_misc service 372 | [ 2.356339] rpc_service_init: initializing rpc_flash service 373 | [ 2.362044] rpc_service_init: skipping inactive rpc_nonvol service 374 | [ 2.368230] rpc_service_init: initializing rpc_erouter service 375 | [ 2.374112] rpc_service_init: skipping inactive rpc_erouter_pm service 376 | [ 2.380653] rpc_service_init: initializing rpc_wpsctl service 377 | [ 2.386436] rpc_service_init: skipping inactive rpc_bash service 378 | [ 2.392457] rpc_service_init: skipping inactive rpc_testu service 379 | [ 2.398555] rpc_service_init: skipping inactive rpc_ccsp service 380 | [ 2.404667] dev-name = rg-cm 381 | [ 2.407552] dqm = cpucomm 382 | [ 2.410173] tx-q = 2h 383 | [ 2.412455] rx-q = 3h 384 | [ 2.414737] rpc_probe sent handshake message 385 | [ 2.419028] dev-name = svm-cm 386 | [ 2.422006] dqm = cpucomm 387 | [ 2.424627] tx-q = 14h 388 | [ 2.426988] rx-q = 15h 389 | [ 2.429354] rpc_probe sent handshake message 390 | [ 2.433971] brcm-ba driver v1.0 391 | [ 2.438000] rpc_register_functions registered rpc_misc service with 13 functions 392 | [ 2.445642] WBID driver version 1.0 393 | [ 2.449135] WBID i2c client registered with addr:0x24 394 | [ 2.455745] WBID(x.y):4095.15 WBID:0xffff 395 | [ 2.460217] MDQM_Init 396 | [ 2.462705] iperf device initialized 397 | [ 2.466333] Netfilter messages via NETLINK v0.30. 398 | [ 2.471088] nf_conntrack version 0.5.0 (4464 buckets, 17856 max) 399 | [ 2.477661] gre: GRE over IPv4 demultiplexor driver 400 | [ 2.482561] ip_gre: GRE over IPv4 tunneling driver 401 | [ 2.488333] ip_tables: (C) 2000-2006 Netfilter Core Team 402 | [ 2.493724] ipt_CLUSTERIP: ClusterIP Version 0.8 loaded successfully 403 | [ 2.500110] arp_tables: (C) 2002 David S. Miller 404 | [ 2.504746] TCP: cubic registered 405 | [ 2.508063] Initializing XFRM netlink socket 406 | [ 2.512928] NET: Registered protocol family 10 407 | [ 2.517936] ip6_tables: (C) 2000-2006 Netfilter Core Team 408 | [ 2.523978] ip6_gre: GRE over IPv6 tunneling driver 409 | [ 2.529334] NET: Registered protocol family 17 410 | [ 2.533810] NET: Registered protocol family 15 411 | [ 2.538297] Bridge firewalling registered 412 | [ 2.542327] Ebtables v2.0 registered 413 | [ 2.545972] l2tp_core: L2TP core driver, V2.0 414 | [ 2.550344] 8021q: 802.1Q VLAN Support v1.8 415 | [ 2.554554] Key type dns_resolver registered 416 | [ 2.558906] Registering SWP/SWPB emulation handler 417 | [ 2.564628] vreg-wl2: disabling 418 | [ 2.567779] regulator-dummy: disabling 419 | [ 2.571877] UBI: attaching mtd8 to ubi0 420 | [ 3.074748] random: nonblocking pool is initialized 421 | [ 3.530392] UBI: scanning is finished 422 | [ 3.544236] UBI: attached mtd8 (name "flash1.rg1", size 197 MiB) to ubi0 423 | [ 3.550974] UBI: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes 424 | [ 3.557774] UBI: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 425 | [ 3.564491] UBI: VID header offset: 2048 (aligned 2048), data offset: 4096 426 | [ 3.571379] UBI: good PEBs: 1583, bad PEBs: 0, corrupted PEBs: 0 427 | [ 3.577391] UBI: user volume: 1, internal volumes: 1, max. volumes count: 128 428 | [ 3.584541] UBI: max/mean erase counter: 24/12, WL threshold: 256, image sequence number: 1259875053 429 | [ 3.593688] UBI: available PEBs: 0, total reserved PEBs: 1583, PEBs reserved for bad PEB handling: 80 430 | [ 3.602932] UBI: background thread "ubi_bgt0d" started, PID 1362 431 | [ 3.649065] UBIFS: recovery needed 432 | [ 3.689220] UBIFS: recovery deferred 433 | [ 3.692929] UBIFS: mounted UBI device 0, volume 0, name "rootfs", R/O mode 434 | [ 3.699819] UBIFS: LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes 435 | [ 3.708988] UBIFS: FS size: 188940288 bytes (180 MiB, 1488 LEBs), journal size 9023488 bytes (8 MiB, 72 LEBs) 436 | [ 3.718933] UBIFS: reserved for root: 0 bytes (0 KiB) 437 | [ 3.724017] UBIFS: media format: w4/r0 (latest is w4/r0), UUID 54FCCB3A-91AF-46C9-AF55-E4D4AB1C50E3, small LPT model 438 | [ 3.735527] VFS: Mounted root (ubifs filesystem) readonly on device 0:13. 439 | [ 3.744066] devtmpfs: mounted 440 | [ 3.747164] Freeing unused kernel memory: 256K (807aa000 - 807ea000) 441 | [ 4.000019] systemd[1]: systemd 216 running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP -BLKID -ELFUTILS +KMOD -IDN ) 442 | [ 4.019321] systemd[1]: Detected architecture 'arm'. 443 | 444 | Welcome to RDK (A Yocto Project based Distro) 2.0 (daisy)! 445 | 446 | [ 4.061037] systemd[1]: Set hostname to . 447 | [ 4.069108] systemd[1]: Initializing machine ID from random generator. 448 | [ 4.075770] systemd[1]: Installed transient /etc/machine-id file. 449 | [ 4.091626] systemd[1]: Hardware watchdog 'Broadcom Watchdog Timer', version 0 450 | [ 4.098905] watchdog watchdog0: watchdog stopped 451 | [ 4.103712] systemd[1]: Set hardware watchdog to 1min 15s. 452 | [ 4.556553] systemd[1]: Cannot add dependency job for unit systemd-fsck-root.service, ignoring: Unit systemd-fsck-root.service failed to load: No such file or directory. 453 | [ 4.578291] systemd[1]: Starting Forward Password Requests to Wall Directory Watch. 454 | [ 4.586207] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 455 | [ 4.593878] systemd[1]: Expecting device dev-ttyS0.device... 456 | Expecting device dev-ttyS0.device... 457 | [ 4.621558] systemd[1]: Starting Remote File Systems. 458 | [ OK ] Reached target Remote File Systems. 459 | [ 4.651383] systemd[1]: Reached target Remote File Systems. 460 | [ 4.657723] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch. 461 | [ 4.666373] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. 462 | [ 4.674369] systemd[1]: Starting Swap. 463 | [ OK ] Reached target Swap. 464 | [ 4.701387] systemd[1]: Reached target Swap. 465 | [ 4.706228] systemd[1]: Starting Root Slice. 466 | [ OK ] Created slice Root Slice. 467 | [ 4.741214] systemd[1]: Created slice Root Slice. 468 | [ 4.746493] systemd[1]: Starting User and Session Slice. 469 | [ OK ] Created slice User and Session Slice. 470 | [ 4.771394] systemd[1]: Created slice User and Session Slice. 471 | [ 4.777741] systemd[1]: Starting /dev/initctl Compatibility Named Pipe. 472 | [ OK ] Listening on /dev/initctl Compatibility Named Pipe. 473 | [ 4.811437] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe. 474 | [ 4.818961] systemd[1]: Starting Delayed Shutdown Socket. 475 | [ OK ] Listening on Delayed Shutdown Socket. 476 | [ 4.841416] systemd[1]: Listening on Delayed Shutdown Socket. 477 | [ 4.847699] systemd[1]: Starting Journal Socket (/dev/log). 478 | [ OK ] Listening on Journal Socket (/dev/log). 479 | [ 4.871381] systemd[1]: Listening on Journal Socket (/dev/log). 480 | [ 4.878019] systemd[1]: Starting udev Control Socket. 481 | [ OK ] Listening on udev Control Socket. 482 | [ 4.901365] systemd[1]: Listening on udev Control Socket. 483 | [ 4.907479] systemd[1]: Starting udev Kernel Socket. 484 | [ OK ] Listening on udev Kernel Socket. 485 | [ 4.931449] systemd[1]: Listening on udev Kernel Socket. 486 | [ 4.937366] systemd[1]: Starting Journal Socket. 487 | [ OK ] Listening on Journal Socket. 488 | [ 4.961459] systemd[1]: Listening on Journal Socket. 489 | [ 4.967333] systemd[1]: Starting System Slice. 490 | [ OK ] Created slice System Slice. 491 | [ 4.991373] systemd[1]: Created slice System Slice. 492 | [ 4.996943] systemd[1]: Starting Service for attaching nonvol ubi device...... 493 | Starting Service for attaching nonvol ubi device...... 494 | [ 5.032990] systemd[1]: Mounting Temporary Directory... 495 | Mounting Temporary Directory... 496 | [ 5.063039] systemd[1]: Starting system-getty.slice. 497 | [ OK ] Created slice system-getty.slice. 498 | [ 5.090677] systemd[1]: Created slice system-getty.slice. 499 | [ 5.096217] systemd[1]: Starting system-serial\x2dgetty.slice. 500 | [ OK ] Created slice system-serial\x2dgetty.slice. 501 | [ 5.120779] systemd[1]: Created slice system-serial\x2dgetty.slice. 502 | [ 5.127437] systemd[1]: Mounting POSIX Message Queue File System... 503 | Mounting POSIX Message Queue File System... 504 | [ 5.162773] systemd[1]: Starting Create list of required static device nodes for the current kernel... 505 | Starting Create list of required st... nodes for the current kernel... 506 | [ 5.196458] systemd[1]: Starting udev Coldplug all Devices... 507 | Starting udev Coldplug all Devices... 508 | [ 5.226502] systemd[1]: Mounting Debug File System... 509 | Mounting Debug File System... 510 | [ 5.253598] systemd[1]: Mounted Huge Pages File System. 511 | [ 5.273206] systemd[1]: Started Load Kernel Modules. 512 | [ 5.278433] systemd[1]: Mounted Configuration File System. 513 | [ 5.284719] systemd[1]: Mounting FUSE Control File System... 514 | Mounting FUSE Control File System... 515 | [ 5.314289] systemd[1]: Starting Apply Kernel Variables... 516 | Starting Apply Kernel Variables... 517 | [ 5.345441] systemd[1]: Starting Journal Service... 518 | Starting Journal Service... 519 | [ OK ] Started Journal Service. 520 | [ 5.410503] systemd[1]: Started Journal Service. 521 | [ OK ] Reached target Slices. 522 | Starting Remount Root and Kernel File Systems... 523 | [ OK ] Mounted FUSE Control File System. 524 | [ OK ] Mounted Debug File System. 525 | [ OK ] Mounted POSIX Message Queue File System. 526 | [ 5.510997] systemd-journald[1390]: [/etc/systemd/journald.conf:36] Unknown lvalue 'SystemMaxFiles' in section 'Journal' 527 | [ 5.522376] systemd-journald[1390]: [/etc/systemd/journald.conf:37] Unknown lvalue 'RuntimeMaxFiles' in section 'Journal' 528 | [ OK ] Mounted Temporary Directory. 529 | [ 5.539814] UBIFS: completing deferred recovery 530 | [ 5.546055] UBI: attaching mtd0 to ubi10 531 | [ OK ] Started Create list of required sta...ce nodes for the current kernel. 532 | [ OK ] Started Apply Kernel Variables. 533 | [ 5.776986] UBIFS: background thread "ubifs_bgt0_0" started, PID 2456 534 | [ 5.780986] UBIFS: deferred recovery completed 535 | [ 5.915502] UBI: scanning is finished 536 | [ 5.928972] UBI: attached mtd0 (name "flash1.rdknonvol", size 53 MiB) to ubi10 537 | [ 5.936258] UBI: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes 538 | [ 5.943074] UBI: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 539 | [ 5.949788] UBI: VID header offset: 2048 (aligned 2048), data offset: 4096 540 | [ 5.956684] UBI: good PEBs: 425, bad PEBs: 0, corrupted PEBs: 0 541 | [ 5.962626] UBI: user volume: 1, internal volumes: 1, max. volumes count: 128 542 | [ 5.969775] UBI: max/mean erase counter: 244/142, WL threshold: 256, image sequence number: 160269651 543 | [ 5.979018] UBI: available PEBs: 212, total reserved PEBs: 213, PEBs reserved for bad PEB handling: 40 544 | [ 5.988428] UBI: background thread "ubi_bgt10d" started, PID 2461 545 | [ OK ] Started Remount Root and Kernel File Systems. 546 | [ 6.029229] UBIFS: background thread "ubifs_bgt10_0" started, PID 2465 547 | [ OK ] Started udev Coldplug all Devices. 548 | [ 6.078440] UBIFS: recovery needed 549 | [ 6.092241] tch_nonvol.sh[1371]: UBI device number 10, total 425 LEBs (53964800 bytes, 51.5 MiB), available 212 LEBs (26918912 bytes, 25.7 MiB), LEB size 126976 bytes (124.0 KiB) 550 | [ 6.122814] tch_nonvol.sh[1371]: Successfully attached rdknonvol to /dev/mtd0 551 | [ 6.152542] tch_nonvol.sh[1371]: Volume ID: 0 (on ubi10) 552 | [ 6.174463] tch_nonvol.sh[1371]: Type: dynamic 553 | [ 6.201361] tch_nonvol.sh[1371]: Alignment: 1 554 | [ 6.221284] tch_nonvol.sh[1371]: Size: 169 LEBs (21458944 bytes, 20.5 MiB) 555 | [ 6.240784] tch_nonvol.sh[1371]: State: OK 556 | [ 6.256725] UBIFS: recovery completed 557 | [ 6.260536] UBIFS: mounted UBI device 10, volume 0, name "data" 558 | [ 6.266476] UBIFS: LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes 559 | [ 6.266480] UBIFS: FS size: 20189184 bytes (19 MiB, 159 LEBs), journal size 1015809 bytes (0 MiB, 8 LEBs) 560 | [ 6.266486] UBIFS: reserved for root: 953584 bytes (931 KiB) 561 | [ 6.266492] UBIFS: media format: w4/r0 (latest is w4/r0), UUID 78D45E9E-B2B8-4DEE-933E-4451CE4D4213, small LPT model 562 | [ 6.260849] tch_nonvol.sh[1371]: Name: data 563 | Starting Create Static Device Nodes in /dev... 564 | [ 6.302289] tch_nonvol.sh[1371]: Character device major/minor: 244:1 565 | [ OK ] Started Service for attaching nonvol ubi device.... 566 | [ OK ] Started Create Static Device Nodes in /dev. 567 | Starting udev Kernel Device Manager... 568 | [ OK ] Reached target Local File Systems (Pre). 569 | Mounting /var... 570 | [ 6.500907] systemd-udevd[2470]: starting version 216 571 | [ OK ] Started udev Kernel Device Manager. 572 | [ OK ] Mounted /var. 573 | Mounting /var/volatile... 574 | Starting Load/Save Random Seed... 575 | [ OK ] Mounted /var/volatile. 576 | [ OK ] Reached target Local File Systems. 577 | Starting Trigger Flushing of Journal to Persistent Storage... 578 | Starting Create Volatile Files and Directories... 579 | [ OK ] Started Load/Save Random Seed. 580 | [ OK ] Found device /dev/ttyS0. 581 | [ OK ] Started Create Volatile Files and Directories. 582 | [ 6.844530] systemd-journald[1390]: Received request to flush runtime journal from PID 1 583 | [ OK ] Started Trigger Flushing of Journal to Persistent Storage. 584 | Starting Network Time Synchronization... 585 | Starting Update UTMP about System Boot/Shutdown... 586 | [ OK ] Started Network Time Synchronization. 587 | [ 7.090117] wps_gpio wifi_wps.26: WPS LED/PBC: Initializing the WPS LKM--> 588 | [ 7.097430] wps_gpio wifi_wps.26: Requesting IRQ 266 with flags 0x00000003 for GPIO 99. 589 | [ OK ] Started Update UTMP about System Boot/Shutdown. 590 | [ OK ] Reached target System Initialization. 591 | [ OK ] Reached target Paths. 592 | [ OK ] Listening on D-Bus System Message Bus Socket. 593 | [ OK ] Reached target Sockets. 594 | [ OK ] Reached target Timers. 595 | [ OK ] Reached target Basic System. 596 | Starting SSBL Update... 597 | Starting Simple Network Management Protocol (SNMP) Daemon.... 598 | Starting DCM Init Service, will boot CM up, and fork some daemons.... 599 | Starting Rpc service for ccsp... 600 | Starting Pam Initialized service... 601 | [ OK ] Started Pam Initialized service. 602 | [ 7.646081] rpc_service_init: initializing rpc_ccsp service 603 | [ 7.652636] rpc_register_functions registered rpc_ccsp service with 256 functions 604 | Starting LED Service... 605 | [ OK ] Started LED Service. 606 | Starting watchdog feed service... 607 | [ 7.711591] rpc_service_init: initializing rpc_testu service 608 | [ 7.717839] rpc_register_functions registered rpc_testu service with 256 functions 609 | Starting RG Init Service.... 610 | Starting Login Service... 611 | Starting D-Bus System Message Bus... 612 | [ OK ] Started D-Bus System Message Bus. 613 | [ 7.838228] jffs2: Empty flash at 0x00010ffc ends at 0x00011000 614 | [ 7.846063] jffs2: Empty flash at 0x00011ffc ends at 0x00012000 615 | [ 7.853768] jffs2: Empty flash at 0x00012ffc ends at 0x00013000 616 | [ 7.859816] jffs2: CLEANMARKER node found at 0x00013000, not first node in block (0x00010000) 617 | [ 7.869974] jffs2: Empty flash at 0x0001300c ends at 0x00014000 618 | [ 7.875990] jffs2: CLEANMARKER node found at 0x00014000, not first node in block (0x00010000) 619 | [ 7.886120] jffs2: Empty flash at 0x0001400c ends at 0x00015000 620 | [ 7.892159] jffs2: CLEANMARKER node found at 0x00015000, not first node in block (0x00010000) 621 | [ 7.951631] jffs2: Empty flash at 0x0001500c ends at 0x00016000 622 | [ 7.957582] jffs2: CLEANMARKER node found at 0x00016000, not first node in block (0x00010000) 623 | [ 7.967676] jffs2: Empty flash at 0x0001600c ends at 0x00017000 624 | [ 7.973639] jffs2: CLEANMARKER node found at 0x00017000, not first node in block (0x00010000) 625 | [ 7.985290] jffs2: Empty flash at 0x0001700c ends at 0x00018000 626 | [ 7.991287] jffs2: CLEANMARKER node found at 0x00018000, not first node in block (0x00010000) 627 | [ 8.001347] jffs2: Empty flash at 0x0001800c ends at 0x00019000 628 | [ 8.007279] jffs2: CLEANMARKER node found at 0x00019000, not first node in block (0x00010000) 629 | [ 8.018858] jffs2: Empty flash at 0x0001900c ends at 0x0001a000 630 | [ 8.024811] jffs2: CLEANMARKER node found at 0x0001a000, not first node in block (0x00010000) 631 | [ 8.034985] jffs2: Empty flash at 0x0001a00c ends at 0x0001b000 632 | [ 8.040969] jffs2: CLEANMARKER node found at 0x0001b000, not first node in block (0x00010000) 633 | [ 8.052536] jffs2: Empty flash at 0x0001b00c ends at 0x0001c000 634 | [ 8.058478] jffs2: CLEANMARKER node found at 0x0001c000, not first node in block (0x00010000) 635 | [ 8.116438] jffs2: Empty flash at 0x0001c00c ends at 0x0001d000 636 | [ 8.122573] jffs2: CLEANMARKER node found at 0x0001d000, not first node in block (0x00010000) 637 | [ 8.134177] jffs2: Empty flash at 0x0001d00c ends at 0x0001e000 638 | [ 8.143130] jffs2: Empty flash at 0x0001effc ends at 0x0001f000 639 | [ 8.149074] jffs2: CLEANMARKER node found at 0x0001f000, not first node in block (0x00010000) 640 | [ 8.162464] jffs2: Empty flash at 0x00030fd4 ends at 0x00031000 641 | [ 8.168408] jffs2: CLEANMARKER node found at 0x00031000, not first node in block (0x00030000) 642 | [ 8.178483] jffs2: Empty flash at 0x0003100c ends at 0x00032000 643 | [ 8.184438] jffs2: CLEANMARKER node found at 0x00032000, not first node in block (0x00030000) 644 | [ 8.196023] jffs2: Empty flash at 0x0003200c ends at 0x00033000 645 | [ 8.201980] jffs2: CLEANMARKER node found at 0x00033000, not first node in block (0x00030000) 646 | [ 8.212059] jffs2: Empty flash at 0x0003300c ends at 0x00034000 647 | [ 8.218001] jffs2: CLEANMARKER node found at 0x00034000, not first node in block (0x00030000) 648 | [ 8.229808] jffs2: Empty flash at 0x0003400c ends at 0x00035000 649 | [ 8.235799] jffs2: CLEANMARKER node found at 0x00035000, not first node in block (0x00030000) 650 | [ 8.245921] jffs2: Empty flash at 0x0003500c ends at 0x00036000 651 | [ 8.251880] jffs2: CLEANMARKER node found at 0x00036000, not first node in block (0x00030000) 652 | [ 8.263467] jffs2: Empty flash at 0x0003600c ends at 0x00037000 653 | [ 8.269398] jffs2: CLEANMARKER node found at 0x00037000, not first node in block (0x00030000) 654 | [ 8.279455] jffs2: Empty flash at 0x0003700c ends at 0x00038000 655 | [ 8.285397] jffs2: CLEANMARKER node found at 0x00038000, not first node in block (0x00030000) 656 | [ 8.296970] jffs2: Empty flash at 0x0003800c ends at 0x00039000 657 | [ 8.302913] jffs2: CLEANMARKER node found at 0x00039000, not first node in block (0x00030000) 658 | [ 8.313012] jffs2: Empty flash at 0x0003900c ends at 0x0003a000 659 | [ 8.319005] jffs2: CLEANMARKER node found at 0x0003a000, not first node in block (0x00030000) 660 | [ 8.330811] jffs2: Empty flash at 0x0003a00c ends at 0x0003b000 661 | [ 8.336744] jffs2: CLEANMARKER node found at 0x0003b000, not first node in block (0x00030000) 662 | [ 8.346831] jffs2: Empty flash at 0x0003b00c ends at 0x0003c000 663 | [ 8.352962] jffs2: CLEANMARKER node found at 0x0003c000, not first node in block (0x00030000) 664 | [ 8.365435] jffs2: Empty flash at 0x0003c00c ends at 0x0003d000 665 | [ 8.372650] jffs2: CLEANMARKER node found at 0x0003d000, not first node in block (0x00030000) 666 | [ 8.382906] jffs2: Empty flash at 0x0003d00c ends at 0x0003e000 667 | [ 8.388871] jffs2: CLEANMARKER node found at 0x0003e000, not first node in block (0x00030000) 668 | [ 8.405109] jffs2: Empty flash at 0x0003e00c ends at 0x0003f000 669 | [ 8.415634] jffs2: Empty flash at 0x00040f7c ends at 0x00041000 670 | [ 8.421840] jffs2: CLEANMARKER node found at 0x00041000, not first node in block (0x00040000) 671 | [ 8.433831] jffs2: CLEANMARKER node found at 0x00022000, not first node in block (0x00020000) 672 | [ 8.444053] jffs2: Empty flash at 0x0004100c ends at 0x00042000 673 | [ 8.445584] jffs2: Empty flash at 0x0002200c ends at 0x00023000 674 | [ 8.445588] jffs2: CLEANMARKER node found at 0x00023000, not first node in block (0x00020000) 675 | [ 8.448648] jffs2: Empty flash at 0x0002300c ends at 0x00024000 676 | [ 8.448650] jffs2: CLEANMARKER node found at 0x00024000, not first node in block (0x00020000) 677 | [ 8.450154] jffs2: Empty flash at 0x0002400c ends at 0x00025000 678 | [ 8.450157] jffs2: CLEANMARKER node found at 0x00025000, not first node in block (0x00020000) 679 | [ 8.458971] jffs2: Empty flash at 0x0002500c ends at 0x00026000 680 | [ 8.458977] jffs2: CLEANMARKER node found at 0x00026000, not first node in block (0x00020000) 681 | [ 8.460499] jffs2: Empty flash at 0x0002600c ends at 0x00027000 682 | [ 8.460505] jffs2: CLEANMARKER node found at 0x00027000, not first node in block (0x00020000) 683 | [ 8.463523] jffs2: Empty flash at 0x0002700c ends at 0x00028000 684 | [ 8.463525] jffs2: CLEANMARKER node found at 0x00028000, not first node in block (0x00020000) 685 | [ 8.465029] jffs2: Empty flash at 0x0002800c ends at 0x00029000 686 | [ 8.465032] jffs2: CLEANMARKER node found at 0x00029000, not first node in block (0x00020000) 687 | [ 8.468034] jffs2: Empty flash at 0x0002900c ends at 0x0002a000 688 | [ 8.468037] jffs2: CLEANMARKER node found at 0x0002a000, not first node in block (0x00020000) 689 | [ 8.469537] jffs2: Empty flash at 0x0002a00c ends at 0x0002b000 690 | [ 8.469539] jffs2: CLEANMARKER node found at 0x0002b000, not first node in block (0x00020000) 691 | [ 8.472560] jffs2: Empty flash at 0x0002b00c ends at 0x0002c000 692 | [ 8.472562] jffs2: CLEANMARKER node found at 0x0002c000, not first node in block (0x00020000) 693 | [ 8.474063] jffs2: Empty flash at 0x0002c00c ends at 0x0002d000 694 | [ 8.474069] jffs2: CLEANMARKER node found at 0x0002d000, not first node in block (0x00020000) 695 | [ 8.477077] jffs2: Empty flash at 0x0002d00c ends at 0x0002e000 696 | [ 8.477080] jffs2: CLEANMARKER node found at 0x0002e000, not first node in block (0x00020000) 697 | [ 8.478584] jffs2: Empty flash at 0x0002e00c ends at 0x0002f000 698 | [ 8.478586] jffs2: CLEANMARKER node found at 0x0002f000, not first node in block (0x00020000) 699 | Starting Permit User Sessions... 700 | [ 8.643699] jffs2: Empty flash at 0x00042ffc ends at 0x00043000 701 | [ 8.651162] jffs2: Empty flash at 0x000437a4 ends at 0x00044000 702 | [ OK [ 8.662824] jffs2: Empty flash at 0x00044ffc ends at 0x00045000 703 | ] Reached target System Time Syn[ 8.672286] jffs2: Empty flash at 0x00045ffc ends at 0x00046000 704 | chronized. 705 | [ 8.679199] jffs2: Node totlen on flash (0xffffffff) != totlen from node ref (0x00000044) 706 | [ 8.680841] jffs2: Empty flash at 0x00046ffc ends at 0x00047000 707 | [ 8.680844] jffs2: CLEANMARKER node found at 0x00047000, not first node in block (0x00040000) 708 | [ 8.682352] jffs2: Empty flash at 0x0004700c ends at 0x00048000 709 | [ 8.682354] jffs2: CLEANMARKER node found at 0x00048000, not first node in block (0x00040000) 710 | [ 8.683853] jffs2: Empty flash at 0x0004800c ends at 0x00049000 711 | [ 8.683856] jffs2: CLEANMARKER node found at 0x00049000, not first node in block (0x00040000) 712 | [ 8.686864] jffs2: Empty flash at 0x0004900c ends at 0x0004a000 713 | [ 8.686866] jffs2: CLEANMARKER node found at 0x0004a000, not first node in block (0x00040000) 714 | [ 8.688369] jffs2: Empty flash at 0x0004a00c ends at 0x0004b000 715 | [ 8.688371] jffs2: CLEANMARKER node found at 0x0004b000, not first node in block (0x00040000) 716 | [ 8.691378] jffs2: Empty flash at 0x0004b00c ends at 0x0004c000 717 | [ 8.694375] jffs2: Empty flash at 0x0004cffc ends at 0x0004d000 718 | [ 8.695883] jffs2: Empty flash at 0x0004dffc ends at 0x0004e000 719 | [ 8.695885] jffs2: CLEANMARKER node found at 0x0004e000, not first node in block (0x00040000) 720 | [ 8.697389] jffs2: Empty flash at 0x0004e00c ends at 0x0004f000 721 | [ 8.705030] jffs2: Empty flash at 0x00053fa0 ends at 0x00054000 722 | [ 8.709523] jffs2: CLEANMARKER node found at 0x00057000, not first node in block (0x00050000) 723 | [ 8.711025] jffs2: Empty flash at 0x0005700c ends at 0x00058000 724 | [ 8.711028] jffs2: CLEANMARKER node found at 0x00058000, not first node in block (0x00050000) 725 | [ 8.712528] jffs2: Empty flash at 0x0005800c ends at 0x00059000 726 | [ 8.714035] jffs2: CLEANMARKER node found at 0x0005a000, not first node in block (0x00050000) 727 | [ 8.717039] jffs2: Empty flash at 0x0005a00c ends at 0x0005b000 728 | [ 8.717042] jffs2: CLEANMARKER node found at 0x0005b000, not first node in block (0x00050000) 729 | [ 8.718541] jffs2: Empty flash at 0x0005b00c ends at 0x0005c000 730 | [ 8.718543] jffs2: CLEANMARKER node found at 0x0005c000, not first node in block (0x00050000) 731 | [ 8.721547] jffs2: Empty flash at 0x0005c00c ends at 0x0005d000 732 | [ 8.723055] jffs2: CLEANMARKER node found at 0x0005e000, not first node in block (0x00050000) 733 | [ 8.726061] jffs2: Empty flash at 0x0005e00c ends at 0x0005f000 734 | [ 8.726063] jffs2: CLEANMARKER node found at 0x0005f000, not first node in block (0x00050000) 735 | [ 8.732199] jffs2: Empty flash at 0x00061ffc ends at 0x00062000 736 | [ 8.732201] jffs2: CLEANMARKER node found at 0x00062000, not first node in block (0x00060000) 737 | [ 8.733705] jffs2: Empty flash at 0x0006200c ends at 0x00063000 738 | [ 8.733707] jffs2: CLEANMARKER node found at 0x00063000, not first node in block (0x00060000) 739 | [ 8.735207] jffs2: Empty flash at 0x0006300c ends at 0x00064000 740 | [ 8.735209] jffs2: CLEANMARKER node found at 0x00064000, not first node in block (0x00060000) 741 | [ 8.738214] jffs2: Empty flash at 0x0006400c ends at 0x00065000 742 | [ 8.738216] jffs2: CLEANMARKER node found at 0x00065000, not first node in block (0x00060000) 743 | [ 8.739716] jffs2: Empty flash at 0x0006500c ends at 0x00066000 744 | [ 8.739718] jffs2: CLEANMARKER node found at 0x00066000, not first node in block (0x00060000) 745 | [ 8.742724] jffs2: Empty flash at 0x0006600c ends at 0x00067000 746 | [ 8.742726] jffs2: CLEANMARKER node found at 0x00067000, not first node in block (0x00060000) 747 | [ 8.744226] jffs2: Empty flash at 0x0006700c ends at 0x00068000 748 | [ 8.744228] jffs2: CLEANMARKER node found at 0x00068000, not first node in block (0x00060000) 749 | [ 8.747229] jffs2: Empty flash at 0x0006800c ends at 0x00069000 750 | [ 8.750236] jffs2: Empty flash at 0x00069ff0 ends at 0x0006a000 751 | [FAILED] Failed to start SSBL Update. 752 | [ 9.034476] jffs2: CLEANMARKER node found at 0x00011000, not first node in block (0x00010000) 753 | [ 9.035371] jffs2: Node totlen on flash (0xffffffff) != totlen from node ref (0x00000044) 754 | See 'systemctl status systemd-ssbl-update.servic[ 9.055419] jffs2: Empty flash at 0x0001100c ends at 0x00012000 755 | e' for details. [ 9.062221] jffs2: CLEANMARKER node found at 0x00012000, not first node in block (0x00010000) 756 | 757 | [ 9.075530] jffs2: Empty flash at 0x0001200c ends at 0x00013000 758 | [ 9.081623] jffs2: CLEANMARKER node found at 0x00013000, not first node in block (0x00010000) 759 | [ 9.091838] jffs2: Empty flash at 0x0001300c ends at 0x00014000 760 | [ 9.097774] jffs2: CLEANMARKER node found at 0x00014000, not first node in block (0x00010000) 761 | [ OK ] Started Rpc se[ 9.109488] jffs2: Empty flash at 0x0001400c ends at 0x00015000 762 | rvice for ccsp. [ 9.115845] jffs2: CLEANMARKER node found at 0x00015000, not first node in block (0x00010000) 763 | 764 | [ 9.127604] jffs2: Empty flash at 0x0001500c ends at 0x00016000 765 | [ 9.133907] jffs2: CLEANMARKER node found at 0x00016000, not first node in block (0x00010000) 766 | [ OK [ 9.146691] jffs2: Empty flash at 0x0001600c ends at 0x00017000 767 | ] Started watchd[ 9.154325] jffs2: CLEANMARKER node found at 0x00017000, not first node in block (0x00010000) 768 | og feed service. 769 | [ 9.165749] jffs2: Empty flash at 0x0001700c ends at 0x00018000 770 | [ 9.165979] watchdog watchdog1: watchdog stopped 771 | [ 9.177831] jffs2: CLEANMARKER node found at 0x00018000, not first node in block (0x00010000) 772 | [ OK ] Started Permit User Sessions. [ 9.191753] jffs2: Empty flash at 0x0001800c ends at 0x00019000 773 | 774 | [ 9.197926] jffs2: CLEANMARKER node found at 0x00019000, not first node in block (0x00010000) 775 | [ 9.208172] jffs2: Empty flash at 0x0001900c ends at 0x0001a000 776 | [ 9.214228] jffs2: CLEANMARKER node found at 0x0001a000, not first node in block (0x00010000) 777 | [ 9.225835] jffs2: Empty flash at 0x0001a00c ends at 0x0001b000 778 | [ 9.231789] jffs2: CLEANMARKER node found at 0x0001b000, not first node in block (0x00010000) 779 | [ 9.242685] jffs2: Empty flash at 0x0001b00c ends at 0x0001c000 780 | [ 9.248617] jffs2: CLEANMARKER node found at 0x0001c000, not first node in block (0x00010000) 781 | [ 9.260232] jffs2: Empty flash at 0x0001c00c ends at 0x0001d000 782 | [ 9.266275] jffs2: CLEANMARKER node found at 0x0001d000, not first node in block (0x00010000) 783 | [ 9.276378] jffs2: Empty flash at 0x0001d00c ends at 0x0001e000 784 | [ 9.282351] jffs2: CLEANMARKER node found at 0x0001e000, not first node in block (0x00010000) 785 | [ OK ] Started DCM In[ 9.296391] jffs2: Empty flash at 0x0001e00c ends at 0x0001f000 786 | it Service, will[ 9.303751] jffs2: CLEANMARKER node found at 0x0001f000, not first node in block (0x00010000) 787 | boot CM up, and fork some daemons.. 788 | [ 9.328411] jffs2: CLEANMARKER node found at 0x00036000, not first node in block (0x00030000) 789 | [ 9.339017] jffs2: Empty flash at 0x0003600c ends at 0x00037000 790 | [ 9.345796] jffs2: CLEANMARKER node found at 0x00037000, not first node in block (0x00030000) 791 | [ 9.357036] jffs2: Empty flash at 0x0003700c ends at 0x00038000 792 | [ 9.363029] jffs2: CLEANMARKER node found at 0x00038000, not first node in block (0x00030000) 793 | [ OK ] Started Login Service. 794 | [ 9.374933] jffs2: Empty flash at 0x0003800c ends at 0x00039000 795 | [ 9.382052] jffs2: CLEANMARKER node found at 0x00039000, not first node in block (0x00030000) 796 | [ 9.392797] jffs2: Empty flash at 0x0003900c ends at 0x0003a000 797 | Starting Serial [ 9.398838] jffs2: CLEANMARKER node found at 0x0003a000, not first node in block (0x00030000) 798 | Getty on ttyS0... 799 | [ 9.412283] jffs2: Empty flash at 0x0003a00c ends at 0x0003b000 800 | [ 9.418217] jffs2: CLEANMARKER node found at 0x0003b000, not first node in block (0x00030000) 801 | [ 9.429295] jffs2: Empty flash at 0x0003b00c ends at 0x0003c000 802 | [ 9.435445] jffs2: CLEANMARKER node found at 0x0003c000, not first node in block (0x00030000) 803 | [ OK ] Started Serial Getty on ttyS0.[ 9.447344] jffs2: Empty flash at 0x0003c00c ends at 0x0003d000 804 | 805 | [ 9.454680] jffs2: CLEANMARKER node found at 0x0003d000, not first node in block (0x00030000) 806 | [ 9.469431] jffs2: Empty flash at 0x0003d00c ends at 0x0003e000 807 | [ OK [ 9.476578] jffs2: CLEANMARKER node found at 0x0003e000, not first node in block (0x00030000) 808 | ] Reached target Login Prompts. 809 | [ 9.489281] jffs2: Empty flash at 0x0003e00c ends at 0x0003f000 810 | [ 9.495246] jffs2: CLEANMARKER node found at 0x0003f000, not first node in block (0x00030000) 811 | [ OK ] Started Simple Network Management Protocol (SNMP) Daemon.. 812 | [ 9.647565] ethsw_flow_control: Enabling ACB 813 | [ 9.652220] ethsw_3390: Device ID 3390 814 | [ 9.655817] ethsw_int: Ethsw interrupt initialized 815 | [ 9.660820] ethsw_api: phy stop failed for port 0 816 | [ 9.665531] ethsw_api: phy stop failed for port 1 817 | [ 9.670247] ethsw_api: phy stop failed for port 2 818 | [ 9.674970] ethsw_api: phy stop failed for port 3 819 | [ 9.679719] ethsw_proc: /proc/driver/ethsw dir and files created 820 | [ 9.685749] ethsw_proc: Ethsw proc initialized 821 | [ 9.690198] ethsw_init_plat: Ethsw driver probed 822 | [ 9.695628] ethsw_init_plat: Ethsw module initialized 823 | [ 9.710070] libphy: UniMAC MII bus: probed 824 | [ 9.714199] unimac-mdio d040062c.mdio: Broadcom UniMAC MII bus at 0xa0e2862c 825 | [ 9.722099] libphy: Switch MDIO bus: probed 826 | [ 9.729019] Broadcom BCM3390 d4e403c0.mdio:08: did not get GPHY clock 827 | [ 9.738547] Broadcom BCM3390 d4e403c0.mdio:09: did not get GPHY clock 828 | [ 9.747925] Broadcom BCM3390 d4e403c0.mdio:0a: did not get GPHY clock 829 | [ 9.756890] Broadcom BCM3390 d4e403c0.mdio:0b: did not get GPHY clock 830 | [ 9.763427] unimac-mdio d4e403c0.mdio: Broadcom Switch MDIO bus at 0xa0e2a3c0 831 | [ 9.949058] rdpa: module license 'Proprietary' taints kernel. 832 | [ 9.954906] Disabling lock debugging due to kernel taint 833 | [ 10.040978] RDP Physical address=0xd5000000 Virtual address = 0xa3100000 834 | [ 10.055244] passing rdd_init_params.runner_iptv_tables_base_ptr=0x9b00000 835 | [ 10.125540] configure_runner: NATC keysize 0x100070 key element size 16 contextsize 0x400000 context element size 64 836 | [ 10.150209] rdd_init_params.runner_nat_cache_key_ptr=0xa3200000 837 | [ 10.156149] g_runner_ddr0_iptv_lookup_ptr=0xa3440000 838 | [ 10.161156] g_runner_ddr0_iptv_context_ptr=0xa3400000 839 | [ 10.166213] g_runner_ddr0_iptv_ssm_context_ptr=0xa3480000 840 | [ 10.394817] FPM_BPM phy_addr 0xd3a30000,virt_addr 0xa0e7e000 841 | [ 10.421906] jffs2: Newly-erased block contained word 0x31985 at offset 0x00050000 842 | [ 10.702596] brcm-dqnet: net device priv0 843 | [ 10.780714] d4e403c0.mdio:08: Broadcom BCM3390 PHY revision: 0x00, patch: 0 844 | [ 10.870876] brcm-dqnet: net device eth0 845 | [ 11.031074] brcm-dqnet: net device eth1 846 | [ 11.191652] brcm-dqnet: net device eth2 847 | [ 11.360629] brcm-dqnet: net device eth3 848 | [ 11.410577] brcm-dqnet: net device cm0 849 | [ 11.611109] FLOWMGR Init: v0.7 Sep 7 2019 08:09:56 850 | [ 11.683395] FLOWMGR Register fap: 3 851 | [ 11.762969] wl0: dqm cpucomm rx-q 33 tx-q 56 ssid: 852 | [ 11.767609] 33 34 853 | [ 11.769656] 35 36 854 | [ 11.771748] 37 38 855 | [ 11.773793] 39 40 856 | [ 11.775835] 857 | [ 11.777524] wl1: dqm cpucomm rx-q 33 tx-q 58 ssid: 858 | [ 11.782173] 41 42 859 | [ 11.784219] 43 44 860 | [ 11.786267] 45 46 861 | [ 11.788312] 47 48 862 | [ 11.790377] 863 | jffs2: Newly-erased block contained word 0x31985 at offset 0x00040000 864 | jffs2: Newly-erased block contained word 0x31985 at offset 0x00030000 865 | jffs2: Newly-erased block contained word 0x31985 at offset 0x00060000 866 | 867 | RDK (A Yocto Project based Distro) 2.0 Docsis-Gateway ttyS0 868 | 869 | Docsis-Gateway login: DQM Init complete for dqm tunnel rg-cm 870 | DQM Init complete for dqm tunnel svm-cm 871 | -------------------------------------------------------------------------------- /cga4233/eu/cm_dyn.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/cm_dyn.bin -------------------------------------------------------------------------------- /cga4233/eu/cm_perm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/cm_perm.bin -------------------------------------------------------------------------------- /cga4233/eu/cmboot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/cmboot.bin -------------------------------------------------------------------------------- /cga4233/eu/cmrun1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/cmrun1.bin -------------------------------------------------------------------------------- /cga4233/eu/flash1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/flash1.bin -------------------------------------------------------------------------------- /cga4233/eu/label.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/label.jpg -------------------------------------------------------------------------------- /cga4233/eu/mtd0_flash1.rdknonvol.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd0_flash1.rdknonvol.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd11_flash0.bolt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd11_flash0.bolt.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd12_flash0.cmnonvol1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd12_flash0.cmnonvol1.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd13_flash0.DevProfile_RO.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd13_flash0.DevProfile_RO.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd14_flash0.SSBL_ALT.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd14_flash0.SSBL_ALT.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd15_flash0.macadr.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd15_flash0.macadr.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd16_flash0.Trackers0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd16_flash0.Trackers0.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd17_flash0.Trackers1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd17_flash0.Trackers1.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd18_flash0.nvram.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd18_flash0.nvram.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd19_flash0.nvram1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd19_flash0.nvram1.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd1_flash1.BankerTable.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd1_flash1.BankerTable.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd20_flash0.devtree0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd20_flash0.devtree0.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd21_flash0.devtree1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd21_flash0.devtree1.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd22_flash0.cmnonvol0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd22_flash0.cmnonvol0.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd23_flash0.DevProfile.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd23_flash0.DevProfile.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd24_flash0.TSFS_Exception.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd24_flash0.TSFS_Exception.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd25_flash0.rgnonvol0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd25_flash0.rgnonvol0.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd26_flash0.rgnonvol1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd26_flash0.rgnonvol1.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd27_flash0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd27_flash0.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd2_flash1.Stage2Update.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd2_flash1.Stage2Update.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd3_flash1.kernel0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd3_flash1.kernel0.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd4_flash1.cm0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd4_flash1.cm0.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd5_flash1.rg0.bin: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aac3314d552cb39150232bd9826db5e10a5e31fd97d4e67261ff965347383301 3 | size 207486976 4 | -------------------------------------------------------------------------------- /cga4233/eu/mtd6_flash1.kernel1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd6_flash1.kernel1.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd7_flash1.cm1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd7_flash1.cm1.bin -------------------------------------------------------------------------------- /cga4233/eu/mtd8_flash1.rg1.bin: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:69dde7a9188d31df0075755e3e292ff1bf9337da60766c54054c2132b7cac0eb 3 | size 207486976 4 | -------------------------------------------------------------------------------- /cga4233/eu/mtd9_flash1.unused.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/mtd9_flash1.unused.bin -------------------------------------------------------------------------------- /cga4233/eu/nvram_root.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cga4233/eu/nvram_root.bin -------------------------------------------------------------------------------- /cga4233/eu/proc_mtd.txt: -------------------------------------------------------------------------------- 1 | dev: size erasesize name 2 | mtd0: 03520000 00020000 "flash1.rdknonvol" 3 | mtd1: 00120000 00020000 "flash1.BankerTable" 4 | mtd2: 00120000 00020000 "flash1.Stage2Update" 5 | mtd3: 00740000 00020000 "flash1.kernel0" 6 | mtd4: 01360000 00020000 "flash1.cm0" 7 | mtd5: 0c5e0000 00020000 "flash1.rg0" 8 | mtd6: 00740000 00020000 "flash1.kernel1" 9 | mtd7: 01360000 00020000 "flash1.cm1" 10 | mtd8: 0c5e0000 00020000 "flash1.rg1" 11 | mtd9: 007a0000 00020000 "flash1.unused" 12 | mtd10: 20000000 00020000 "flash1" 13 | mtd11: 00090000 00010000 "flash0.bolt" 14 | mtd12: 00060000 00010000 "flash0.cmnonvol1" 15 | mtd13: 00010000 00010000 "flash0.DevProfile_RO" 16 | mtd14: 000d0000 00010000 "flash0.SSBL_ALT" 17 | mtd15: 00030000 00010000 "flash0.macadr" 18 | mtd16: 00010000 00010000 "flash0.Trackers0" 19 | mtd17: 00010000 00010000 "flash0.Trackers1" 20 | mtd18: 00020000 00010000 "flash0.nvram" 21 | mtd19: 00020000 00010000 "flash0.nvram1" 22 | mtd20: 00020000 00010000 "flash0.devtree0" 23 | mtd21: 00020000 00010000 "flash0.devtree1" 24 | mtd22: 00060000 00010000 "flash0.cmnonvol0" 25 | mtd23: 00010000 00010000 "flash0.DevProfile" 26 | mtd24: 00010000 00010000 "flash0.TSFS_Exception" 27 | mtd25: 00070000 00010000 "flash0.rgnonvol0" 28 | mtd26: 00070000 00010000 "flash0.rgnonvol1" 29 | mtd27: 00800000 00010000 "flash0" 30 | -------------------------------------------------------------------------------- /cm500/bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cm500/bootloader.bin -------------------------------------------------------------------------------- /cm500/image1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cm500/image1.bin -------------------------------------------------------------------------------- /cm500/image2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/cm500/image2.bin -------------------------------------------------------------------------------- /ddw36c/bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/ddw36c/bootloader.bin -------------------------------------------------------------------------------- /ddw36c/image1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/ddw36c/image1.bin -------------------------------------------------------------------------------- /ddw36c/image2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/ddw36c/image2.bin -------------------------------------------------------------------------------- /epc3008/bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/epc3008/bootloader.bin -------------------------------------------------------------------------------- /epc3008/e3000-c1000r5593-150723c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/epc3008/e3000-c1000r5593-150723c.bin -------------------------------------------------------------------------------- /evw32c/EVW32C_0N-SBB-2.4.1008-SIP_sto.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/evw32c/EVW32C_0N-SBB-2.4.1008-SIP_sto.bin -------------------------------------------------------------------------------- /evw32c/EVW32C_VECTRA_2.7.1002-NCS_sto.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/evw32c/EVW32C_VECTRA_2.7.1002-NCS_sto.bin -------------------------------------------------------------------------------- /evw32c/bcm3384TP1_apps.bin_nand_ubifs_bs128k_ps2k.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/evw32c/bcm3384TP1_apps.bin_nand_ubifs_bs128k_ps2k.7z -------------------------------------------------------------------------------- /evw32c/bcm3384TP1_kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/evw32c/bcm3384TP1_kernel -------------------------------------------------------------------------------- /evw32c/bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/evw32c/bootloader.bin -------------------------------------------------------------------------------- /fast3890/FAST3890_TLC_50.10.11.T1_sto.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/fast3890/FAST3890_TLC_50.10.11.T1_sto.bin -------------------------------------------------------------------------------- /tc7200/LNXDC.01.01-apps-121220.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/tc7200/LNXDC.01.01-apps-121220.bin -------------------------------------------------------------------------------- /tc7200/LNXDC.01.01-kernel-121220.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/tc7200/LNXDC.01.01-kernel-121220.bin -------------------------------------------------------------------------------- /tc7200/LNXDC.01.01-rootfs-121220.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/tc7200/LNXDC.01.01-rootfs-121220.bin -------------------------------------------------------------------------------- /tc7200/TC7200.20-DC.01.03-140425-F-1FF.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/tc7200/TC7200.20-DC.01.03-140425-F-1FF.bin -------------------------------------------------------------------------------- /tc7200/TC7200.20-DC.36.05-130422-F-1C1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/tc7200/TC7200.20-DC.36.05-130422-F-1C1.bin -------------------------------------------------------------------------------- /tc7200/TC7200U-D6.01.27-131031-F-1C1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/tc7200/TC7200U-D6.01.27-131031-F-1C1.bin -------------------------------------------------------------------------------- /tc7200/TC7200U-D6.02.11-141019-F-1C1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/tc7200/TC7200U-D6.02.11-141019-F-1C1.bin -------------------------------------------------------------------------------- /tc7200/TC7200U-D6.02.42-180321-F-1C1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/tc7200/TC7200U-D6.02.42-180321-F-1C1.bin -------------------------------------------------------------------------------- /tc7200/bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/tc7200/bootloader.bin -------------------------------------------------------------------------------- /twg850/TWG850-4U-9D.01.04-090108-S-001.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/twg850/TWG850-4U-9D.01.04-090108-S-001.bin -------------------------------------------------------------------------------- /twg850/TWG850-4U-9D.01.09-100528-S-001.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/twg850/TWG850-4U-9D.01.09-100528-S-001.bin -------------------------------------------------------------------------------- /twg850/bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/twg850/bootloader.bin -------------------------------------------------------------------------------- /twg870/TWG870U-BA.01.36-110429-F-1C1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/twg870/TWG870U-BA.01.36-110429-F-1C1.bin -------------------------------------------------------------------------------- /twg870/TWG870U-BA.01.38-110803-F-1C1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/twg870/TWG870U-BA.01.38-110803-F-1C1.bin -------------------------------------------------------------------------------- /twg870/TWG870U-BA.01.75-130605-F-1C1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/twg870/TWG870U-BA.01.75-130605-F-1C1.bin -------------------------------------------------------------------------------- /twg870/bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jclehner/bcm2-dumps/aca6d4c63343be2fd7cd98960558a8c4fd72a4be/twg870/bootloader.bin --------------------------------------------------------------------------------