AlexLir 0 21 августа Опубликовано 21 августа · Жалоба А у меня как раз используется Wi-Fi на rtl8189, и получается на этом ядре не заработает? А как тогда быть. Я сейчас в течении часа попробую собрать и запустить майнстримное ядро 6.10.6, о результатах сообщу. Цитата Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты Поделиться
nanorobot 6 21 августа Опубликовано 21 августа · Жалоба 29 minutes ago, sasamy said: не вводите в заблуждение - такого драйвера в майнстримном ядре нет https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/drivers/net/wireless/realtek?h=v6.10.6 Прошу прощения, не силен в терминах. Не уверен, что использовал именно "майнстримное" ядро, просто выставил в конфигурации (6.10.6) Kernel version Цитата Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты Поделиться
sasamy 1 21 августа Опубликовано 21 августа · Жалоба On 8/21/2024 at 4:43 PM, nanorobot said: Не уверен, что использовал именно "майнстримное" ядро, просто выставил в конфигурации (6.10.6) Kernel version в конфигурации чего ? в buildroot внешний модуль собирается для этого wifi - исходники драйвера на github Цитата Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты Поделиться
nanorobot 6 21 августа Опубликовано 21 августа · Жалоба Just now, sasamy said: в конфигурации чего ? в buildroot внешний модуль собирается для этого wifi - исходники драйвера на github да, в конфигурации buildroot .. Цитата Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты Поделиться
nanorobot 6 21 августа Опубликовано 21 августа · Жалоба 2 hours ago, AlexLir said: А у меня как раз используется Wi-Fi на rtl8189, и получается на этом ядре не заработает? А как тогда быть. Я сейчас в течении часа попробую собрать и запустить майнстримное ядро 6.10.6, о результатах сообщу. информация из этого патча решает проблему: https://github.com/NickAlilovic/build/blob/03be507c133f5ece6441778d6905e9653b3ffd8b/patch/misc/wireless-rtl8189es-fix-compilation-with-6.7-kernel.patch еще вызов функции cfg80211_ch_switch_notify(..) нужно привести в соответствие с хидером /linux-6.10.6/include/net/cfg80211.h после чего все собирается успешно .. Цитата Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты Поделиться
nanorobot 6 22 августа Опубликовано 22 августа · Жалоба собрал с ядром 6.10.6 , фрагмент из выхлопа dmesg: platform 2009400.temperature-sensor: deferred probe pending: platform: wait for supplier /soc/efuse@3006000/ths-calib@14 причину найти не получилось пока.. Цитата Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты Поделиться
AlexLir 0 22 августа Опубликовано 22 августа (изменено) · Жалоба Я собрал вчера ядро 6.10.6, собралось без ошибок. Сейчас пока не могу прошить, так как раньше я шил zImage, тут в сборке собирается bzImage. awboot при записи bzImage ругается на неправильный хедер, пытаюсь заставить awboot правильно распарсить хедер. Изменено 22 августа пользователем AlexLir Цитата Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты Поделиться
AlexLir 0 22 августа Опубликовано 22 августа · Жалоба Оказывается ядро я не под arm собрал. Сейчас ввожу команду: make ARCH=arm zImage, получаю ошибки компиляции. Спойлер gcc: error: unrecognized argument in option ‘-mabi=aapcs-linux’ gcc: note: valid arguments to ‘-mabi=’ are: ms sysv gcc: error: unrecognized command-line option ‘-mlittle-endian’ gcc: error: unrecognized command-line option ‘-mtp=cp15’ gcc: error: unrecognized command-line option ‘-mfpu=vfp’ Подскажите как это исправить Цитата Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты Поделиться
sasamy 1 22 августа Опубликовано 22 августа · Жалоба On 8/22/2024 at 8:09 PM, AlexLir said: ввожу команду: make ARCH=arm zImage если собираете ядро вручную - экспортируйте переменные окружения чтобы не набирать в каждой make, нужно указать архитектуру процессора Quote export ARCH=arm и кросскопилятор, напримрер штатный кросскопилятор arm на ubuntu Quote export CROSS_COMPILE=arm-linux-gnueabihf- И собирайте в несколько потоков, например для 4 ядерного процессора Quote make -j5 А еще проще - скачайте buildroot и соберите дефолтный конфиг для mango pi t113, там ядро по умолчанию не намного старее и тоже должно работать Quote wget https://buildroot.org/downloads/buildroot-2024.05.2.tar.gz tar xf buildroot-2024.05.2.tar.gz cd buildroot-2024.05.2 make mangopi_mq1rdw2_defconfig make menuconfig добавить свои хотелки в меню make он вам и драйвер для wifi соберет. Можно даже не править вручную конфиг ядра а перед сборкой, через menuconfig указать путь к файлу с дополнительнми опциями конфига ядра make menuconfig -> kernel -> () Additional configuration fragment files т.е. создать тексовый файл с дополнительными опциями ядра и указать его тут Цитата Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты Поделиться
AlexLir 0 29 августа Опубликовано 29 августа · Жалоба Все таки решил разбираться со своим ядром 6.0.1. Выяснил что нет зарегистрированной файловой системы "ubifs", так как не вызывается функция "ubifs_init". Функция добавляется в системные вызовы я так понял: "late_initcall(ubifs_init)", но не вызывается. Может кто что подсказать. Цитата Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты Поделиться
AlexLir 0 6 сентября Опубликовано 6 сентября (изменено) · Жалоба И снова здравствуйте! Разбирался с ядром 6.0.1, так и не заработало. Решил возьму майнстримное ядро(6.10.8), как рекомендовал "sasamy", взял дефолтный конфиг от мангопи, добавил в конфиг все необходимое и в DT, собрал ядро и получаю туже самую ошибку: UBI error: cannot open mtd 3, error -19.... Получается дело не в ядре. Теперь я в тупике....не знаю что делать. Изменено 6 сентября пользователем AlexLir Цитата Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты Поделиться
sasamy 1 6 сентября Опубликовано 6 сентября (изменено) · Жалоба On 9/6/2024 at 1:46 PM, AlexLir said: Получается дело не в ядре. Теперь я в тупике....не знаю что делать. Сконфигурировал buildroot - попробуйте собрать его https://dropmefiles.com/kgD3s надо только указать конфиг и собрать Quote make mangopi_mq1rdw2_spi_nand_defconfig make Quote AWBoot starting SPI-NAND: W25N01GV detected SPI-NAND: dt blob: Copy from 0x00020000 to 0x44000000 size:0x00004801 SPI-NAND: Image: Copy from 0x00040000 to 0x44800000 size:0x005a5ee8 booting linux... [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 6.6.5 (sasa@sasa-HP-255-G8-Notebook-PC) (arm-none-linux-gnueabihf-gcc (Arm GNU Toolchain 13.2.rel1 (Build arm-13.7)) 13.2.1 20231009, GNU ld (Arm GNU Toolchain 13.2.rel1 (Build arm-13.7)) 2.41.0.20231009) #1 SMP Fri Sep 6 21:08:58 MSK 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: MangoPi MQ-R-T113 [ 0.000000] Memory policy: Data cache writealloc [ 0.000000] cma: Reserved 48 MiB at 0x45000000 on node -1 [ 0.000000] Zone ranges: [ 0.000000] Normal [mem 0x0000000040000000-0x0000000047ffffff] [ 0.000000] HighMem empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000040000000-0x0000000047ffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x0000000047ffffff] [ 0.000000] percpu: Embedded 12 pages/cpu s17108 r8192 d23852 u49152 [ 0.000000] Kernel command line: mem=128M cma=48M console=ttyS3,115200 earlyprintk=sunxi-uart,0x2500c00 ubi.mtd=3 root=ubi0_0 rootfstype=ubifs rootwait [ 0.000000] Unknown kernel command line parameters "earlyprintk=sunxi-uart,0x2500c00", will be passed to user space. [ 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] Built 1 zonelists, mobility grouping on. Total pages: 32512 [ 0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off [ 0.000000] Memory: 65952K/131072K available (9216K kernel code, 960K rwdata, 2416K rodata, 1024K init, 265K bss, 15968K reserved, 49152K cma-reserved, 0K highmem) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 [ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.000000] clocksource: timer: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (virt). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns [ 0.000001] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns [ 0.000013] Switching to timer-based delay loop, resolution 41ns [ 0.000233] Console: colour dummy device 80x30 [ 0.000278] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000) [ 0.000293] CPU: Testing write buffer coherency: ok [ 0.000338] pid_max: default: 32768 minimum: 301 [ 0.000472] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.000488] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.001236] /cpus/cpu@0 missing clock-frequency property [ 0.001269] /cpus/cpu@1 missing clock-frequency property [ 0.001280] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000 [ 0.002321] Setting up static identity map for 0x40100000 - 0x40100060 [ 0.002511] rcu: Hierarchical SRCU implementation. [ 0.002517] rcu: Max phase no-delay instances is 1000. [ 0.003068] smp: Bringing up secondary CPUs ... [ 0.003639] smp: Brought up 1 node, 1 CPU [ 0.003652] SMP: Total of 1 processors activated (48.00 BogoMIPS). [ 0.003659] CPU: All CPU(s) started in SVC mode. [ 0.004168] devtmpfs: initialized [ 0.007715] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5 [ 0.007924] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.007948] futex hash table entries: 512 (order: 3, 32768 bytes, linear) [ 0.009439] pinctrl core: initialized pinctrl subsystem [ 0.011181] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.012057] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.012944] thermal_sys: Registered thermal governor 'step_wise' [ 0.013100] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers. [ 0.013111] hw-breakpoint: maximum watchpoint size is 8 bytes. [ 0.016367] platform 2001000.clock-controller: Fixed dependency cycle(s) with /soc/rtc@7090000 [ 0.019300] platform 5460000.tcon-top: Fixed dependency cycle(s) with /soc/mixer@5200000/ports/port@1/endpoint [ 0.019334] platform 5460000.tcon-top: Fixed dependency cycle(s) with /soc/mixer@5100000/ports/port@1/endpoint [ 0.019537] platform 5461000.lcd-controller: Fixed dependency cycle(s) with /soc/tcon-top@5460000/ports/port@3/endpoint@0 [ 0.019573] platform 5461000.lcd-controller: Fixed dependency cycle(s) with /soc/tcon-top@5460000/ports/port@1/endpoint@0 [ 0.019784] platform 5470000.lcd-controller: Fixed dependency cycle(s) with /soc/tcon-top@5460000/ports/port@4/endpoint [ 0.019827] platform 5470000.lcd-controller: Fixed dependency cycle(s) with /soc/tcon-top@5460000/ports/port@3/endpoint@2 [ 0.019868] platform 5470000.lcd-controller: Fixed dependency cycle(s) with /soc/tcon-top@5460000/ports/port@1/endpoint@2 [ 0.019907] platform 5470000.lcd-controller: Fixed dependency cycle(s) with /soc/tcon-top@5460000 [ 0.020425] platform 7010000.clock-controller: Fixed dependency cycle(s) with /soc/rtc@7090000 [ 0.024050] SCSI subsystem initialized [ 0.025664] usbcore: registered new interface driver usbfs [ 0.025704] usbcore: registered new interface driver hub [ 0.025749] usbcore: registered new device driver usb [ 0.025944] mc: Linux media interface: v0.10 [ 0.026019] videodev: Linux video capture interface: v2.00 [ 0.026097] pps_core: LinuxPPS API ver. 1 registered [ 0.026103] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]> [ 0.026118] PTP clock support registered [ 0.026582] Advanced Linux Sound Architecture Driver Initialized. [ 0.027602] clocksource: Switched to clocksource arch_sys_counter [ 0.035856] NET: Registered PF_INET protocol family [ 0.036055] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.036611] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear) [ 0.036636] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.036651] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.036669] TCP bind hash table entries: 1024 (order: 2, 16384 bytes, linear) [ 0.036704] TCP: Hash tables configured (established 1024 bind 1024) [ 0.036795] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.036829] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.036991] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.037712] RPC: Registered named UNIX socket transport module. [ 0.037726] RPC: Registered udp transport module. [ 0.037730] RPC: Registered tcp transport module. [ 0.037733] RPC: Registered tcp-with-tls transport module. [ 0.037736] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.039863] hw perfevents: enabled with armv7_cortex_a7 PMU driver, 5 counters available [ 0.040740] Initialise system trusted keyrings [ 0.041016] workingset: timestamp_bits=30 max_order=15 bucket_order=0 [ 0.041680] NFS: Registering the id_resolver key type [ 0.041722] Key type id_resolver registered [ 0.041728] Key type id_legacy registered [ 0.041766] Key type asymmetric registered [ 0.041772] Asymmetric key parser 'x509' registered [ 0.041843] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246) [ 0.041851] io scheduler mq-deadline registered [ 0.041857] io scheduler kyber registered [ 0.041876] io scheduler bfq registered [ 0.103244] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled [ 0.113498] CAN device driver interface [ 0.116516] sun6i-rtc 7090000.rtc: registered as rtc0 [ 0.116641] sun6i-rtc 7090000.rtc: setting system clock to 1970-01-02T00:00:02 UTC (86402) [ 0.117064] i2c_dev: i2c /dev entries driver [ 0.119179] sun8i-ce 3040000.crypto: Set mod clock to 300000000 (300 Mhz) from 400000000 (400 Mhz) [ 0.119714] sun8i-ce 3040000.crypto: will run requests pump with realtime priority [ 0.120054] sun8i-ce 3040000.crypto: will run requests pump with realtime priority [ 0.120262] sun8i-ce 3040000.crypto: will run requests pump with realtime priority [ 0.120447] sun8i-ce 3040000.crypto: will run requests pump with realtime priority [ 0.120581] sun8i-ce 3040000.crypto: Register cbc(aes) [ 0.120602] sun8i-ce 3040000.crypto: Register ecb(aes) [ 0.120611] sun8i-ce 3040000.crypto: Register cbc(des3_ede) [ 0.120619] sun8i-ce 3040000.crypto: Register ecb(des3_ede) [ 0.120648] sun8i-ce 3040000.crypto: CryptoEngine Die ID 0 [ 0.121562] usbcore: registered new interface driver usbhid [ 0.121572] usbhid: USB HID core driver [ 0.123919] NET: Registered PF_PACKET protocol family [ 0.123933] can: controller area network core [ 0.123984] NET: Registered PF_CAN protocol family [ 0.123992] can: raw protocol [ 0.123999] can: broadcast manager protocol [ 0.124007] can: netlink gateway - max_hops=1 [ 0.124163] Key type dns_resolver registered [ 0.124338] Registering SWP/SWPB emulation handler [ 0.130398] Loading compiled-in X.509 certificates [ 0.147838] gpio gpiochip0: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 0.154446] sun20i-d1-pinctrl 2000000.pinctrl: initialized sunXi PIO driver [ 0.155849] printk: console [ttyS3] disabled [ 0.176604] 2500c00.serial: ttyS3 at MMIO 0x2500c00 (irq = 233, base_baud = 1500000) is a 16550A [ 0.176663] printk: console [ttyS3] enabled [ 1.081073] sun20i-d1-pinctrl 2000000.pinctrl: supply vcc-pc not found, using dummy regulator [ 1.091151] spi-nand spi0.0: Winbond SPI NAND was found. [ 1.096480] spi-nand spi0.0: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 64 [ 1.105005] 4 fixed-partitions partitions found on MTD device spi0.0 [ 1.111399] Creating 4 MTD partitions on "spi0.0": [ 1.116203] 0x000000000000-0x000000020000 : "awboot" [ 1.121941] 0x000000020000-0x000000040000 : "dtb" [ 1.127270] 0x000000040000-0x000000840000 : "kernel" [ 1.142268] 0x000000840000-0x000008000000 : "filesystem" [ 1.289732] usb_phy_generic usb_phy_generic.1.auto: dummy supplies not allowed for exclusive requests [ 1.303363] ehci-platform 4200000.usb: EHCI Host Controller [ 1.309066] ehci-platform 4200000.usb: new USB bus registered, assigned bus number 1 [ 1.317449] ehci-platform 4200000.usb: irq 236, io mem 0x04200000 [ 1.324411] ohci-platform 4200400.usb: Generic Platform OHCI controller [ 1.331129] ohci-platform 4200400.usb: new USB bus registered, assigned bus number 2 [ 1.342243] ubi0: attaching mtd3 [ 1.345787] ohci-platform 4200400.usb: irq 237, io mem 0x04200400 [ 1.352181] sunxi-mmc 4020000.mmc: Got CD GPIO [ 1.356987] sunxi-mmc 4021000.mmc: allocated mmc-pwrseq [ 1.362811] ehci-platform 4200000.usb: USB 2.0 started, EHCI 1.00 [ 1.369826] hub 1-0:1.0: USB hub found [ 1.373949] hub 1-0:1.0: 1 port detected [ 1.379383] sunxi-mmc 4020000.mmc: initialized, max. request size: 2048 KB, uses new timings mode [ 1.388516] sunxi-mmc 4021000.mmc: initialized, max. request size: 2048 KB, uses new timings mode [ 1.423266] hub 2-0:1.0: USB hub found [ 1.427434] hub 2-0:1.0: 1 port detected [ 1.431470] mmc1: Failed to initialize a non-removable card [ 1.647617] random: crng init done [ 1.839510] ubi0: scanning is finished [ 1.873720] ubi0: volume 0 ("rootfs") re-sized from 151 to 934 LEBs [ 1.880641] ubi0: attached mtd3 (name "filesystem", size 119 MiB) [ 1.886749] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 1.893651] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 1.900444] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 1.907399] ubi0: good PEBs: 958, bad PEBs: 0, corrupted PEBs: 0 [ 1.913407] ubi0: user volume: 1, internal volumes: 1, max. volumes count: 128 [ 1.920635] ubi0: max/mean erase counter: 1/0, WL threshold: 4096, image sequence number: 596498016 [ 1.929680] ubi0: available PEBs: 0, total reserved PEBs: 958, PEBs reserved for bad PEB handling: 20 [ 1.939087] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 1.946937] ubi0: background thread "ubi_bgt0d" started, PID 55 [ 1.957198] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 1.962936] clk: Disabling unused clocks [ 1.967045] ALSA device list: [ 1.970036] No soundcards found. [ 1.974010] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2 [ 1.982673] cfg80211: failed to load regulatory.db [ 1.990738] UBIFS (ubi0:0): Mounting in unauthenticated mode [ 2.101425] UBIFS (ubi0:0): UBIFS: mounted UBI device 0, volume 0, name "rootfs", R/O mode [ 2.109744] UBIFS (ubi0:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 2.119663] UBIFS (ubi0:0): FS size: 117198848 bytes (111 MiB, 923 LEBs), max 958 LEBs, journal size 9023488 bytes (8 MiB, 72 LEBs) [ 2.131487] UBIFS (ubi0:0): reserved for root: 0 bytes (0 KiB) [ 2.137315] UBIFS (ubi0:0): media format: w4/r0 (latest is w5/r0), UUID F1CD6F9D-979E-4A3E-92E0-003A766EAF2D, small LPT model [ 2.155404] VFS: Mounted root (ubifs filesystem) readonly on device 0:13. [ 2.167195] devtmpfs: mounted [ 2.171419] Freeing unused kernel image (initmem) memory: 1024K [ 2.177700] Run /sbin/init as init process [ 2.685545] UBIFS (ubi0:0): start fixing up free space [ 7.223024] UBIFS (ubi0:0): free space fixup complete [ 7.235868] UBIFS (ubi0:0): background thread "ubifs_bgt0_0" started, PID 61 Saving 256 bits of creditable seed for next boot Starting syslogd: OK Starting klogd: OK Running sysctl: OK Populating /dev using udev: [ 7.820937] udevd[91]: starting version 3.2.14 [ 8.093355] udevd[92]: starting eudev-3.2.14 done Starting network: ip: SIOCGIFFLAGS: No such device FAIL Starting crond: OK Welcome to MangoPI MQ1RDW2 mangopi-mq1rdw2 login: root # Изменено 6 сентября пользователем sasamy Цитата Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты Поделиться
AlexLir 0 6 сентября Опубликовано 6 сентября (изменено) · Жалоба Еще раз сделал все по инструкции и получилось запустить, но сейчас другая ошибка. Ядро 6.10.8 NAND определил. Лог: Спойлер AWBoot r6164 for allwinner T113 starting... SPI-NAND: W25N01GV detected SPI-NAND: read dt blob of size 18613 at 42.00MB/S SPI-NAND: read Image of size 5792456 at 49.00MB/S booting linux... [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 6.10.8 (alex@alex) (arm-linux-gnueabihf-gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #11 SMP Fri Sep 6 23:53:35 +05 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: MangoPi MQ-R-T113 [ 0.000000] Memory policy: Data cache writealloc [ 0.000000] cma: Reserved 48 MiB at 0x45000000 on node -1 [ 0.000000] Zone ranges: [ 0.000000] Normal [mem 0x0000000040000000-0x0000000047ffffff] [ 0.000000] HighMem empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000040000000-0x0000000047ffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x0000000047ffffff] [ 0.000000] percpu: Embedded 13 pages/cpu s21140 r8192 d23916 u53248 [ 0.000000] Kernel command line: mem=128M cma=48M console=ttyS1,115200 earlyprintk=sinxi-uart ubi.mtd=3 root=ubi0_0 rootfstype=ubifs rootwait [ 0.000000] Unknown kernel command line parameters "earlyprintk=sinxi-uart", will be passed to user space. [ 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] Built 1 zonelists, mobility grouping on. Total pages: 32768 [ 0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off [ 0.000000] Memory: 65940K/131072K available (9216K kernel code, 963K rwdata, 2448K rodata, 1024K init, 262K bss, 15980K reserved, 49152K cma-reserved, 0K highmem) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 [ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.000000] clocksource: timer: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (virt). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns [ 0.000001] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns [ 0.000013] Switching to timer-based delay loop, resolution 41ns [ 0.000238] Console: colour dummy device 80x30 [ 0.000287] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000) [ 0.000302] CPU: Testing write buffer coherency: ok [ 0.000339] pid_max: default: 32768 minimum: 301 [ 0.000487] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.000506] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.001292] /cpus/cpu@0 missing clock-frequency property [ 0.001330] /cpus/cpu@1 missing clock-frequency property [ 0.001341] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000 [ 0.002390] Setting up static identity map for 0x40100000 - 0x40100060 [ 0.002604] rcu: Hierarchical SRCU implementation. [ 0.002613] rcu: Max phase no-delay instances is 1000. [ 0.003357] smp: Bringing up secondary CPUs ... [ 0.003942] smp: Brought up 1 node, 1 CPU [ 0.003961] SMP: Total of 1 processors activated (48.00 BogoMIPS). [ 0.003970] CPU: All CPU(s) started in SVC mode. [ 0.004533] devtmpfs: initialized [ 0.008152] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5 [ 0.008373] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.008402] futex hash table entries: 512 (order: 3, 32768 bytes, linear) [ 0.009863] pinctrl core: initialized pinctrl subsystem [ 0.011643] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.012543] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.013521] thermal_sys: Registered thermal governor 'step_wise' [ 0.013667] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers. [ 0.013681] hw-breakpoint: maximum watchpoint size is 8 bytes. [ 0.017278] platform 2001000.clock-controller: Fixed dependency cycle(s) with /soc/rtc@7090000 [ 0.019891] platform 5100000.mixer: Fixed dependency cycle(s) with /soc/tcon-top@5460000 [ 0.020162] platform 5200000.mixer: Fixed dependency cycle(s) with /soc/tcon-top@5460000 [ 0.020507] platform 5200000.mixer: Fixed dependency cycle(s) with /soc/tcon-top@5460000 [ 0.020598] platform 5100000.mixer: Fixed dependency cycle(s) with /soc/tcon-top@5460000 [ 0.020668] platform 5460000.tcon-top: Fixed dependency cycle(s) with /soc/mixer@5200000 [ 0.020731] platform 5460000.tcon-top: Fixed dependency cycle(s) with /soc/lcd-controller@5470000 [ 0.020748] platform 5460000.tcon-top: Fixed dependency cycle(s) with /soc/lcd-controller@5461000 [ 0.020763] platform 5460000.tcon-top: Fixed dependency cycle(s) with /soc/mixer@5100000 [ 0.020995] platform 5460000.tcon-top: Fixed dependency cycle(s) with /soc/lcd-controller@5461000 [ 0.021072] platform 5461000.lcd-controller: Fixed dependency cycle(s) with /soc/tcon-top@5460000 [ 0.021291] platform 5460000.tcon-top: Fixed dependency cycle(s) with /soc/lcd-controller@5470000 [ 0.021369] platform 5470000.lcd-controller: Fixed dependency cycle(s) with /soc/tcon-top@5460000 [ 0.021728] platform 7010000.clock-controller: Fixed dependency cycle(s) with /soc/clock-controller@2001000 [ 0.021793] platform 7010000.clock-controller: Fixed dependency cycle(s) with /soc/rtc@7090000 [ 0.021908] platform 7010000.clock-controller: Fixed dependency cycle(s) with /soc/rtc@7090000 [ 0.022031] platform 2001000.clock-controller: Fixed dependency cycle(s) with /soc/rtc@7090000 [ 0.022141] platform 7090000.rtc: Fixed dependency cycle(s) with /soc/clock-controller@7010000 [ 0.026769] SCSI subsystem initialized [ 0.026976] usbcore: registered new interface driver usbfs [ 0.027011] usbcore: registered new interface driver hub [ 0.027051] usbcore: registered new device driver usb [ 0.027250] mc: Linux media interface: v0.10 [ 0.027296] videodev: Linux video capture interface: v2.00 [ 0.027382] pps_core: LinuxPPS API ver. 1 registered [ 0.027388] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]> [ 0.027404] PTP clock support registered [ 0.027918] Advanced Linux Sound Architecture Driver Initialized. [ 0.028986] clocksource: Switched to clocksource arch_sys_counter [ 0.037710] NET: Registered PF_INET protocol family [ 0.037923] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.038467] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear) [ 0.038497] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.038509] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.038529] TCP bind hash table entries: 1024 (order: 2, 16384 bytes, linear) [ 0.038565] TCP: Hash tables configured (established 1024 bind 1024) [ 0.038656] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.038691] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.038841] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.039642] RPC: Registered named UNIX socket transport module. [ 0.039661] RPC: Registered udp transport module. [ 0.039666] RPC: Registered tcp transport module. [ 0.039670] RPC: Registered tcp-with-tls transport module. [ 0.039673] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.040547] hw perfevents: enabled with armv7_cortex_a7 PMU driver, 5 counters available [ 0.041668] workingset: timestamp_bits=30 max_order=15 bucket_order=0 [ 0.042355] NFS: Registering the id_resolver key type [ 0.042405] Key type id_resolver registered [ 0.042411] Key type id_legacy registered [ 0.042525] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246) [ 0.042535] io scheduler mq-deadline registered [ 0.042542] io scheduler kyber registered [ 0.042561] io scheduler bfq registered [ 0.106535] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled [ 0.117576] CAN device driver interface [ 0.120763] sun6i-rtc 7090000.rtc: registered as rtc0 [ 0.120895] sun6i-rtc 7090000.rtc: setting system clock to 1970-01-02T03:45:04 UTC (99904) [ 0.121330] i2c_dev: i2c /dev entries driver [ 0.123459] sun8i-ce 3040000.crypto: Set mod clock to 300000000 (300 Mhz) from 400000000 (400 Mhz) [ 0.124084] sun8i-ce 3040000.crypto: will run requests pump with realtime priority [ 0.124559] sun8i-ce 3040000.crypto: will run requests pump with realtime priority [ 0.124865] sun8i-ce 3040000.crypto: will run requests pump with realtime priority [ 0.125137] sun8i-ce 3040000.crypto: will run requests pump with realtime priority [ 0.125321] sun8i-ce 3040000.crypto: Register cbc(aes) [ 0.125341] sun8i-ce 3040000.crypto: Register ecb(aes) [ 0.125351] sun8i-ce 3040000.crypto: Register cbc(des3_ede) [ 0.125361] sun8i-ce 3040000.crypto: Register ecb(des3_ede) [ 0.125391] sun8i-ce 3040000.crypto: CryptoEngine Die ID 0 [ 0.126370] usbcore: registered new interface driver usbhid [ 0.126383] usbhid: USB HID core driver [ 0.128782] NET: Registered PF_PACKET protocol family [ 0.128802] can: controller area network core [ 0.128854] NET: Registered PF_CAN protocol family [ 0.128863] can: raw protocol [ 0.128870] can: broadcast manager protocol [ 0.128879] can: netlink gateway - max_hops=1 [ 0.129093] Key type dns_resolver registered [ 0.129275] Registering SWP/SWPB emulation handler [ 0.135146] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level [ 0.152420] gpio gpiochip0: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 0.158658] sun20i-d1-pinctrl 2000000.pinctrl: initialized sunXi PIO driver [ 0.160892] printk: legacy console [ttyS1] disabled [ 0.181678] 2500400.serial: ttyS1 at MMIO 0x2500400 (irq = 233, base_baud = 1500000) is a 16550A [ 0.181743] printk: legacy console [ttyS1] enabled [ 1.143241] 2500c00.serial: ttyS3 at MMIO 0x2500c00 (irq = 234, base_baud = 1500000) is a 16550A [ 1.153084] sun20i-d1-pinctrl 2000000.pinctrl: supply vcc-pc not found, using dummy regulator [ 1.163213] spi-nand spi0.0: Winbond SPI NAND was found. [ 1.168546] spi-nand spi0.0: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 64 [ 1.176980] 4 fixed-partitions partitions found on MTD device spi0.0 [ 1.183376] Creating 4 MTD partitions on "spi0.0": [ 1.188169] 0x000000000000-0x000000020000 : "awboot" [ 1.193903] 0x000000020000-0x000000040000 : "dtb" [ 1.199274] 0x000000040000-0x000000840000 : "kernel" [ 1.214443] 0x000000840000-0x000008000000 : "filesystem" [ 1.364900] usb_phy_generic usb_phy_generic.1.auto: dummy supplies not allowed for exclusive requests (id=vbus) [ 1.379544] ehci-platform 4200000.usb: EHCI Host Controller [ 1.385157] ehci-platform 4200000.usb: new USB bus registered, assigned bus number 1 [ 1.394121] ohci-platform 4200400.usb: Generic Platform OHCI controller [ 1.400841] ohci-platform 4200400.usb: new USB bus registered, assigned bus number 2 [ 1.411690] ubi0: attaching mtd3 [ 1.415971] ohci-platform 4200400.usb: irq 238, io mem 0x04200400 [ 1.422340] sunxi-mmc 4020000.mmc: Got CD GPIO [ 1.427157] sunxi-mmc 4021000.mmc: allocated mmc-pwrseq [ 1.432715] ehci-platform 4200000.usb: irq 237, io mem 0x04200000 [ 1.449629] sunxi-mmc 4020000.mmc: initialized, max. request size: 2048 KB, uses new timings mode [ 1.459077] sunxi-mmc 4021000.mmc: initialized, max. request size: 2048 KB, uses new timings mode [ 1.468123] ehci-platform 4200000.usb: USB 2.0 started, EHCI 1.00 [ 1.476192] hub 1-0:1.0: USB hub found [ 1.480381] hub 1-0:1.0: 1 port detected [ 1.489050] sunxi-mmc 4021000.mmc: card claims to support voltages below defined range [ 1.502865] hub 2-0:1.0: USB hub found [ 1.506975] hub 2-0:1.0: 1 port detected [ 1.530189] mmc1: new high speed SDIO card at address 0001 [ 1.719015] random: crng init done [ 1.885381] ubi0: scanning is finished [ 1.897763] ubi0 error: vtbl_check: too large reserved_pebs 991, good PEBs 958 [ 1.905040] ubi0 error: vtbl_check: volume table check failed: record 0, error 9 [ 1.912455] Volume table record 0 dump: [ 1.916287] reserved_pebs 991 [ 1.919520] alignment 1 [ 1.922572] data_pad 0 [ 1.925623] vol_type 1 [ 1.928673] upd_marker 0 [ 1.931733] name_len 6 [ 1.934785] name rootfs [ 1.938271] crc 0x5e2d1db8 [ 1.942372] ubi0 error: ubi_attach_mtd_dev: failed to attach mtd3, error -22 [ 1.949472] UBI error: cannot attach mtd3 [ 1.953644] clk: Disabling unused clocks [ 1.957748] ALSA device list: [ 1.960749] No soundcards found. [ 1.964766] VFS: Cannot open root device "ubi0_0" or unknown-block(0,253): error -19 [ 1.972578] Please append a correct "root=" boot option; here are the available partitions: [ 1.980939] List of all bdev filesystems: [ 1.984945] ext3 [ 1.984948] ext2 [ 1.986873] ext4 [ 1.988796] vfat [ 1.990728] [ 1.994140] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,253) [ 2.002569] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 6.10.8 #11 [ 2.008574] Hardware name: Generic DT based system [ 2.013360] Call trace: [ 2.013373] unwind_backtrace from show_stack+0x10/0x14 [ 2.021150] show_stack from dump_stack_lvl+0x54/0x68 [ 2.026216] dump_stack_lvl from panic+0x10c/0x330 [ 2.031019] panic from mount_root_generic+0x1f8/0x2a8 [ 2.036170] mount_root_generic from prepare_namespace+0x1fc/0x254 [ 2.042359] prepare_namespace from kernel_init+0x1c/0x12c [ 2.047856] kernel_init from ret_from_fork+0x14/0x28 [ 2.052914] Exception stack(0xc8815fb0 to 0xc8815ff8) [ 2.057963] 5fa0: 00000000 00000000 00000000 00000000 [ 2.066134] 5fc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 2.074303] 5fe0: 00000000 00000000 00000000 00000000 00000013 00000000 [ 2.080916] ---[ end Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,253) ]--- Изменено 6 сентября пользователем AlexLir Цитата Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты Поделиться
sasamy 1 6 сентября Опубликовано 6 сентября (изменено) · Жалоба On 9/6/2024 at 10:27 PM, sasamy said: Сконфигурировал buildroot все что добавил находится тут buildroot-2024.08-spi-nand/board/mangopi/mq1rdw2 linux_spi_nand.config - дополнительные опции ядра для spi nand sun8i-t113s-mangopi-mq-r-t113-spi-nand.dts - dt от мангопи с добавлением spi nand там надо попроавить uart на котором у вас консоль эти dtsi просто скопированы из ядра - они нужны для компиляции sun8i-t113s-mangopi-mq-r-t113-spi-nand.dts sun8i-t113s.dtsi sunxi-d1s-t113-mangopi-mq-r.dtsi Записывал так Quote xfel spinand write 0 awboot.bin xfel spinand write 0x20000 sun8i-t113s-mangopi-mq-r-t113-spi-nand.dtb xfel spinand write 0x40000 zImage xfel spinand erase 0x840000 0x77c0000 xfel spinand write 0x840000 rootfs.ubi кроме awboot.bin после сборки все в директории output/images Изменено 6 сентября пользователем sasamy Цитата Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты Поделиться
AlexLir 0 6 сентября Опубликовано 6 сентября · Жалоба Разобрался с этой ошибкой, при сборке rootfs указал параметр: vol_size=120MiB. Убрал его и завелось но походу опять не полностью.... Вот новый лог: Спойлер AWBoot r6164 for allwinner T113 starting... SPI-NAND: W25N01GV detected SPI-NAND: read dt blob of size 18613 at 42.00MB/S SPI-NAND: read Image of size 5792456 at 49.00MB/S booting linux... [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 6.10.8 (alex@alex) (arm-linux-gnueabihf-gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #11 SMP Fri Sep 6 23:53:35 +05 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: MangoPi MQ-R-T113 [ 0.000000] Memory policy: Data cache writealloc [ 0.000000] cma: Reserved 48 MiB at 0x45000000 on node -1 [ 0.000000] Zone ranges: [ 0.000000] Normal [mem 0x0000000040000000-0x0000000047ffffff] [ 0.000000] HighMem empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000040000000-0x0000000047ffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x0000000047ffffff] [ 0.000000] percpu: Embedded 13 pages/cpu s21140 r8192 d23916 u53248 [ 0.000000] Kernel command line: mem=128M cma=48M console=ttyS1,115200 earlyprintk=sinxi-uart ubi.mtd=3 root=ubi0_0 rootfstype=ubifs rootwait [ 0.000000] Unknown kernel command line parameters "earlyprintk=sinxi-uart", will be passed to user space. [ 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] Built 1 zonelists, mobility grouping on. Total pages: 32768 [ 0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off [ 0.000000] Memory: 65940K/131072K available (9216K kernel code, 963K rwdata, 2448K rodata, 1024K init, 262K bss, 15980K reserved, 49152K cma-reserved, 0K highmem) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 [ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.000000] clocksource: timer: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (virt). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns [ 0.000001] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns [ 0.000013] Switching to timer-based delay loop, resolution 41ns [ 0.000234] Console: colour dummy device 80x30 [ 0.000284] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000) [ 0.000299] CPU: Testing write buffer coherency: ok [ 0.000335] pid_max: default: 32768 minimum: 301 [ 0.000485] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.000504] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.001292] /cpus/cpu@0 missing clock-frequency property [ 0.001329] /cpus/cpu@1 missing clock-frequency property [ 0.001341] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000 [ 0.002392] Setting up static identity map for 0x40100000 - 0x40100060 [ 0.002600] rcu: Hierarchical SRCU implementation. [ 0.002610] rcu: Max phase no-delay instances is 1000. [ 0.003359] smp: Bringing up secondary CPUs ... [ 0.003941] smp: Brought up 1 node, 1 CPU [ 0.003960] SMP: Total of 1 processors activated (48.00 BogoMIPS). [ 0.003968] CPU: All CPU(s) started in SVC mode. [ 0.004535] devtmpfs: initialized [ 0.008155] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5 [ 0.008373] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.008400] futex hash table entries: 512 (order: 3, 32768 bytes, linear) [ 0.009865] pinctrl core: initialized pinctrl subsystem [ 0.011636] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.012536] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.013515] thermal_sys: Registered thermal governor 'step_wise' [ 0.013662] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers. [ 0.013677] hw-breakpoint: maximum watchpoint size is 8 bytes. [ 0.017286] platform 2001000.clock-controller: Fixed dependency cycle(s) with /soc/rtc@7090000 [ 0.019904] platform 5100000.mixer: Fixed dependency cycle(s) with /soc/tcon-top@5460000 [ 0.020182] platform 5200000.mixer: Fixed dependency cycle(s) with /soc/tcon-top@5460000 [ 0.020523] platform 5200000.mixer: Fixed dependency cycle(s) with /soc/tcon-top@5460000 [ 0.020615] platform 5100000.mixer: Fixed dependency cycle(s) with /soc/tcon-top@5460000 [ 0.020684] platform 5460000.tcon-top: Fixed dependency cycle(s) with /soc/mixer@5200000 [ 0.020748] platform 5460000.tcon-top: Fixed dependency cycle(s) with /soc/lcd-controller@5470000 [ 0.020765] platform 5460000.tcon-top: Fixed dependency cycle(s) with /soc/lcd-controller@5461000 [ 0.020780] platform 5460000.tcon-top: Fixed dependency cycle(s) with /soc/mixer@5100000 [ 0.021011] platform 5460000.tcon-top: Fixed dependency cycle(s) with /soc/lcd-controller@5461000 [ 0.021092] platform 5461000.lcd-controller: Fixed dependency cycle(s) with /soc/tcon-top@5460000 [ 0.021309] platform 5460000.tcon-top: Fixed dependency cycle(s) with /soc/lcd-controller@5470000 [ 0.021386] platform 5470000.lcd-controller: Fixed dependency cycle(s) with /soc/tcon-top@5460000 [ 0.021743] platform 7010000.clock-controller: Fixed dependency cycle(s) with /soc/clock-controller@2001000 [ 0.021810] platform 7010000.clock-controller: Fixed dependency cycle(s) with /soc/rtc@7090000 [ 0.021926] platform 7010000.clock-controller: Fixed dependency cycle(s) with /soc/rtc@7090000 [ 0.022048] platform 2001000.clock-controller: Fixed dependency cycle(s) with /soc/rtc@7090000 [ 0.022159] platform 7090000.rtc: Fixed dependency cycle(s) with /soc/clock-controller@7010000 [ 0.026786] SCSI subsystem initialized [ 0.026994] usbcore: registered new interface driver usbfs [ 0.027028] usbcore: registered new interface driver hub [ 0.027069] usbcore: registered new device driver usb [ 0.027273] mc: Linux media interface: v0.10 [ 0.027323] videodev: Linux video capture interface: v2.00 [ 0.027409] pps_core: LinuxPPS API ver. 1 registered [ 0.027415] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]> [ 0.027431] PTP clock support registered [ 0.027936] Advanced Linux Sound Architecture Driver Initialized. [ 0.028994] clocksource: Switched to clocksource arch_sys_counter [ 0.037722] NET: Registered PF_INET protocol family [ 0.037936] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.038483] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear) [ 0.038513] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.038525] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.038545] TCP bind hash table entries: 1024 (order: 2, 16384 bytes, linear) [ 0.038579] TCP: Hash tables configured (established 1024 bind 1024) [ 0.038671] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.038706] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.038855] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.039658] RPC: Registered named UNIX socket transport module. [ 0.039675] RPC: Registered udp transport module. [ 0.039679] RPC: Registered tcp transport module. [ 0.039682] RPC: Registered tcp-with-tls transport module. [ 0.039686] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.040554] hw perfevents: enabled with armv7_cortex_a7 PMU driver, 5 counters available [ 0.041672] workingset: timestamp_bits=30 max_order=15 bucket_order=0 [ 0.042356] NFS: Registering the id_resolver key type [ 0.042406] Key type id_resolver registered [ 0.042412] Key type id_legacy registered [ 0.042525] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246) [ 0.042536] io scheduler mq-deadline registered [ 0.042542] io scheduler kyber registered [ 0.042561] io scheduler bfq registered [ 0.106542] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled [ 0.117555] CAN device driver interface [ 0.120737] sun6i-rtc 7090000.rtc: registered as rtc0 [ 0.120867] sun6i-rtc 7090000.rtc: setting system clock to 1970-01-02T04:00:13 UTC (100813) [ 0.121297] i2c_dev: i2c /dev entries driver [ 0.123434] sun8i-ce 3040000.crypto: Set mod clock to 300000000 (300 Mhz) from 400000000 (400 Mhz) [ 0.124062] sun8i-ce 3040000.crypto: will run requests pump with realtime priority [ 0.124534] sun8i-ce 3040000.crypto: will run requests pump with realtime priority [ 0.124838] sun8i-ce 3040000.crypto: will run requests pump with realtime priority [ 0.125114] sun8i-ce 3040000.crypto: will run requests pump with realtime priority [ 0.125299] sun8i-ce 3040000.crypto: Register cbc(aes) [ 0.125321] sun8i-ce 3040000.crypto: Register ecb(aes) [ 0.125331] sun8i-ce 3040000.crypto: Register cbc(des3_ede) [ 0.125340] sun8i-ce 3040000.crypto: Register ecb(des3_ede) [ 0.125370] sun8i-ce 3040000.crypto: CryptoEngine Die ID 0 [ 0.126339] usbcore: registered new interface driver usbhid [ 0.126352] usbhid: USB HID core driver [ 0.128758] NET: Registered PF_PACKET protocol family [ 0.128778] can: controller area network core [ 0.128832] NET: Registered PF_CAN protocol family [ 0.128840] can: raw protocol [ 0.128847] can: broadcast manager protocol [ 0.128856] can: netlink gateway - max_hops=1 [ 0.129073] Key type dns_resolver registered [ 0.129256] Registering SWP/SWPB emulation handler [ 0.135144] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level [ 0.152408] gpio gpiochip0: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 0.158651] sun20i-d1-pinctrl 2000000.pinctrl: initialized sunXi PIO driver [ 0.160882] printk: legacy console [ttyS1] disabled [ 0.181670] 2500400.serial: ttyS1 at MMIO 0x2500400 (irq = 233, base_baud = 1500000) is a 16550A [ 0.181734] printk: legacy console [ttyS1] enabled [ 1.143332] 2500c00.serial: ttyS3 at MMIO 0x2500c00 (irq = 234, base_baud = 1500000) is a 16550A [ 1.153170] sun20i-d1-pinctrl 2000000.pinctrl: supply vcc-pc not found, using dummy regulator [ 1.163300] spi-nand spi0.0: Winbond SPI NAND was found. [ 1.168632] spi-nand spi0.0: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 64 [ 1.177063] 4 fixed-partitions partitions found on MTD device spi0.0 [ 1.183461] Creating 4 MTD partitions on "spi0.0": [ 1.188254] 0x000000000000-0x000000020000 : "awboot" [ 1.193987] 0x000000020000-0x000000040000 : "dtb" [ 1.199364] 0x000000040000-0x000000840000 : "kernel" [ 1.214544] 0x000000840000-0x000008000000 : "filesystem" [ 1.365007] usb_phy_generic usb_phy_generic.1.auto: dummy supplies not allowed for exclusive requests (id=vbus) [ 1.379653] ehci-platform 4200000.usb: EHCI Host Controller [ 1.385265] ehci-platform 4200000.usb: new USB bus registered, assigned bus number 1 [ 1.394230] ohci-platform 4200400.usb: Generic Platform OHCI controller [ 1.400959] ohci-platform 4200400.usb: new USB bus registered, assigned bus number 2 [ 1.411799] ubi0: attaching mtd3 [ 1.416080] ohci-platform 4200400.usb: irq 238, io mem 0x04200400 [ 1.422446] sunxi-mmc 4020000.mmc: Got CD GPIO [ 1.427262] sunxi-mmc 4021000.mmc: allocated mmc-pwrseq [ 1.432819] ehci-platform 4200000.usb: irq 237, io mem 0x04200000 [ 1.449860] sunxi-mmc 4020000.mmc: initialized, max. request size: 2048 KB, uses new timings mode [ 1.459321] sunxi-mmc 4021000.mmc: initialized, max. request size: 2048 KB, uses new timings mode [ 1.468354] ehci-platform 4200000.usb: USB 2.0 started, EHCI 1.00 [ 1.476425] hub 1-0:1.0: USB hub found [ 1.480614] hub 1-0:1.0: 1 port detected [ 1.493265] sunxi-mmc 4021000.mmc: card claims to support voltages below defined range [ 1.502698] hub 2-0:1.0: USB hub found [ 1.506789] hub 2-0:1.0: 1 port detected [ 1.532050] mmc1: new high speed SDIO card at address 0001 [ 1.719023] random: crng init done [ 1.885913] ubi0: scanning is finished [ 1.918076] ubi0: volume 0 ("rootfs") re-sized from 45 to 934 LEBs [ 1.924926] ubi0: attached mtd3 (name "filesystem", size 119 MiB) [ 1.931075] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 1.937949] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 1.944752] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 1.951718] ubi0: good PEBs: 958, bad PEBs: 0, corrupted PEBs: 0 [ 1.957720] ubi0: user volume: 1, internal volumes: 1, max. volumes count: 128 [ 1.964943] ubi0: max/mean erase counter: 1/0, WL threshold: 4096, image sequence number: 839781829 [ 1.973989] ubi0: available PEBs: 0, total reserved PEBs: 958, PEBs reserved for bad PEB handling: 20 [ 1.983372] clk: Disabling unused clocks [ 1.987477] ALSA device list: [ 1.990469] No soundcards found. [ 1.994232] ubi0: background thread "ubi_bgt0d" started, PID 58 [ 2.003237] UBIFS (ubi0:0): Mounting in unauthenticated mode [ 2.114473] UBIFS (ubi0:0): UBIFS: mounted UBI device 0, volume 0, name "rootfs", R/O mode [ 2.122793] UBIFS (ubi0:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 2.132712] UBIFS (ubi0:0): FS size: 117198848 bytes (111 MiB, 923 LEBs), max 958 LEBs, journal size 9023488 bytes (8 MiB, 72 LEBs) [ 2.144550] UBIFS (ubi0:0): reserved for root: 0 bytes (0 KiB) [ 2.150388] UBIFS (ubi0:0): media format: w4/r0 (latest is w5/r0), UUID F2E48F80-B66D-4E8D-B211-F4985BED32B2, small LPT model [ 2.166603] VFS: Mounted root (ubifs filesystem) readonly on device 0:14. [ 2.177440] devtmpfs: mounted [ 2.181661] Freeing unused kernel image (initmem) memory: 1024K [ 2.187931] Run /sbin/init as init process Цитата Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты Поделиться