您尚未登录。

楼主 # 2024-03-14 08:42:06

子非鱼
会员
注册时间: 2024-03-13
已发帖子: 18
积分: 18

adb提示No space left on device

本人新手,使用的是T113的芯片,当我使用adb向板子传文件的adb提示remote No space left on device。
下面是我使用flash启动的的分区状况

Filesystem                Size      Used Available Use% Mounted on
/dev/root                35.5M     35.5M         0 100% /rom
devtmpfs                 53.0M         0     53.0M   0% /dev
tmpfs                    57.5M         0     57.5M   0% /tmp
/dev/by-name/rootfs_data
                          1.4M     24.0K      1.2M   2% /overlay
overlayfs:/overlay        1.4M     24.0K      1.2M   2% /
/dev/ubi0_8              31.7M     24.0K     30.0M   0% /mnt/UDISK

当我使用sd卡启动的时候分区如下,并且使用sd启动的话,系统是只读的,不能写入

Filesystem                Size      Used Available Use% Mounted on
/dev/root                35.5M     35.5M         0 100% /
devtmpfs                 53.0M         0     53.0M   0% /dev
tmpfs                    57.5M         0     57.5M   0% /tmp

请问有没有什么解决方法?

离线

#1 2024-03-14 09:42:53

marcus
会员
注册时间: 2021-03-19
已发帖子: 67
积分: 17

Re: adb提示No space left on device

root挂载的是只读分区,传文件时应该传到可写分区上。

离线

楼主 #2 2024-03-14 10:03:28

子非鱼
会员
注册时间: 2024-03-13
已发帖子: 18
积分: 18

Re: adb提示No space left on device

那我该怎么把上传的文件放到/lib目录下呢,因为我自己写的程序在板子上不能运行,看的百度说的好像是因为缺少了两个.so文件,所以我想把.so文件上传到板子的/lib目录下,

离线

#3 2024-03-14 10:32:42

ubuntu
会员
注册时间: 2020-03-30
已发帖子: 229
积分: 207

Re: adb提示No space left on device

两个的日志都贴出来

离线

楼主 #4 2024-03-14 11:00:04

子非鱼
会员
注册时间: 2024-03-13
已发帖子: 18
积分: 18

Re: adb提示No space left on device

板子上的/var下面没有log文件夹,不知道从哪里看   lol
这是sd启动的时候
adb失败

C:\Users\76455>adb push E:\Projects\Cpro\libc.so.6 /lib
adb: error: failed to copy 'E:\Projects\Cpro\libc.so.6' to '/lib/libc.so.6': remote Read-only file system
E:\Projects\Cpro\libc.so.6: 0 files pushed. 3.2 MB/s (65536 bytes in 0.020s)

当我在板子上除了tmp目录的其他目录下进行写操作的时候也会提示系统只读

root@TinaLinux:/lib# mkdir 111
mkdir: can't create directory '111': Read-only file system\

下面是我使用flash启动的时候
使用adb push的时候,第一文件成功了,第二个文件提示remote No space left on device

C:\Users\76455>adb push E:\Projects\Cpro\libc.so.6 /lib
E:\Projects\Cpro\libc.so.6: 1 file pushed. 2.0 MB/s (1417908 bytes in 0.670s)

C:\Users\76455>adb push E:\Projects\Cpro\libgcc_s.so.1 /lib
adb: error: failed to copy 'E:\Projects\Cpro\libgcc_s.so.1' to '/lib/libgcc_s.so.1': remote No space left on device
E:\Projects\Cpro\libgcc_s.so.1: 0 files pushed. 0.9 MB/s (441960 bytes in 0.480s)

此时我在对板子上的文件进行写操作的时候也会提示No space left on device

root@TinaLinux:/lib# mkdir 111
mkdir: can't create directory '111': No space left on device

离线

#5 2024-03-14 11:13:31

ubuntu
会员
注册时间: 2020-03-30
已发帖子: 229
积分: 207

Re: adb提示No space left on device

用串口看日志

离线

楼主 #6 2024-03-14 13:15:36

子非鱼
会员
注册时间: 2024-03-13
已发帖子: 18
积分: 18

Re: adb提示No space left on device

上传的时候终端上什么都没有显示,需要用什么命令查看吗?

离线

#7 2024-03-14 14:37:20

marcus
会员
注册时间: 2021-03-19
已发帖子: 67
积分: 17

Re: adb提示No space left on device

子非鱼 说:

那我该怎么把上传的文件放到/lib目录下呢,因为我自己写的程序在板子上不能运行,看的百度说的好像是因为缺少了两个.so文件,所以我想把.so文件上传到板子的/lib目录下,

/lib 应该是在 root分区内。
flash启动时可以写入一个文件,说明flash启动时root分区可写入,后面写不进去应该是分区满了。可以看一下分区占用情况(df -h)

分区满只能删除一些不用的文件,或者重新修改分区配置。

离线

#8 2024-03-14 15:12:56

海石生风
会员
所在地: 深圳
注册时间: 2019-07-02
已发帖子: 522
积分: 643
个人网站

Re: adb提示No space left on device

首先,“/” 分区是只读的,可以重新mount为rw解决;但应该分区确实已经没有任何剩余空间了,重新mount为rw也没用。

应该重新打包rootfs,预留出空闲空间。另外我怀疑你的rootfs是romfs之类的只读文件系统,是的话要更换其文件系统为有写入功能的格式。

最近编辑记录 海石生风 (2024-03-14 15:16:20)

离线

楼主 #10 2024-03-14 16:25:41

子非鱼
会员
注册时间: 2024-03-13
已发帖子: 18
积分: 18

Re: adb提示No space left on device

@海石生风
使用sd启动的时候。重新mount为rw也没用,还是提示只读系统。感觉可能使用sd启动就是没有写权限。

此外,使用flash启动的话,怎么样配置才能在重新编译打包后增大rootfs的空间?

离线

#11 2024-03-14 17:17:49

海石生风
会员
所在地: 深圳
注册时间: 2019-07-02
已发帖子: 522
积分: 643
个人网站

Re: adb提示No space left on device

你的rootfs的格式应该是romfs之类没有写入功能的文件系统,要更换带有写入功能的文件系统

离线

楼主 #12 2024-03-15 08:37:57

子非鱼
会员
注册时间: 2024-03-13
已发帖子: 18
积分: 18

Re: adb提示No space left on device

海石生风 说:

你的rootfs的格式应该是romfs之类没有写入功能的文件系统,要更换带有写入功能的文件系统

之前的使用的格式好像是squashfs,然后我使用menuconfig增加了以下下两个配置,想着这样是不是可以增大rootfs的空间。

local
     ->Target Images
          ->[*] ext4
          ->(80) Root filesystem partition size (in MB)

不过当我修改好配置,重新编译打包后,使用板子的nand启动时,终端提示

[    3.286362] No filesystem could mount root, tried:
[    3.286364]  squashfs
[    3.296004] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(254,0)

然后我将uboot中的rootfstype变量从squashfs改为ext4,再次启动,终端提示

[    3.206709] VFS: Cannot open root device "ubiblock0_5" or unknown-block(254,0): error -19
[    3.215884] Please append a correct "root=" boot option; here are the available partitions:
[    3.225262] 1f00            1024 mtdblock0
[    3.225265]  (driver?)
[    3.232586] 1f01            3072 mtdblock1
[    3.232589]  (driver?)
[    3.239905] 1f02            1024 mtdblock2
[    3.239907]  (driver?)
[    3.247206] 1f03          125952 mtdblock3
[    3.247209]  (driver?)
[    3.254520] fe00           82152 ubiblock0_5
[    3.254522]  (driver?)
[    3.262020] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(254,0)

不知道修改这种配置的方法可以不可真的增加rootfs的空间,如果可以的话,那这个问题又该怎么解决呢?

离线

#13 2024-03-15 09:01:20

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,245
积分: 9197

Re: adb提示No space left on device

子非鱼 说:

上传的时候终端上什么都没有显示,需要用什么命令查看吗?

从上电开始的串口日志。





离线

楼主 #14 2024-03-15 09:18:19

子非鱼
会员
注册时间: 2024-03-13
已发帖子: 18
积分: 18

Re: adb提示No space left on device

晕哥 说:
子非鱼 说:

上传的时候终端上什么都没有显示,需要用什么命令查看吗?

从上电开始的串口日志。

这是我还没有配置文件系统为ext4的时候,使用adb push提示remote No space left on device的时候的板子的上电信息

[29]HELLO! BOOT0 is starting!
[32]BOOT0 commit : 88480af-dirty
[35]set pll start
[41]periph0 has been enabled
[44]set pll end
[45][pmu]: bus read error
[48]board init ok
[50]ZQ value = 0x2d
[51]get_pmu_exist() = -1
[54]DRAM BOOT DRIVE INFO: V0.33
[57]DRAM CLK = 936 MHz
[59]DRAM Type = 3 (2:DDR2,3:DDR3)
[62]DRAMC read ODT  off.
[65]DRAM ODT value: 0x42.
[67]ddr_efuse_type: 0xa
[70]DRAM SIZE =128 M
[72]dram_tpr4:0x0
[74]PLL_DDR_CTRL_REG:0xf8004d00
[77]DRAM_CLK_REG:0xc0000000
[79][TIMING DEBUG] MR2= 0x20
[87]DRAM simple test OK.
[89]rtc standby flag is 0x0, super standby flag is 0x0
[94]dram size =128
[97]spinand UBOOT_START_BLK_NUM 8 UBOOT_LAST_BLK_NUM 32
[102]block from 8 to 32
[210]Check is correct.
[212]dma 0x29c0c int is not used yet
[216]dma 0x29c0c int is free, you do not need to free it again
[221]Entry_name        = u-boot
[227]Entry_name        = optee
[231]Entry_name        = dtb
[234]Jump to second Boot.
M/TC: OP-TEE version: 6aef7bb2-dirty (gcc version 5.3.1 20160412 (Linaro GCC 5.3-2016.05)) #1 Fri Jul 23 09:25:11 UTC                                                                                                                    2021 arm


U-Boot 2018.05-g24521d6-dirty (Mar 12 2024 - 19:33:32 -0700) Allwinner Technology

[00.287]CPU:   Allwinner Family
[00.290]Model: sun8iw20
I2C:   FDT ERROR:fdt_set_all_pin:[twi0]-->FDT_ERR_BADPATH
FDT ERROR:fdt_set_all_pin:[twi1]-->FDT_ERR_BADPATH
ready
[00.311]DRAM:  128 MiB
[00.315]Relocation Offset is: 04f01000
[00.334]secure enable bit: 0
[00.336]smc_tee_inform_fdt failed with: -65526[00.341]CPU=1008 MHz,PLL6=600 Mhz,AHB=200 Mhz, APB1=100Mhz  MBus=300Mhz
[00.347]gic: sec monitor mode
[00.350]flash init start
[00.352]workmode = 0,storage type = 0
sspi->base_addr = 0x4025000, the SPI control register:
[VER] 0x4025000 = 0x00010001, [GCR] 0x4025004 = 0x00000083, [TCR] 0x4025008 = 0x00000184
[ICR] 0x4025010 = 0x00000f00, [ISR] 0x4025014 = 0x00000032, [FCR] 0x4025018 = 0x00200020
[FSR] 0x402501c = 0x00000000, [WCR] 0x4025020 = 0x00000000, [CCR] 0x4025024 = 0x00000002
[SDC] 0x4025028 = 0x00002000, [BCR] 0x4025030 = 0x00000000, [TCR] 0x4025034 = 0x00000000
[BCC] 0x4025038 = 0x10000000, [DMA] 0x4025088 = 0x000000e5

[00.399]sunxi-spinand-phy: not detect any munufacture from id table
[00.406]sunxi-spinand-phy: get spi-nand Model from fdt fail
[00.411]sunxi-spinand-phy: get phy info from fdt fail

device nand0 <nand>, # parts = 4
 #: name                size            offset          mask_flags
 0: boot0               0x00100000      0x00000000      1
 1: uboot               0x00300000      0x00100000      1
 2: secure_storage      0x00100000      0x00400000      1
 3: sys                 0x07b00000      0x00500000      0

active partition: nand0,0 - (boot0) 0x00100000 @ 0x00000000

defaults:
mtdids  : nand0=nand
mtdparts: mtdparts=nand:1024k@0(boot0)ro,3072k@1048576(uboot)ro,1024k@4194304(secure_storage)ro,-(sys)
[00.528]ubi0: attaching mtd4
[00.754]ubi0: scanning is finished
[00.763]ubi0: attached mtd4 (name "sys", size 123 MiB)
[00.768]ubi0: PEB size: 262144 bytes (256 KiB), LEB size: 258048 bytes
[00.774]ubi0: min./max. I/O unit sizes: 4096/4096, sub-page size 2048
[00.780]ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096
[00.786]ubi0: good PEBs: 492, bad PEBs: 0, corrupted PEBs: 0
[00.792]ubi0: user volume: 9, internal volumes: 1, max. volumes count: 128
[00.798]ubi0: max/mean erase counter: 2/1, WL threshold: 4096, image sequence number: 0
[00.806]ubi0: available PEBs: 0, total reserved PEBs: 492, PEBs reserved for bad PEB handling: 20
[00.814]sunxi flash init ok
[01.021]Loading Environment from SUNXI_FLASH... OK
[01.060]Item0 (Map) magic is bad
secure storage read widevine fail
[01.065]secure storage read widevine fail with:-1
secure storage read ec_key fail
[01.073]secure storage read ec_key fail with:-1
secure storage read ec_cert1 fail
[01.080]secure storage read ec_cert1 fail with:-1
secure storage read ec_cert2 fail
[01.087]secure storage read ec_cert2 fail with:-1
secure storage read ec_cert3 fail
[01.095]secure storage read ec_cert3 fail with:-1
secure storage read rsa_key fail
[01.102]secure storage read rsa_key fail with:-1
secure storage read rsa_cert1 fail
[01.110]secure storage read rsa_cert1 fail with:-1
secure storage read rsa_cert2 fail
[01.117]secure storage read rsa_cert2 fail with:-1
secure storage read rsa_cert3 fail
[01.125]secure storage read rsa_cert3 fail with:-1
[01.129]usb burn from boot
delay time 0
weak:otg_phy_config
[01.141]usb prepare ok
[01.347]usb sof ok
[01.349]usb probe ok
[01.351]usb setup ok
set address 0x10
set address 0x10 ok
set address 0x11
set address 0x11 ok
try to update
[04.355]do_burn_from_boot usb : have no handshake
[04.382]update bootcmd
[04.407]change working_fdt 0x43ec0e70 to 0x43ea0e70
[04.425]update dts
Hit any key to stop autoboot:  0
[05.890]no vendor_boot partition is found
Android's image name: t113-100ask
[05.900]Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 5.4.61 (lcm@ubuntu) (arm-openwrt-linux-muslgnueabi-gcc.bin (OpenWrt/Linaro GCC 6.4-2017.1                                                                                                                   1 2017-11) 6.4.1, GNU ld (GNU Binutils) 2.27) #19 SMP PREEMPT Thu Mar 14 02:49:16 UTC 2024
[    0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=10c5387d
[    0.000000] CPU: div instructions available: patching division code
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000] OF: fdt: Machine model: sun8iw20
[    0.000000] printk: bootconsole [earlycon0] enabled
[    0.000000] Memory policy: Data cache writealloc
[    0.000000] cma: Reserved 8 MiB at 0x47800000
[    0.000000] On node 0 totalpages: 32768
[    0.000000]   Normal zone: 256 pages used for memmap
[    0.000000]   Normal zone: 0 pages reserved
[    0.000000]   Normal zone: 32768 pages, LIFO batch:7
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.0 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.0
[    0.000000] percpu: Embedded 15 pages/cpu s30412 r8192 d22836 u61440
[    0.000000] pcpu-alloc: s30412 r8192 d22836 u61440 alloc=15*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 32512
[    0.000000] Kernel command line: ubi.mtd=sys ubi.block=0,rootfs earlyprintk=sunxi-uart,0x02500C00 clk_ignore_unused                                                                                                                    initcall_debug=0 console=ttyS3,115200 loglevel=8 root=/dev/ubiblock0_5 rootfstype=squashfs init=/pseudo_init partitio                                                                                                                   ns=mbr@ubi0_0:boot-resource@ubi0_1:env@ubi0_2:env-redund@ubi0_3:boot@ubi0_4:rootfs@ubi0_5:private@ubi0_6:rootfs_data@u                                                                                                                   bi0_7:UDISK@ubi0_8: cma=8M snum= mac_addr= wifi_mac= bt_mac= specialstr= gpt=1 androidboot.hardware=sun8iw20p1 boot_ty                                                                                                                   pe=5 androidboot.boot_type=5 gpt=1 uboot_message=2018.05-g24521d6-dirty(03/12/2024-19:33:32) aw-ubi-spinand.ubootblks=                                                                                                                   24 androidboot.dramsize=128
[    0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes, linear)
[    0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] Memory: 108612K/131072K available (6144K kernel code, 267K rwdata, 1520K rodata, 1024K init, 1163K bss,                                                                                                                    14268K reserved, 8192K 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]  Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[    0.000000] random: get_random_bytes called from start_kernel+0x264/0x3e8 with crng_init=0
[    0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 44079520259                                                                                                                   2 ns
[    0.000005] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[    0.008007] Switching to timer-based delay loop, resolution 41ns
[    0.014183] clocksource: timer: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns
[    0.023908] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000)
[    0.034282] pid_max: default: 32768 minimum: 301
[    0.039037] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.046361] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.054684] CPU: Testing write buffer coherency: ok
[    0.059891] /cpus/cpu@0 missing clock-frequency property
[    0.065199] /cpus/cpu@1 missing clock-frequency property
[    0.070545] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
[    0.076715] Setting up static identity map for 0x40100000 - 0x40100060
[    0.083381] rcu: Hierarchical SRCU implementation.
[    0.088581] smp: Bringing up secondary CPUs ...
[    0.094194] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
[    0.094313] smp: Brought up 1 node, 2 CPUs
[    0.104151] SMP: Total of 2 processors activated (96.00 BogoMIPS).
[    0.110346] CPU: All CPU(s) started in SVC mode.
[    0.115419] devtmpfs: initialized
[    0.130185] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5
[    0.138313] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.148186] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
[    0.155424] pinctrl core: initialized pinctrl subsystem
[    0.161593] NET: Registered protocol family 16
[    0.167484] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.204080] rtc_ccu: sunxi ccu init OK
[    0.210079] ccu: sunxi ccu init OK
[    0.213829] r_ccu: sunxi ccu init OK
[    0.237187] iommu: Default domain type: Translated
[    0.242259] sunxi iommu: irq = 24
[    0.246447] SCSI subsystem initialized
[    0.250411] usbcore: registered new interface driver usbfs
[    0.255964] usbcore: registered new interface driver hub
[    0.261361] usbcore: registered new device driver usb
[    0.267202] Advanced Linux Sound Architecture Driver Initialized.
[    0.274039] Bluetooth: Core ver 2.22
[    0.277673] NET: Registered protocol family 31
[    0.282119] Bluetooth: HCI device and connection manager initialized
[    0.288550] Bluetooth: HCI socket layer initialized
[    0.293433] Bluetooth: L2CAP socket layer initialized
[    0.298518] Bluetooth: SCO socket layer initialized
[    0.303644] pwm module init!
[    0.307733] g2d 5410000.g2d: Adding to iommu group 0
[    0.313014] G2D: rcq version initialized.major:252
[    0.318607] clocksource: Switched to clocksource arch_sys_counter
[    0.333270] sun8iw20-pinctrl pio: initialized sunXi PIO driver
[    0.341559] NET: Registered protocol family 2
[    0.346607] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear)
[    0.355025] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.362715] TCP bind hash table entries: 1024 (order: 1, 8192 bytes, linear)
[    0.369803] TCP: Hash tables configured (established 1024 bind 1024)
[    0.376247] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
[    0.382818] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
[    0.389985] NET: Registered protocol family 1
[    0.395286] sun8iw20-pinctrl pio: pio supply vcc-pc not found, using dummy regulator
[    0.403515] spi spi0: spi0 supply spi not found, using dummy regulator
[    0.410255] sunxi_spi_resource_get()2151 - [spi0] SPI MASTER MODE
[    0.416404] sunxi_spi_resource_get()2189 - Failed to get sample mode
[    0.422799] sunxi_spi_resource_get()2194 - Failed to get sample delay
[    0.429252] sunxi_spi_resource_get()2198 - sample_mode:-1431633921 sample_delay:-1431633921
[    0.437650] sunxi_spi_clk_init()2240 - [spi0] mclk 100000000
[    0.443898] sunxi_spi_probe()2653 - [spi0]: driver probe succeed, base c881f000, irq 44
[    0.453484] workingset: timestamp_bits=30 max_order=15 bucket_order=0
[    0.464203] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.470237] ntfs: driver 2.1.32 [Flags: R/W].
[    0.503096] io scheduler mq-deadline registered
[    0.507641] io scheduler kyber registered
[    0.512978] [DISP]disp_module_init
[    0.516825] disp 5000000.disp: Adding to iommu group 0
[    0.533633] disp 5000000.disp: 5000000.disp supply vcc-lcd not found, using dummy regulator
[    0.542247] disp 5000000.disp: 5000000.disp supply vcc-pd not found, using dummy regulator
[    0.555841] display_fb_request,fb_id:0
[    0.563162] [DISP] Fb_copy_boot_fb,line:1443:
[    0.563166] no boot_fb0
[    0.570455] disp_al_manager_apply ouput_type:0
[    0.575225] [DISP] lcd_clk_config,line:732:
[    0.575236] disp 0, clk: pll(306000000),clk(306000000),dclk(51000000) dsi_rate(306000000)
[    0.575236]      clk real:pll(300000000),clk(300000000),dclk(50000000) dsi_rate(0)
[    0.578926] [DISP]disp_module_init finish
[    0.580371] sun8iw20-pinctrl pio: pio supply vcc-pd not found, using dummy regulator
[    0.596175] sunxi_sid_init()551 - insmod ok
[    0.611851] lcm:__init start
[    0.615049] sun8iw20-pinctrl pio: pio supply vcc-pe not found, using dummy regulator
[    0.622958] lcm: uart probe
[    0.625914] lcm: pdev id = 2
[    0.628851] lcm: uart2
[    0.631319] uart uart2: get regulator failed
[    0.635608] uart uart2: uart2 supply uart not found, using dummy regulator
[    0.642740] lcm: have the linux,rs485-enabled-at-boot-time
[    0.648263] uart2: ttyS2 at MMIO 0x2500800 (irq = 34, base_baud = 1500000) is a SUNXI
[    0.656671] sun8iw20-pinctrl pio: pio supply vcc-pb not found, using dummy regulator
[    0.664608] lcm: uart probe
[    0.667552] lcm: pdev id = 3
[    0.670480] lcm: uart3
[    0.672955] uart uart3: get regulator failed
[    0.677236] uart uart3: uart3 supply uart not found, using dummy regulator
[    0.684356] uart3: ttyS3 at MMIO 0x2500c00 (irq = 35, base_baud = 1500000) is a SUNXI
[    0.692220] sw_console_setup()1808 - console setup baud 115200 parity n bits 8, flow n
▒[    0.700222] printk: console [ttyS3] enabled
[    0.700222] printk: console [ttyS3] enabled
[    0.709138] printk: bootconsole [earlycon0] disabled
[    0.709138] printk: bootconsole [earlycon0] disabled
[    0.720157] lcm: uart probe
[    0.723404] lcm: pdev id = 4
[    0.726610] lcm: uart4
[    0.729376] uart uart4: get regulator failed
[    0.734162] uart uart4: uart4 supply uart not found, using dummy regulator
[    0.742041] lcm: have the linux,rs485-enabled-at-boot-time
[    0.748208] uart4: ttyS4 at MMIO 0x2501000 (irq = 36, base_baud = 1500000) is a SUNXI
[    0.757510] sun8iw20-pinctrl pio: pio supply vcc-pg not found, using dummy regulator
[    0.766306] lcm: uart probe
[    0.769583] lcm: pdev id = 5
[    0.772790] lcm: uart5
[    0.775514] uart uart5: get regulator failed
[    0.780297] uart uart5: uart5 supply uart not found, using dummy regulator
[    0.788226] uart5: ttyS5 at MMIO 0x2501400 (irq = 37, base_baud = 1500000) is a SUNXI
[    0.797776] misc dump reg init
[    0.802226] sunxi-rfkill soc@3000000:rfkill@0: module version: v1.0.9
[    0.808802] [DISP] disp_device_attached_and_enable,line:233:
[    0.808807] attached ok, mgr0<-->dev0
[    0.809453] sunxi-rfkill soc@3000000:rfkill@0: get gpio chip_en failed
[    0.815710] [DISP] disp_device_attached_and_enable,line:236:
[    0.815717] type:1,mode:0,fmt:rgb,bits:8bits,eotf:4,cs:0 dvi_hdmi:2, range:2 scan:0 ratio:8
[    0.819822] sunxi-rfkill soc@3000000:rfkill@0: get gpio power_en failed
[    0.850090] sunxi-rfkill soc@3000000:rfkill@0: wlan_busnum (1)
[    0.856595] sunxi-rfkill soc@3000000:rfkill@0: Missing wlan_power.
[    0.863506] sunxi-rfkill soc@3000000:rfkill@0: wlan clock[0] (32k-fanout1)
[    0.871209] sunxi-rfkill soc@3000000:rfkill@0: wlan_regon gpio=204 assert=1
[    0.879019] sunxi-rfkill soc@3000000:rfkill@0: wlan_hostwake gpio=202 assert=1
[    0.887085] sunxi-rfkill soc@3000000:rfkill@0: wakeup source is enabled
[    0.894688] sunxi-rfkill soc@3000000:rfkill@0: Missing bt_power.
[    0.901417] sunxi-rfkill soc@3000000:rfkill@0: bt clock[0] (32k-fanout1)
[    0.908927] sunxi-rfkill soc@3000000:rfkill@0: bt_rst gpio=207 assert=0
[    0.917030] dma-buf: Running sanitycheck
[    0.921444] dma-buf: Running dma_fence
[    0.925616] sizeof(dma_fence)=48
[    0.929354] dma-buf: Running dma_fence/sanitycheck
[    0.934702] dma-buf: Running dma_fence/test_signaling
[    0.940360] dma-buf: Running dma_fence/test_add_callback
[    0.946278] dma-buf: Running dma_fence/test_late_add_callback
[    0.952728] dma-buf: Running dma_fence/test_rm_callback
[    0.958558] dma-buf: Running dma_fence/test_late_rm_callback
[    0.964877] dma-buf: Running dma_fence/test_status
[    0.970223] dma-buf: Running dma_fence/test_error
[    0.975470] dma-buf: Running dma_fence/test_wait
[    0.980625] dma-buf: Running dma_fence/test_wait_timeout
[    1.018621] dma-buf: Running dma_fence/test_stub
[    1.023790] dma-buf: Running dma_fence/race_signal_callback
[    1.098638] thread_signal_callback[0] completed 34749 passes, 342 misses
[    1.106135] thread_signal_callback[1] completed 34727 passes, 322 misses
[    1.178628] thread_signal_callback[0] completed 38010 passes, 38009 misses
[    1.186337] thread_signal_callback[1] completed 37995 passes, 37994 misses
[    1.194534] sunxi-spinand: AW SPINand MTD Layer Version: 2.0 20201228
[    1.201796] sunxi-spinand-phy: AW SPINand Phy Layer Version: 1.10 20200306
[    1.209761] sunxi-spinand-phy: not detect any munufacture from id table
[    1.217131] sunxi-spinand-phy: get spi-nand Model from fdt fail
[    1.223752] sunxi-spinand-phy: get phy info from fdt fail
[    1.229821] sunxi-spinand-phy: not detect munufacture from fdt
[    1.236496] sunxi-spinand-phy: detect munufacture from id table: Winbond
[    1.243985] sunxi-spinand-phy: detect spinand id: ff21aaef ffffffff
[    1.250978] sunxi-spinand-phy: ========== arch info ==========
[    1.257474] sunxi-spinand-phy: Model:               W25N01GVZEIG
[    1.264173] sunxi-spinand-phy: Munufacture:         Winbond
[    1.270385] sunxi-spinand-phy: DieCntPerChip:       1
[    1.276009] sunxi-spinand-phy: BlkCntPerDie:        1024
[    1.281930] sunxi-spinand-phy: PageCntPerBlk:       64
[    1.287647] sunxi-spinand-phy: SectCntPerPage:      4
[    1.293285] sunxi-spinand-phy: OobSizePerPage:      64
[    1.299015] sunxi-spinand-phy: BadBlockFlag:        0x0
[    1.304829] sunxi-spinand-phy: OperationOpt:        0x7
[    1.310655] sunxi-spinand-phy: MaxEraseTimes:       65000
[    1.316664] sunxi-spinand-phy: EccFlag:             0x0
[    1.322488] sunxi-spinand-phy: EccType:             2
[    1.328111] sunxi-spinand-phy: EccProtectedType:    3
[    1.333742] sunxi-spinand-phy: ========================================
[    1.341114] sunxi-spinand-phy:
[    1.344607] sunxi-spinand-phy: ========== physical info ==========
[    1.351497] sunxi-spinand-phy: TotalSize:    128 M
[    1.356827] sunxi-spinand-phy: SectorSize:   512 B
[    1.362169] sunxi-spinand-phy: PageSize:     2 K
[    1.367307] sunxi-spinand-phy: BlockSize:    128 K
[    1.372650] sunxi-spinand-phy: OOBSize:      64 B
[    1.377886] sunxi-spinand-phy: ========================================
[    1.385265] sunxi-spinand-phy:
[    1.388776] sunxi-spinand-phy: ========== logical info ==========
[    1.395562] sunxi-spinand-phy: TotalSize:    128 M
[    1.400902] sunxi-spinand-phy: SectorSize:   512 B
[    1.406233] sunxi-spinand-phy: PageSize:     4 K
[    1.411382] sunxi-spinand-phy: BlockSize:    256 K
[    1.416713] sunxi-spinand-phy: OOBSize:      128 B
[    1.422051] sunxi-spinand-phy: ========================================
[    1.429565] sunxi-spinand-phy: block lock register: 0x00
[    1.435658] sunxi-spinand-phy: feature register: 0x19
[    1.441300] sunxi-spinand-phy: sunxi physic nand init end
[    1.447763] Creating 4 MTD partitions on "sunxi_mtd_nand":
[    1.453903] 0x000000000000-0x000000100000 : "boot0"
[    1.469462] 0x000000100000-0x000000400000 : "uboot"
[    1.479199] random: fast init done
[    1.489497] 0x000000400000-0x000000500000 : "secure_storage"
[    1.509470] 0x000000500000-0x000008000000 : "sys"
[    1.719903] libphy: Fixed MDIO Bus: probed
[    1.725211] sun8iw20-pinctrl pio: pin PE2 already requested by 2500800.uart; cannot claim for 4500000.eth
[    1.735922] sun8iw20-pinctrl pio: pin-130 (4500000.eth) status -22
[    1.742820] sun8iw20-pinctrl pio: could not request pin 130 (PE2) from group PE2  on device pio
[    1.752526] sunxi-gmac 4500000.eth: Error applying setting, reverse things back
[    1.760728] sunxi-gmac: probe of 4500000.eth failed with error -22
[    1.767779] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.775069] sunxi-ehci: EHCI SUNXI driver
[    1.779858] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.786768] sunxi-ohci: OHCI SUNXI driver
[    1.791682] i2c /dev entries driver
[    1.795642] sunxi cedar version 1.1
[    1.799703] sunxi-cedar 1c0e000.ve: Adding to iommu group 0
[    1.805953] VE: sunxi_cedar_probe power-domain init!!!
[    1.811703] VE: install start!!!
[    1.811703]
[    1.817187] VE: cedar-ve the get irq is 45
[    1.817187]
[    1.823598] VE: ve_debug_proc_info:(ptrval), data:(ptrval), lock:(ptrval)
[    1.823598]
[    1.832826] VE: install end!!!
[    1.832826]
[    1.837869] VE: sunxi_cedar_probe
[    1.841795] Bluetooth: HCI UART driver ver 2.3
[    1.846744] Bluetooth: HCI UART protocol H4 registered
[    1.852487] Bluetooth: HCI UART protocol BCSP registered
[    1.858400] Bluetooth: XRadio Bluetooth LPM Mode Driver Ver 1.0.10
[    1.865531] [XR_BT_LPM] bluesleep_probe: bt_wake polarity: 1
[    1.871900] [XR_BT_LPM] bluesleep_probe: host_wake polarity: 1
[    1.878409] [XR_BT_LPM] bluesleep_probe: wakeup source is disabled!
[    1.878409]
[    1.887050] [XR_BT_LPM] bluesleep_probe: uart_index(1)
[    1.894814] sunxi-mmc 4020000.sdmmc: SD/MMC/SDIO Host Controller Driver(v4.21 2021-11-18 10:02)
[    1.904729] sunxi-mmc 4020000.sdmmc: ***ctl-spec-caps*** 8
[    1.910899] sunxi-mmc 4020000.sdmmc: No vmmc regulator found
[    1.917202] sunxi-mmc 4020000.sdmmc: No vqmmc regulator found
[    1.923618] sunxi-mmc 4020000.sdmmc: No vdmmc regulator found
[    1.930031] sunxi-mmc 4020000.sdmmc: No vd33sw regulator found
[    1.936525] sunxi-mmc 4020000.sdmmc: No vd18sw regulator found
[    1.943033] sunxi-mmc 4020000.sdmmc: No vq33sw regulator found
[    1.949539] sunxi-mmc 4020000.sdmmc: No vq18sw regulator found
[    1.956480] sunxi-mmc 4020000.sdmmc: Got CD GPIO
[    1.961892] sunxi-mmc 4020000.sdmmc: set cd-gpios as 24M fail
[    1.968460] sunxi-mmc 4020000.sdmmc: sdc set ios:clk 0Hz bm PP pm UP vdd 21 width 1 timing LEGACY(SDR12) dt B
[    1.979561] sunxi-mmc 4020000.sdmmc: no vqmmc,Check if there is regulator
[    1.999654] sunxi-mmc 4020000.sdmmc: sdc set ios:clk 400000Hz bm PP pm ON vdd 21 width 1 timing LEGACY(SDR12) dt B
[    2.024001] sunxi-mmc 4020000.sdmmc: detmode:gpio irq
[    2.029682] sunxi-mmc 4020000.sdmmc: sdc set ios:clk 0Hz bm PP pm OFF vdd 0 width 1 timing LEGACY(SDR12) dt B
[    2.041209] sun8iw20-pinctrl pio: pin PG4 already requested by 2501400.uart; cannot claim for 4021000.sdmmc
[    2.052111] sun8iw20-pinctrl pio: pin-196 (4021000.sdmmc) status -22
[    2.059210] sun8iw20-pinctrl pio: could not request pin 196 (PG4) from group PG4  on device pio
[    2.068918] sunxi-mmc 4021000.sdmmc: Error applying setting, reverse things back
[    2.077191] sunxi-mmc: probe of 4021000.sdmmc failed with error -22
[    2.084952] exFAT: Version 1.3.0
[    2.090596] sunxi-spdif 2036000.spdif: request pinctrl handle for audio failed
[    2.098717] sunxi-spdif 2036000.spdif: [sunxi_spdif_dev_probe] failed
[    2.105983] sunxi-spdif: probe of 2036000.spdif failed with error -22
[    2.114296] [AUDIOCODEC][sunxi_codec_parse_params][2412]:digital_vol:0, lineout_vol:26, mic1gain:31, mic2gain:31 pa                                                                                                                   _msleep:120, pa_level:1, pa_pwr_level:1
[    2.114296]
[    2.131391] [AUDIOCODEC][sunxi_codec_parse_params][2448]:adcdrc_cfg:0, adchpf_cfg:1, dacdrc_cfg:0, dachpf:0
[    2.142709] [AUDIOCODEC][sunxi_internal_codec_probe][2609]:codec probe finished
[    2.151763] debugfs: Directory '203034c.dummy_cpudai' with parent 'audiocodec' already present!
[    2.161530] [SNDCODEC][sunxi_card_init][583]:card init finished
[    2.168648] sunxi-codec-machine 2030340.sound: 2030000.codec <-> 203034c.dummy_cpudai mapping ok
[    2.179475] input: audiocodec sunxi Audio Jack as /devices/platform/soc@3000000/2030340.sound/sound/card0/input0
[    2.191360] [SNDCODEC][sunxi_card_dev_probe][836]:register card finished
[    2.199722] NET: Registered protocol family 10
[    2.205741] Segment Routing with IPv6
[    2.209879] [SNDCODEC][sunxi_hs_init_work][259]:resume-->report switch
[    2.217241] NET: Registered protocol family 17
[    2.222248] NET: Registered protocol family 15
[    2.227351] Bluetooth: RFCOMM TTY layer initialized
[    2.232818] Bluetooth: RFCOMM socket layer initialized
[    2.238566] Bluetooth: RFCOMM ver 1.11
[    2.243330] Registering SWP/SWPB emulation handler
[    2.263155] sun8iw20-pinctrl pio: pin PE2 already requested by 2500800.uart; cannot claim for 4500000.eth
[    2.273893] sun8iw20-pinctrl pio: pin-130 (4500000.eth) status -22
[    2.280805] sun8iw20-pinctrl pio: could not request pin 130 (PE2) from group PE2  on device pio
[    2.290520] sunxi-gmac 4500000.eth: Error applying setting, reverse things back
[    2.298730] sunxi-gmac: probe of 4500000.eth failed with error -22
[    2.306036] sun8iw20-pinctrl pio: pin PG4 already requested by 2501400.uart; cannot claim for 4021000.sdmmc
[    2.316916] sun8iw20-pinctrl pio: pin-196 (4021000.sdmmc) status -22
[    2.324014] sun8iw20-pinctrl pio: could not request pin 196 (PG4) from group PG4  on device pio
[    2.333719] sunxi-mmc 4021000.sdmmc: Error applying setting, reverse things back
[    2.341992] sunxi-mmc: probe of 4021000.sdmmc failed with error -22
[    2.349470] sunxi-i2c sunxi-i2c2: sunxi-i2c2 supply twi not found, using dummy regulator
[    2.359302] sunxi-i2c sunxi-i2c2: probe success
[    2.365573] sunxi-spdif 2036000.spdif: request pinctrl handle for audio failed
[    2.373663] sunxi-spdif 2036000.spdif: [sunxi_spdif_dev_probe] failed
[    2.380943] sunxi-spdif: probe of 2036000.spdif failed with error -22
[    2.389713] debugfs: Directory '2031000.dmic' with parent 'snddmic' already present!
[    2.398901] sunxi-audio-card 2031060.sounddmic: dmic-hifi <-> 2031000.dmic mapping ok
[    2.408812] get ehci0-controller wakeup-source is fail.
[    2.414732] sunxi ehci0-controller don't init wakeup source
[    2.420992] [sunxi-ehci0]: probe, pdev->name: 4101000.ehci0-controller, sunxi_ehci: 0xc0b5dfb0, 0x:c888b000, irq_no                                                                                                                   :3c
[    2.432918] [sunxi-ehci0]: Not init ehci0
[    2.437717] get ohci0-controller wakeup-source is fail.
[    2.443666] sunxi ohci0-controller don't init wakeup source
[    2.449890] [sunxi-ohci0]: probe, pdev->name: 4101400.ohci0-controller, sunxi_ohci: 0xc0b5e240
[    2.459495] [sunxi-ohci0]: Not init ohci0
[    2.464272] get ehci1-controller wakeup-source is fail.
[    2.470186] sunxi ehci1-controller don't init wakeup source
[    2.476399] [sunxi-ehci1]: probe, pdev->name: 4200000.ehci1-controller, sunxi_ehci: 0xc0b5e4d0, 0x:c8895000, irq_no                                                                                                                   :3e
[    2.488557] sunxi-ehci 4200000.ehci1-controller: 4200000.ehci1-controller supply hci not found, using dummy regulat                                                                                                                   or
[    2.501881] sunxi-ehci 4200000.ehci1-controller: EHCI Host Controller
[    2.509117] sunxi-ehci 4200000.ehci1-controller: new USB bus registered, assigned bus number 1
[    2.518989] sunxi-ehci 4200000.ehci1-controller: irq 62, io mem 0x04200000
[    2.548638] sunxi-ehci 4200000.ehci1-controller: USB 2.0 started, EHCI 1.00
[    2.557196] hub 1-0:1.0: USB hub found
[    2.561433] hub 1-0:1.0: 1 port detected
[    2.566544] get ohci1-controller wakeup-source is fail.
[    2.572508] sunxi ohci1-controller don't init wakeup source
[    2.578736] [sunxi-ohci1]: probe, pdev->name: 4200400.ohci1-controller, sunxi_ohci: 0xc0b5e760
[    2.588564] sunxi-ohci 4200400.ohci1-controller: 4200400.ohci1-controller supply hci not found, using dummy regulat                                                                                                                   or
[    2.600767] sunxi-ohci 4200400.ohci1-controller: OHCI Host Controller
[    2.607979] sunxi-ohci 4200400.ohci1-controller: new USB bus registered, assigned bus number 2
[    2.617830] sunxi-ohci 4200400.ohci1-controller: irq 63, io mem 0x04200400
[    2.693425] hub 2-0:1.0: USB hub found
[    2.697639] hub 2-0:1.0: 1 port detected
[    2.703346] ubi0: attaching mtd3
[    3.012959] random: crng init done
[    3.058625] ubi0: scanning is finished
[    3.074444] ubi0: attached mtd3 (name "sys", size 123 MiB)
[    3.080600] ubi0: PEB size: 262144 bytes (256 KiB), LEB size: 258048 bytes
[    3.088259] ubi0: min./max. I/O unit sizes: 4096/4096, sub-page size 2048
[    3.095835] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096
[    3.103635] ubi0: good PEBs: 492, bad PEBs: 0, corrupted PEBs: 0
[    3.110342] ubi0: user volume: 9, internal volumes: 1, max. volumes count: 128
[    3.118390] ubi0: max/mean erase counter: 2/1, WL threshold: 4096, image sequence number: 0
[    3.127702] ubi0: available PEBs: 0, total reserved PEBs: 492, PEBs reserved for bad PEB handling: 20
[    3.137999] ubi0: background thread "ubi_bgt0d" started, PID 71
[    3.145822] block ubiblock0_5: created from ubi0:5(rootfs)
[    3.152475] sun8iw20-pinctrl pio: pin PB6 already requested by 2500c00.uart; cannot claim for pio:38
[    3.162692] sun8iw20-pinctrl pio: pin-38 (pio:38) status -22
[    3.171496] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    3.181165] cfg80211: failed to load regulatory.db
[    3.181182] clk: Not disabling unused clocks
[    3.191327] ALSA device list:
[    3.194631]   #0: audiocodec
[    3.197835]   #1: snddmic
[    3.200769] alloc_fd: slot 0 not NULL!
[    3.208674] VFS: Mounted root (squashfs filesystem) readonly on device 254:0.
[    3.218555] devtmpfs: mounted
[    3.223787] Freeing unused kernel memory: 1024K
[    3.238755] Run /pseudo_init as init process
mount: mounting none on /dev failed: Resource busy
[    3.477065] UBIFS (ubi0:7): default file-system created
[    3.483727] UBIFS (ubi0:7): Mounting in unauthenticated mode
[    3.490194] UBIFS (ubi0:7): background thread "ubifs_bgt0_7" started, PID 101
[    3.613795] UBIFS (ubi0:7): UBIFS: mounted UBI device 0, volume 7, name "rootfs_data"
[    3.622605] UBIFS (ubi0:7): LEB size: 258048 bytes (252 KiB), min./max. I/O unit sizes: 4096 bytes/4096 bytes
[    3.633669] UBIFS (ubi0:7): FS size: 3096576 bytes (2 MiB, 12 LEBs), journal size 1806337 bytes (1 MiB, 5 LEBs)
[    3.644929] UBIFS (ubi0:7): reserved for root: 146258 bytes (142 KiB)
[    3.652124] UBIFS (ubi0:7): media format: w5/r0 (latest is w5/r0), UUID 8D11C210-88A6-4DFA-88A9-752DF0718D0D, small                                                                                                                    LPT model
can't run '/etc/preinit': No such file or directory
mount: mounting proc on /proc failed: Resource busy
mount: mounting tmpfs on /run failed: No such file or directory
hostname: can't open '/etc/hostname': No such file or directory
------run rc.preboot file-----
[    3.798004] UBIFS (ubi0:8): default file-system created
[    3.804592] UBIFS (ubi0:8): Mounting in unauthenticated mode
[    3.811084] UBIFS (ubi0:8): background thread "ubifs_bgt0_8" started, PID 130
[    3.933458] UBIFS (ubi0:8): UBIFS: mounted UBI device 0, volume 8, name "UDISK"
[    3.941655] UBIFS (ubi0:8): LEB size: 258048 bytes (252 KiB), min./max. I/O unit sizes: 4096 bytes/4096 bytes
[    3.952740] UBIFS (ubi0:8): FS size: 47480832 bytes (45 MiB, 184 LEBs), journal size 2322432 bytes (2 MiB, 9 LEBs)
[    3.964291] UBIFS (ubi0:8): reserved for root: 2242636 bytes (2190 KiB)
[    3.971677] UBIFS (ubi0:8): media format: w5/r0 (latest is w5/r0), UUID DBD07D8B-3FAB-4B48-8C04-30CC419EEC01, small                                                                                                                    LPT model
------run rc.modules file-----
[    4.059097] usbcore: registered new interface driver usb-storage
[    4.069961] sunxi_gpadc_init,2151, success
[    4.074842] sunxi_gpadc_setup: get channel scan data failed
[    4.081382] input: sunxi-gpadc0 as /devices/virtual/input/input1
[    4.093429] get ctp_power is fail, -22
[    4.097612] get ctp_power_ldo_vol is fail, -22
[    4.103682] sunxi_ctp_startup: ctp_power_io is invalid.
[    4.109566] get ctp_gesture_wakeup fail, no gesture wakeup
[    4.115696] gt9xxnew_ts 2-0014: 2-0014 supply ctp not found, using dummy regulator
[    4.288748] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    4.296821] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    4.304515] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    4.312586] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    4.320275] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    4.328338] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    4.336025] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    4.344093] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    4.351782] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    4.359839] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    4.367402] <<-GTP-ERROR->> I2C Read: 0x8047, 1 bytes failed, errcode: -22! Process reset.
[    4.528616] <<-GTP-ERROR->> GTP i2c test failed time 1.
[    4.558726] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    4.566788] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    4.574473] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    4.582541] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    4.590229] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    4.598294] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    4.605982] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    4.614050] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    4.621740] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    4.629807] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    4.637371] <<-GTP-ERROR->> I2C Read: 0x8047, 1 bytes failed, errcode: -22! Process reset.
[    4.798616] <<-GTP-ERROR->> GTP i2c test failed time 2.
[    4.828725] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    4.836788] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    4.844477] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    4.852542] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    4.860229] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    4.868291] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    4.875980] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    4.884048] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    4.891738] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    4.899805] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    4.907369] <<-GTP-ERROR->> I2C Read: 0x8047, 1 bytes failed, errcode: -22! Process reset.
[    5.068617] <<-GTP-ERROR->> GTP i2c test failed time 3.
[    5.098744] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    5.106806] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    5.114495] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    5.122560] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    5.130246] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    5.138308] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    5.145994] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    5.154059] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    5.161746] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    5.169813] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    5.177376] <<-GTP-ERROR->> I2C Read: 0x8047, 1 bytes failed, errcode: -22! Process reset.
[    5.338616] <<-GTP-ERROR->> GTP i2c test failed time 4.
[    5.368726] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    5.376791] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    5.384478] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    5.392544] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    5.400233] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    5.408299] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    5.415984] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    5.424051] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    5.431739] sunxi-i2c sunxi-i2c2: SLA+W has been transmitted; ACK not received
[    5.439807] sunxi-i2c sunxi-i2c2: engine-mode: xfer failed(dev addr:0x14)
[    5.447370] <<-GTP-ERROR->> I2C Read: 0x8047, 1 bytes failed, errcode: -22! Process reset.
[    5.608616] <<-GTP-ERROR->> GTP i2c test failed time 5.
[    5.638612] I2C communication ERROR!
[    5.638637] regulator-dummy: Underflow of regulator enable count
[    5.649482] gt9xxnew_ts: probe of 2-0014 failed with error -1
[    5.731426] Error: Driver 'gt9xxnew_ts' is already registered, aborting...
insmod: can't insert '/lib/modules/5.4.61/gt9xxnew_ts.ko': Operation not permitted
[    5.904385] ======== XRADIO WIFI OPEN ========
[    5.909888] [XRADIO] Driver Label:XR_V02.16.85_P2P_HT40_01.31
[    5.916622] [XRADIO] Allocated hw_priv @ a572fcc6
[    5.921890] [ADDR_MGT] get_addr_by_name: t->addr:
[    5.927783] sunxi-rfkill soc@3000000:rfkill@0: bus_index: 1
[    5.944065] sunxi-rfkill soc@3000000:rfkill@0: wlan power on success
[    6.151171] sunxi_hosts[1] should not be null
[    6.151176] [XRADIO] Detect SDIO card 1
[    8.218691] sunxi-rfkill soc@3000000:rfkill@0: wlan power off success
[    8.325876] sunxi_hosts[1] should not be null
[    8.325880] [XRADIO] Remove SDIO card 1
[    8.345009] [SBUS_ERR] sdio probe timeout!
[    8.349583] [XRADIO_ERR] sbus_sdio_init failed
[    8.354784] xradio_core_init failed (-110)!
[    8.497164] ======== XRADIO WIFI OPEN ========
[    8.502727] [XRADIO] Driver Label:XR_V02.16.85_P2P_HT40_01.31
[    8.509495] [XRADIO] Allocated hw_priv @ 9fa7ba29
[    8.514736] [ADDR_MGT] get_addr_by_name: t->addr:
[    8.520658] sunxi-rfkill soc@3000000:rfkill@0: bus_index: 1
[    8.536900] sunxi-rfkill soc@3000000:rfkill@0: wlan power on success
[    8.744021] sunxi_hosts[1] should not be null
[    8.744026] [XRADIO] Detect SDIO card 1
[   10.778683] sunxi-rfkill soc@3000000:rfkill@0: wlan power off success
[   10.885866] sunxi_hosts[1] should not be null
[   10.885870] [XRADIO] Remove SDIO card 1
[   10.905004] [SBUS_ERR] sdio probe timeout!
[   10.909577] [XRADIO_ERR] sbus_sdio_init failed
[   10.914793] xradio_core_init failed (-110)!
insmod: can't insert '/lib/modules/5.4.61/xr829.ko': Operation timed out
Successfully initialized wpa_supplicant
Could not read interface wlan0 flags: No such device
nl80211: Driver does not support authentication/association or connect commands
nl80211: deinit ifname=wlan0 disabled_11b_rates=0
Could not read interface wlan0 flags: No such device
wlan0: Failed to initialize driver interface
------run rc.final file-----
numid=30,iface=MIXER,name='Headphone Switch'
  ; type=BOOLEAN,access=rw------,values=1
  : values=on


BusyBox v1.27.2 () built-in shell (ash)

------run profile file-----
 _____  _              __     _
|_   _||_| ___  _ _   |  |   |_| ___  _ _  _ _
  | |   _ |   ||   |  |  |__ | ||   || | ||_'_|
  | |  | || | || _ |  |_____||_||_|_||___||_,_|
  |_|  |_||_|_||_|_|  Tina is Based on OpenWrt!
 ----------------------------------------------
 Tina Linux (Neptune, 61CC0487)
 ----------------------------------------------
Mon Feb  6 00:00:00 GMT 2023
nodev   debugfs
root@TinaLinux:/# [   11.425821] file system registered
[   11.443206] configfs-gadget 4100000.udc-controller: failed to start g1: -19
sh: write error: No such device
[   12.538895] sunxi_usb_udc 4100000.udc-controller: 4100000.udc-controller supply udc not found, using dummy regulato                                                                                                                   r
[   12.554635] read descriptors
[   12.557861] read strings
[   12.801718] android_work: sent uevent USB_STATE=CONNECTED
[   13.058640] android_work: sent uevent USB_STATE=DISCONNECTED
[   13.073446] android_work: sent uevent USB_STATE=CONNECTED
[   13.079892] configfs-gadget gadget: high-speed config #1: c
[   13.086166] android_work: sent uevent USB_STATE=CONFIGURED

离线

#15 2024-03-15 09:22:23

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,245
积分: 9197

Re: adb提示No space left on device

@子非鱼
这个是正常,还是不正常的?





离线

楼主 #16 2024-03-15 09:29:51

子非鱼
会员
注册时间: 2024-03-13
已发帖子: 18
积分: 18

Re: adb提示No space left on device

晕哥 说:

@子非鱼
这个是正常,还是不正常的?

这个是启动正常,但是使用adb push向板子传文件的时候提示remote No space left on device

离线

楼主 #17 2024-03-15 09:37:28

子非鱼
会员
注册时间: 2024-03-13
已发帖子: 18
积分: 18

Re: adb提示No space left on device

晕哥 说:

@子非鱼
这个是正常,还是不正常的?

我想增大系统文件的空间,想着这样是不是在上传文件的时候就不会提示remote No space left on device,然后从网上看的别人说把系统文件改为ext4格式的,所以当我在menuconfig里使能了ext4,又出现我前面几楼贴出的问题

[    3.286362] No filesystem could mount root, tried:
[    3.286364]  squashfs
[    3.296004] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(254,0)
[    3.206709] VFS: Cannot open root device "ubiblock0_5" or unknown-block(254,0): error -19
[    3.215884] Please append a correct "root=" boot option; here are the available partitions:
[    3.225262] 1f00            1024 mtdblock0
[    3.225265]  (driver?)
[    3.232586] 1f01            3072 mtdblock1
[    3.232589]  (driver?)
[    3.239905] 1f02            1024 mtdblock2
[    3.239907]  (driver?)
[    3.247206] 1f03          125952 mtdblock3
[    3.247209]  (driver?)
[    3.254520] fe00           82152 ubiblock0_5
[    3.254522]  (driver?)
[    3.262020] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(254,0)

离线

#18 2024-03-15 09:37:52

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,245
积分: 9197

Re: adb提示No space left on device

子非鱼 说:
晕哥 说:

@子非鱼
这个是正常,还是不正常的?

这个是启动正常,但是使用adb push向板子传文件的时候提示remote No space left on device

/dev/by-name/rootfs_data
                          1.4M     24.0K      1.2M   2% /overlay
overlayfs:/overlay        1.4M     24.0K      1.2M   2% /

可能是可写分区大小不够

试一试这两个命令:

mkdir -p /opt/
touch /opt/test.txt





离线

楼主 #19 2024-03-15 09:49:57

子非鱼
会员
注册时间: 2024-03-13
已发帖子: 18
积分: 18

Re: adb提示No space left on device

@晕哥
都可以使用

root@TinaLinux:/# mkdir -p /opt/
root@TinaLinux:/# touch /opt/test.txt
-/bin/sh: touch: not found
root@TinaLinux:/# vi /opt/test.txt
root@TinaLinux:/#

我使用adb push的时候,传输的第一文件成功了,第二个文件才提示remote No space left on device
我感觉是不是还有一定的空间,但是并不大,所以正常创建文件应该是可以的。但是上传的文件的时候空间就不够了

离线

#20 2024-03-15 10:09:09

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,245
积分: 9197

Re: adb提示No space left on device

@子非鱼
就是 rootfs_data 空间不够,

修改 板级目录下面的 sys_partition.fex 对应rootfs_data的空间大小





离线

楼主 #21 2024-03-15 13:35:15

子非鱼
会员
注册时间: 2024-03-13
已发帖子: 18
积分: 18

Re: adb提示No space left on device

晕哥 说:

@子非鱼
就是 rootfs_data 空间不够,

修改 板级目录下面的 sys_partition.fex 对应rootfs_data的空间大小

好像还是不行,我把device/config/chips/t113/configs/100ask/sys_partition.fex中的rootfs_data从10240改到了40960,但是使用adb push的时候还是提示remote No space left on device

[partition]
    name         = rootfs_data
    size         = 40960
    user_type    = 0x8000
C:\Users\76455>adb push E:\Projects\Cpro\wruart /
adb: error: failed to copy 'E:\Projects\Cpro\wruart' to '/wruart': remote No space left on device
E:\Projects\Cpro\wruart: 0 files pushed. 0.5 MB/s (8600 bytes in 0.018s)

离线

#22 2024-03-15 13:39:45

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,245
积分: 9197

Re: adb提示No space left on device

@子非鱼
为什么用adb去测试呢,直接进串口终端测试文件系统不好么?





离线

楼主 #23 2024-03-15 13:48:33

子非鱼
会员
注册时间: 2024-03-13
已发帖子: 18
积分: 18

Re: adb提示No space left on device

晕哥 说:

@子非鱼
为什么用adb去测试呢,直接进串口终端测试文件系统不好么?

我最终的目的就是想要把自己的写的应用程序放到板子板子上去运行,现在是上传不上去

离线

#24 2024-03-15 15:25:57

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,245
积分: 9197

Re: adb提示No space left on device

子非鱼 说:
晕哥 说:

@子非鱼
为什么用adb去测试呢,直接进串口终端测试文件系统不好么?

我最终的目的就是想要把自己的写的应用程序放到板子板子上去运行,现在是上传不上去

得先解决根本问题,前面已经明确了就是文件系统大小问题。





离线

#25 2024-03-15 16:04:15

ktouch
会员
注册时间: 2023-11-27
已发帖子: 18
积分: 13

Re: adb提示No space left on device

dev/root分区已经使用了100%,可以把UDISK分区减小,或者root根文件删除一些不需要的文件

离线

楼主 #26 2024-03-16 13:57:11

子非鱼
会员
注册时间: 2024-03-13
已发帖子: 18
积分: 18

Re: adb提示No space left on device

@晕哥
这是改了sys_partition.fex启动后系统空间的信息,可以创建修改文件,但是空间并没有变大

[partition]
    name         = rootfs_data
    size         = 40960
    user_type    = 0x8000
root@TinaLinux:/# df -h
Filesystem                Size      Used Available Use% Mounted on
/dev/root                31.5M     31.5M         0 100% /rom
devtmpfs                 53.0M         0     53.0M   0% /dev
tmpfs                    57.5M         0     57.5M   0% /tmp
/dev/by-name/rootfs_data
                         15.3M      1.5M     12.9M  10% /overlay
overlayfs:/overlay       15.3M      1.5M     12.9M  10% /
tmpfs                    57.5M         0     57.5M   0% /run
/dev/ubi0_8              27.1M     24.0K     25.6M   0% /mnt/UDISK

离线

楼主 #27 2024-03-16 13:58:21

子非鱼
会员
注册时间: 2024-03-13
已发帖子: 18
积分: 18

Re: adb提示No space left on device

ktouch 说:

dev/root分区已经使用了100%,可以把UDISK分区减小,或者root根文件删除一些不需要的文件

我尝试了删除了一些文件,确实可以成功上传了,但是感觉这样有点治标不治本啊

离线

#28 2024-03-16 16:19:36

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,245
积分: 9197

Re: adb提示No space left on device

rootfs_data 再扩大





离线

#29 2024-03-19 09:55:28

ktouch
会员
注册时间: 2023-11-27
已发帖子: 18
积分: 13

Re: adb提示No space left on device

子非鱼 说:
ktouch 说:

dev/root分区已经使用了100%,可以把UDISK分区减小,或者root根文件删除一些不需要的文件

我尝试了删除了一些文件,确实可以成功上传了,但是感觉这样有点治标不治本啊

可以修改一下分区配置文件,把udisk减小,把sys增加就可以了。

离线

#30 2024-03-21 21:19:13

Jhogy
会员
注册时间: 2024-03-21
已发帖子: 1
积分: 1

Re: adb提示No space left on device

LZ解决了吗,我也是遇到要把so文件传到/lib的问题,不过我df出来的root还有空间

离线

页脚

工信部备案:粤ICP备20025096号 Powered by FluxBB

感谢为中文互联网持续输出优质内容的各位老铁们。 QQ: 516333132, 微信(wechat): whycan_cn (哇酷网/挖坑网/填坑网) service@whycan.cn