Tool/software:
hello teams:
sdk update from sdk805 to sdk902
target sdk version: 09.02.00.05 tisdk-tiny-image-j721s2-evm.tar.xz
hw: tda4ve
Our Linux kernel and dtb have been upgraded to sdk902, and the rootfs is made for the original sdk805 file system, which can run. Therefore, it can be judged that the kernel has been started normally.
Next we need to upgrade rootfs to the file system package of sdk 902
Due to limited conditions, we need to crop tiny fs and limit the size of the final ubi file to 32M. How do we crop the file system?
The current rootfs.ubi is based on the original tisdk-tiny-image-j721s2-evm.tar.xz and is still very large, 53M
mkfs.ubifs -r rootfs-evm/ -o rootfs.ubifs -F -m 4096 -e 253952 -c 207 -v mkfs.ubifs root: rootfs-evm/ min_io_size: 4096 leb_size: 253952 max_leb_cnt: 207 output: rootfs.ubifs jrn_size: 6094848 reserved: 0 compr: lzo keyhash: r5 fanout: 8 orph_lebs: 1 space_fixup: 1 selinux file: (null) super lebs: 1 master lebs: 2 log_lebs: 4 lpt_lebs: 2 orph_lebs: 1 main_lebs: 197 gc lebs: 1 index lebs: 4 leb_cnt: 207 UUID: 4BD7AE16-6F9C-43A2-A9A9-44E0BE25587B Success!
ubinize -o rootfs.ubi -m 4096 -p 256KiB -s 4096 -O 4096 ubinize.ini -v ubinize: LEB size: 253952 ubinize: PEB size: 262144 ubinize: min. I/O size: 4096 ubinize: sub-page size: 4096 ubinize: VID offset: 4096 ubinize: data offset: 8192 ubinize: UBI image sequence number: 1585830763 ubinize: loaded the ini-file "ubinize.ini" ubinize: count of sections: 1 ubinize: parsing section "ubifs" ubinize: mode=ubi, keep parsing ubinize: volume type: dynamic ubinize: volume ID: 0 ubinize: volume size was not specified in section "ubifs", assume minimum to fit image "rootfs.ubifs"52568064 bytes (50.1 MiB) ubinize: volume name: rootfs ubinize: volume alignment: 1 ubinize: autoresize flags found ubinize: adding volume 0 ubinize: writing volume 0 ubinize: image file: rootfs.ubifs ubinize: writing layout volume ubinize: done
ls -alh total 127M drwxr-xr-x 5 l-yzhong8 domain users 4.0K 8月 2 14:10 . drwxrwxrwx 39 l-yzhong8 domain users 4.0K 8月 1 13:50 .. drwxr-xr-x 11 l-yzhong8 domain users 4.0K 8月 2 11:34 rootfs1 drwxr-xr-x 18 l-yzhong8 domain users 4.0K 8月 1 14:49 rootfs1-bak drwxr-xr-x 18 l-yzhong8 domain users 4.0K 3月 9 2018 rootfs-evm -rw-r--r-- 1 l-yzhong8 domain users 53M 8月 2 18:42 rootfs.ubi -rw-r--r-- 1 l-yzhong8 domain users 51M 8月 2 18:42 rootfs.ubifs -rw-r--r-- 1 l-yzhong8 domain users 24M 8月 1 09:49 tisdk-tiny-image-j721s2-evm.tar.xz -rw-r--r-- 1 l-yzhong8 domain users 99 8月 1 14:43 ubinize.ini
So we did the following
rootfs-evm$ rm ./lib/udev/hwdb.bin rm ./lib/firmware/wave521c_codec_fw.bin rm ./lib/firmware/cnm/wave521c_codec_fw.bin rm ./lib/firmware/cadence/mhdp8546.bin rm ./boot/* -fr
This image has 28M after burning, and it can't run after burning.
set FLASH_TOOL=%FLASH_DIR%\ProcessorSDKSerialFlash_fast.exe call %FLASH_TOOL% -c %UNIFLASH_COM_PORT% -f %ROOTFS_PATH%\rootfs.ubi -d 0 -o 5FC0000 echo "loading rootfs.ubi " echo %time% echo *************** echo ***************
It gets stuck at the last print of the following log
[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd080] [ 0.000000] Linux version 6.1.80 (l-yzhong8@she1-w31865.vnet.valeo.com) (aarch64-oe-linux-gcc (GCC) 11.4.0, GNU ld (GNU Binutils) 2.38.20220708) #2 SMP PREEMPT Fri Aug 2 14:59:59 CST 2024 [ 0.000000] Machine model: Texas Instruments J721S2 EVM [ 0.000000] efi: UEFI not found. [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! [ 0.000000] Reserved memory: created CMA memory pool at 0x00000008c8000000, size 896 MiB [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a0000000, size 1 MiB [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a0000000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a0100000, size 15 MiB [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a0100000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a1000000, size 1 MiB [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a1000000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a1100000, size 15 MiB [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a1100000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a2000000, size 1 MiB [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a2000000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a2100000, size 31 MiB [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a2100000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a4000000, size 1 MiB [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a4000000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a4100000, size 31 MiB [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a4100000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a6000000, size 1 MiB [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a6000000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a6100000, size 15 MiB [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a6100000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a7000000, size 1 MiB [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a7000000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a7100000, size 15 MiB [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a7100000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a8000000, size 1 MiB [ 0.000000] OF: reserved mem: initialized node vision-apps-c71_1-dma-memory@a8000000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a8100000, size 31 MiB [ 0.000000] OF: reserved mem: initialized node vision-apps-c71_1-memory@a8100000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000aa000000, size 1 MiB [ 0.000000] OF: reserved mem: initialized node vision-apps-c71-dma-memory@aa000000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000aa100000, size 111 MiB [ 0.000000] OF: reserved mem: initialized node vision-apps-c71_0-memory@aa100000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000b4000000, size 96 MiB [ 0.000000] OF: reserved mem: initialized node vision-apps-dma-memory@b4000000, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: initialized node vision-apps-shared-memories, compatible id dma-heap-carveout [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000da000000, size 64 MiB [ 0.000000] OF: reserved mem: initialized node vision-apps-core-heap-memory-lo@da000000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x0000000880000000, size 736 MiB [ 0.000000] OF: reserved mem: initialized node vision-apps-core-heap-memory-hi@880000000, compatible id shared-dma-pool [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x0000000080000000-0x00000000ffffffff] [ 0.000000] DMA32 empty [ 0.000000] Normal [mem 0x0000000100000000-0x00000008ffffffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000080000000-0x000000009e7fffff] [ 0.000000] node 0: [mem 0x000000009e800000-0x00000000b0ffffff] [ 0.000000] node 0: [mem 0x00000000b1000000-0x00000000b1ffffff] [ 0.000000] node 0: [mem 0x00000000b2000000-0x00000000b9ffffff] [ 0.000000] node 0: [mem 0x00000000ba000000-0x00000000d9ffffff] [ 0.000000] node 0: [mem 0x00000000da000000-0x00000000ddffffff] [ 0.000000] node 0: [mem 0x00000000de000000-0x00000000ffffffff] [ 0.000000] node 0: [mem 0x0000000880000000-0x00000008adffffff] [ 0.000000] node 0: [mem 0x00000008ae000000-0x00000008ffffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000008ffffffff] [ 0.000000] psci: probing for conduit method from DT. [ 0.000000] psci: PSCIv1.1 detected in firmware. [ 0.000000] psci: Using standard PSCI v0.2 function IDs [ 0.000000] psci: Trusted OS migration not required [ 0.000000] psci: SMC Calling Convention v1.2 [ 0.000000] percpu: Embedded 20 pages/cpu s41064 r8192 d32664 u81920 [ 0.000000] Detected PIPT I-cache on CPU0 [ 0.000000] CPU features: detected: GIC system register CPU interface [ 0.000000] CPU features: detected: Spectre-v3a [ 0.000000] CPU features: detected: Spectre-BHB [ 0.000000] CPU features: kernel page table isolation forced ON by KASLR [ 0.000000] CPU features: detected: Kernel page table isolation (KPTI) [ 0.000000] CPU features: detected: ARM erratum 1742098 [ 0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923 [ 0.000000] alternatives: applying boot alternatives [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 1032192 [ 0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=serial2 [ 0.000000] mtdid=spi-nand0 [ 0.000000] mtdparts=spi-nand0:512k(ospi_nand.tiboot3),512k(ospi_nand.sysfw),10m(ospi_nand.mcu1_0),768k(ospi_nand.atf),19m(ospi_nand.kernel),1m(ospi_nand.dtb),24m(ospi_nand.lateapp1),40m(ospi_nand.lateapp2),32m(ospi_nand.rootfs),256k(ospi_nand.phypattern) [ 0.000000] ubi part ospi_nand.rootfs [ 0.000000] ubi.mtd=ospi_nand.rootfs root=ubi0:rootfs rw rootfstype=ubifs rootwait [ 0.000000] Unknown kernel command line parameters "ubi part mtdid=spi-nand0", will be passed to user space. [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] software IO TLB: area num 2. [ 0.000000] software IO TLB: mapped [mem 0x00000000fbfff000-0x00000000fffff000] (64MB) [ 0.000000] Memory: 1335268K/4194304K available (11776K kernel code, 1262K rwdata, 3836K rodata, 1984K init, 438K bss, 1941532K reserved, 917504K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. [ 0.000000] rcu: RCU event tracing is enabled. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=2. [ 0.000000] Trampoline variant of Tasks RCU enabled. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] GICv3: GIC: Using split EOI/Deactivate mode [ 0.000000] GICv3: 960 SPIs implemented [ 0.000000] GICv3: 0 Extended SPIs implemented [ 0.000000] Root IRQ handler: gic_handle_irq [ 0.000000] GICv3: GICv3 features: 16 PPIs [ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001900000 [ 0.000000] ITS [mem 0x01820000-0x0182ffff] [ 0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS [ 0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19 [ 0.000000] ITS@0x0000000001820000: allocated 524288 Devices @8ae800000 (flat, esz 8, psz 64K, shr 0) [ 0.000000] ITS: using cache flushing for cmd queue [ 0.000000] GICv3: using LPI property table @0x00000008ae030000 [ 0.000000] GIC: using cache flushing for LPI property table [ 0.000000] GICv3: CPU0: using allocated LPI pending table @0x00000008ae040000 [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns [ 0.000000] sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns [ 0.000196] Console: colour dummy device 80x25 [ 0.000231] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000) [ 0.000236] pid_max: default: 32768 minimum: 301 [ 0.000262] LSM: Security Framework initializing [ 0.000323] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.000336] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.001177] cblist_init_generic: Setting adjustable number of callback queues. [ 0.001183] cblist_init_generic: Setting shift to 1 and lim to 1. [ 0.001226] cblist_init_generic: Setting adjustable number of callback queues. [ 0.001228] cblist_init_generic: Setting shift to 1 and lim to 1. [ 0.001316] rcu: Hierarchical SRCU implementation. [ 0.001318] rcu: Max phase no-delay instances is 1000. [ 0.001490] Platform MSI: msi-controller@1820000 domain created [ 0.001630] PCI/MSI: /bus@100000/interrupt-controller@1800000/msi-controller@1820000 domain created [ 0.001775] EFI services will not be available. [ 0.001898] smp: Bringing up secondary CPUs ... [ 0.016347] Detected PIPT I-cache on CPU1 [ 0.016410] GICv3: CPU1: found redistributor 1 region 0:0x0000000001920000 [ 0.016424] GICv3: CPU1: using allocated LPI pending table @0x00000008ae050000 [ 0.016457] CPU1: Booted secondary processor 0x0000000001 [0x411fd080] [ 0.016512] smp: Brought up 1 node, 2 CPUs [ 0.016517] SMP: Total of 2 processors activated. [ 0.016519] CPU features: detected: 32-bit EL0 Support [ 0.016522] CPU features: detected: CRC32 instructions [ 0.016554] CPU: All CPU(s) started at EL2 [ 0.016556] alternatives: applying system-wide alternatives [ 0.017487] devtmpfs: initialized [ 0.022798] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.022811] futex hash table entries: 512 (order: 3, 32768 bytes, linear) [ 0.034826] pinctrl core: initialized pinctrl subsystem [ 0.035150] DMI not present or invalid. [ 0.035484] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.036121] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations [ 0.036227] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.036323] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.036363] audit: initializing netlink subsys (disabled) [ 0.036456] audit: type=2000 audit(0.036:1): state=initialized audit_enabled=0 res=1 [ 0.036662] thermal_sys: Registered thermal governor 'step_wise' [ 0.036667] thermal_sys: Registered thermal governor 'power_allocator' [ 0.036692] cpuidle: using governor menu [ 0.036769] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.036809] ASID allocator initialised with 32768 entries [ 0.043755] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@100000/pinctrl@a40000/mcu-cpsw-cpts [ 0.045143] KASLR enabled [ 0.047952] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages [ 0.047957] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page [ 0.047961] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages [ 0.047962] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page [ 0.047964] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages [ 0.047966] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page [ 0.047968] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages [ 0.047970] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page [ 0.048722] k3-chipinfo 43000014.chipid: Family:J721S2 rev:SR1.0 JTAGID[0x0bb7502f] Detected [ 0.049644] iommu: Default domain type: Translated [ 0.049650] iommu: DMA domain TLB invalidation policy: strict mode [ 0.049787] SCSI subsystem initialized [ 0.049949] usbcore: registered new interface driver usbfs [ 0.049964] usbcore: registered new interface driver hub [ 0.049977] usbcore: registered new device driver usb [ 0.050180] pps_core: LinuxPPS API ver. 1 registered [ 0.050182] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 0.050187] PTP clock support registered [ 0.050261] EDAC MC: Ver: 3.0.0 [ 0.050761] FPGA manager framework [ 0.050800] Advanced Linux Sound Architecture Driver Initialized. [ 0.051222] clocksource: Switched to clocksource arch_sys_counter [ 0.051342] VFS: Disk quotas dquot_6.6.0 [ 0.051363] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.054146] Carveout Heap: Exported 512 MiB at 0x00000000ba000000 [ 0.054216] NET: Registered PF_INET protocol family [ 0.054447] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 0.056011] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) [ 0.056036] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.056043] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 0.056152] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear) [ 0.056646] TCP: Hash tables configured (established 32768 bind 32768) [ 0.056736] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) [ 0.056789] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) [ 0.056927] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.057234] RPC: Registered named UNIX socket transport module. [ 0.057238] RPC: Registered udp transport module. [ 0.057240] RPC: Registered tcp transport module. [ 0.057242] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.057246] NET: Registered PF_XDP protocol family [ 0.057257] PCI: CLS 0 bytes, default 64 [ 0.057702] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available [ 0.058500] Initialise system trusted keyrings [ 0.058620] workingset: timestamp_bits=46 max_order=20 bucket_order=0 [ 0.060567] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.060851] NFS: Registering the id_resolver key type [ 0.060874] Key type id_resolver registered [ 0.060877] Key type id_legacy registered [ 0.060905] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 0.060908] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering... [ 0.080271] Key type asymmetric registered [ 0.080276] Asymmetric key parser 'x509' registered [ 0.080309] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) [ 0.080400] io scheduler mq-deadline registered [ 0.080404] io scheduler kyber registered [ 0.081668] can_transceiver_phy_probe 109 [ 0.081754] can_transceiver_phy_probe 109 [ 0.081805] can_transceiver_phy_probe 109 [ 0.081856] can_transceiver_phy_probe 109 [ 0.081904] can_transceiver_phy_probe 109 [ 0.082684] pinctrl-single 4301c000.pinctrl: 94 pins, size 376 [ 0.082784] pinctrl-single 4301c038.pinctrl: could not get mem_region [ 0.082787] pinctrl-single: probe of 4301c038.pinctrl failed with error -16 [ 0.082808] pinctrl-single 4301c068.pinctrl: could not get mem_region [ 0.082810] pinctrl-single: probe of 4301c068.pinctrl failed with error -16 [ 0.082836] pinctrl-single 4301c190.pinctrl: 1 pins, size 4 [ 0.082965] pinctrl-single 11c000.pinctrl: 72 pins, size 288 [ 0.083562] pinctrl-single a40000.pinctrl: 512 pins, size 2048 [ 0.087004] Serial: 8250/16550 driver, 12 ports, IRQ sharing enabled [ 0.091377] loop: module loaded [ 0.091998] megasas: 07.719.03.00-rc1 [ 0.093510] tun: Universal TUN/TAP device driver, 1.6 [ 0.093634] CAN device driver interface [ 0.094000] VFIO - User Level meta-driver version: 0.3 [ 0.094429] usbcore: registered new interface driver usb-storage [ 0.094735] i2c_dev: i2c /dev entries driver [ 0.095433] sdhci: Secure Digital Host Controller Interface driver [ 0.095438] sdhci: Copyright(c) Pierre Ossman [ 0.095566] sdhci-pltfm: SDHCI platform and OF driver helper [ 0.095866] ledtrig-cpu: registered to indicate activity on CPUs [ 0.095958] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping .... [ 0.096102] usbcore: registered new interface driver usbhid [ 0.096106] usbhid: USB HID core driver [ 0.096608] optee: probing for conduit method. [ 0.096625] optee: revision 3.19 (d6c5d003) [ 0.096778] optee: dynamic shared memory is enabled [ 0.097003] optee: initialized driver [ 0.097954] Initializing XFRM netlink socket [ 0.097987] NET: Registered PF_PACKET protocol family [ 0.097989] can: controller area network core [ 0.098033] NET: Registered PF_CAN protocol family [ 0.098037] can: raw protocol [ 0.098041] can: broadcast manager protocol [ 0.098046] can: netlink gateway - max_hops=1 [ 0.098130] Key type dns_resolver registered [ 0.098354] registered taskstats version 1 [ 0.098368] Loading compiled-in X.509 certificates [ 0.104321] ti-sci 44083000.system-controller: ABI: 3.1 (firmware rev 0x0008 '8.5.2--v08.05.02 (Chill Capybar') [ 0.141694] ti-sci-intr 42200000.interrupt-controller: Interrupt Router 125 domain created [ 0.141798] ti-sci-intr bus@100000:interrupt-controller@a00000: Interrupt Router 148 domain created [ 0.141905] ti-sci-intr 310e0000.interrupt-controller: Interrupt Router 227 domain created [ 0.142139] ti-sci-inta 33d00000.msi-controller: Interrupt Aggregator domain 265 created [ 0.142547] ti-udma 311a0000.dma-controller: Number of rings: 48 [ 0.143162] ti-udma 311a0000.dma-controller: Channels: 24 (bchan: 0, tchan: 8, rchan: 16) [ 0.144079] k3-ringacc 2b800000.ringacc: Ring Accelerator probed rings:286, gp-rings[96,20] sci-dev-id:272 [ 0.144086] k3-ringacc 2b800000.ringacc: dma-ring-reset-quirk: disabled [ 0.144089] k3-ringacc 2b800000.ringacc: RA Proxy rev. 66349100, num_proxies:64 [ 0.145494] k3-ringacc 3c000000.ringacc: Ring Accelerator probed rings:1024, gp-rings[878,128] sci-dev-id:259 [ 0.145502] k3-ringacc 3c000000.ringacc: dma-ring-reset-quirk: disabled [ 0.145505] k3-ringacc 3c000000.ringacc: RA Proxy rev. 66349100, num_proxies:64 [ 0.146024] printk: console [ttyS2] disabled [ 0.146057] 2830000.serial: ttyS2 at MMIO 0x2830000 (irq = 212, base_baud = 3000000) is a 8250 [ 1.906284] printk: console [ttyS2] enabled [ 1.910945] omap8250 2840000.serial: failed to get alias [ 1.916520] omap8250 2850000.serial: failed to get alias [ 1.922126] omap8250 2860000.serial: failed to get alias [ 1.927608] omap8250 2870000.serial: failed to get alias [ 1.933035] omap8250 2880000.serial: failed to get alias [ 1.938583] omap8250 2890000.serial: failed to get alias [ 1.944272] cqspi_probe 2483 [ 1.947144] cqspi_probe 2502 [ 1.950022] cqspi_probe 2511 [ 1.952908] cqspi_probe 2521 [ 1.955787] cqspi_probe 2530 [ 1.958676] cqspi_probe 2541 [ 1.961550] cqspi_probe 2546 [ 1.964635] cqspi_probe 2554 [ 1.967510] cqspi_probe 2563 [ 1.970379] cqspi_probe 2571 [ 1.973252] cqspi_probe 2610 [ 1.976165] cqspi_probe 2631 [ 1.979579] m_can_plat_probe 87 [ 1.983338] m_can_platform 27c1000.can: m_can device registered (irq=220, version=32) [ 1.991714] m_can_plat_probe 87 [ 1.995536] m_can_platform 27d1000.can: m_can device registered (irq=221, version=32) [ 2.004001] m_can_plat_probe 87 [ 2.007598] m_can_platform 2681000.can: m_can device registered (irq=222, version=32) [ 2.015929] m_can_plat_probe 87 [ 2.019570] m_can_platform 2691000.can: m_can device registered (irq=223, version=32) [ 2.027926] m_can_plat_probe 87 [ 2.031562] m_can_platform 26a1000.can: m_can device registered (irq=224, version=32) [ 2.040462] am65_cpsw_nuss_probe 2941 [ 2.044309] davinci_mdio_probe 524 [ 2.047719] davinci_mdio c200f00.mdio: Configuring MDIO in manual mode [ 2.091223] davinci_mdio c200f00.mdio: davinci mdio revision 9.7, bus freq 1000000 [ 2.101551] davinci_mdio c200f00.mdio: phy[7]: device c200f00.mdio:07, driver Marvell 88Q2220 [ 2.110090] am65-cpsw-nuss c200000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000 [ 2.122859] am65-cpsw-nuss c200000.ethernet: Use random MAC address [ 2.129117] am65-cpsw-nuss c200000.ethernet: initialized cpsw ale version 1.4 [ 2.136236] am65-cpsw-nuss c200000.ethernet: ALE Table size 64 [ 2.142613] am65-cpsw-nuss c200000.ethernet: CPTS ver 0x4e8a010b, freq:200000000, add_val:4 pps:0 [ 2.153164] am65-cpts 310d0000.cpts: CPTS ver 0x4e8a010c, freq:200000000, add_val:4 pps:0 [ 2.163135] mmc0: CQHCI version 5.10 [ 2.169555] omap-mailbox 31f80000.mailbox: omap mailbox rev 0x66fca100 [ 2.176511] omap-mailbox 31f81000.mailbox: omap mailbox rev 0x66fca100 [ 2.183538] omap-mailbox 31f82000.mailbox: omap mailbox rev 0x66fca100 [ 2.190804] omap-mailbox 31f84000.mailbox: omap mailbox rev 0x66fca100 [ 2.198279] ti-udma 285c0000.dma-controller: Channels: 26 (tchan: 13, rchan: 13, gp-rflow: 8) [ 2.203812] mmc0: SDHCI controller on 4f80000.mmc [4f80000.mmc] using ADMA 64-bit
The question becomes, how can we adapt the file system of sdk902 and make it boot normally after burning, and limit the size to less than 32M