Open main menu

DAVE Developer's Wiki β

Changes

DESK-MP1-L/Development/How to create a bootable microSD card

45,453 bytes added, 14:25, 3 August 2023
no edit summary
<section begin="History" />
{| style="border-collapse:collapse; "
! colspan="34" style="width:100%; text-align:left" ; border-bottom:solid 2px #ededed" |History|-! style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#73B2C7; padding:5px; color:white" |ID#
! style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#73B2C7; padding:5px; color:white" |Issue Date
! style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#73B2C7; padding:5px; color:white" |Notes
|-
| style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#edf8fb; padding:5px; color:#000000" |X.Y.Z
| style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#edf8fb; padding:5px; color:#000000" |01/08/2023
| style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#edf8fb; padding:5px; color:#000000" |DESK-MP1-L-1.0.0 release
|-
|}
<section end="History" />
<section begin="Body" />
== Introduction ==The process is relatively straightforward: it consists of writing the WIC file of interest generated by Yocto onto the SD card. There are multiple ways to do create a bootable microSD cardthat. The following sections describes
== Using Balena Etcher and WIF image file ==<section end="History" /><section begin="Body" />The process is relatively straightforward: it consists of writing the WIC file of interest generated by Yocto onto the SD card. The most common tool is to do that is use the well-known BalenaEtcher tool ([https://etcher.balena.io/ Balena Etcher programdownload BalenaEtcher]). The following instruction explains how to use it on a Windows host. The procedure is similar when working with a Linux host.
* Download the desired binary image to flash (<code>*.wic</code> or <code>*.wic.bz2</code>)
**Among the binaries made available in the [[mirror:desk-mp1-l/| mirror]] there are several <code>*.wic.bz2</code> files for the available releases. In particular, there is the <code>desk-image-qt5-openstlinux-weston-desk-mp1.wic.bz2</code> file. This image is the one used to program the microSD card delivered along with the evaluation kit.
|}
== Using = Flash uSD with STM32CubeProgrammer === 
Another way is to use the [https://www.st.com/en/development-tools/stm32cubeprog.html STM32CubeProgrammer] tool, which has a little different approach than BalenaEtcher. STM32CubeProgrammer makes use of several files generated by Yocto.
TBD complete * Execute the build with some yocto, see [[DESK-MP1-L/Development/Building_the_Yocto_BSP | here]] for more info.<pre class="workstation-terminal">dvdk@vagrant:~/desk-mp1-l$ curl http://commondatastorage.googleapis.com/git-repo-downloads/repo-1 > repo % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed100 29945 100 29945 0 0 696k 0 --:--:-- --:--:-- --:--:-- 696kdvdk@vagrant:~/desk-mp1-l$ chmod a+x repodvdk@vagrant:~/desk-mp1-l$ ./repo init -u git@git.dave.eu:desk-mp1-l/desk-mp1-l-bsp.git -b refs/tags/desk-mp1-l-1.0.0...repo has been initialized in /home/dvdk/desk-mp1-ldvdk@vagrant:~/desk-mp1-l$ ./repo sync...dvdk@vagrant:~/desk-mp1-l$ EULA=1 DISTRO=openstlinux-weston MACHINE=desk-mp1 source ./desk-setup-release.sh...dvdk@vagrant:~/desk-mp1-l/build$ bitbake dave-image-qt5-weston...dvdk@vagrant:~/desk-mp1-l/build$ EULA=1 DISTRO=openstlinux-weston MACHINE=desk-mp1 source ./desk-setup-release.sh...dvdk@vagrant:~/desk-mp1-l/build$ bitbake dave-image-qt5-weston</pre> * Open STM32CubeProgrammer Tool* Click on <code>Open file</code> and elect the <code>tsv</code> file <code>/home/dvdk/desk-mp1-l/build/tmp-glibc/deploy/images/desk-mp1/flashlayout_dave-image-qt5-weston/trusted/FlashLayout_sdcard_stm32mp157a-dcsb5000dd1r-trusted.tsv</code>. [[File:DESK-MP1-L_STM32CubeProgrammer_load_tsv_file.PNG|thumb|frame|left|750px]] * Click on <code>Browse</code> and select the directory with the artifacts generated by yocto <code>/home/dvdk/desk-mp1-l/build/tmp-glibc/deploy/images/desk-mp1/</code> [[File:DESK-MP1-L_STM32CubeProgrammer_open_folder.PNG|thumb|border|left|750px]] * Change the S1 DIP-switch into <code>ON-ON-ON-OFF</code> [[File:DESK-MP1-L_DIP-Switch-USB-Boot.JPG|thumb|border|left|750px]]  * Connect the board with USB <-> USB OTG cable. * Add device detected into the MVM [[File:DESK-MP1-L_STM32CubeProgrammer_board_connection.png|thumb|border|left|750px]] * Execute the connection with STM32CubeProgrammer tool** Select USB instead of ST-LINK.** Check if the <code>Port</code> value aren't <code>No DFU detected</code> but for example <code>USB1</code>.** Click con <code>Connect</code>. [[File:DESK-MP1-L_STM32CubeProgrammer_connect_board.PNG|thumb|border|left|750px]] * Click on <code>Download</code> for program the uSD with the tool [[File:DESK-MP1-L_STM32CubeProgrammer_execute_download.PNG|thumb|border|left|750px]] [[File:DESK-MP1-L_STM32CubeProgrammer_downloading.PNG|thumb|border|left|750px]] [[File:DESK-MP1-L_STM32CubeProgrammer_display_on_flashing_uSD.JPG|thumb|border|left|750px]] * When programming ends this message appears [[File:DESK-MP1-L_STM32CubeProgrammer_end_download_binary.PNG|thumb|border|left|750px]] * Unplug the OTG cable* Change the DIP-switch into <code>ON-OFF-ON-OFF</code> [[File:DESK-MP1-L_DIP-Switch-uSD-Boot.JPG|thumb|left|750px]] * Power on the board  <pre class="mw-collapsible mw-collapsed workstation-terminal"> NOTICE: CPU: STM32MP157AAB Rev.BNOTICE: Model: DAVE desk-mp1 stm32mp157a-dcsb5000dd1rINFO: PMIC version = 0x21INFO: Reset reason (0x14):INFO: Pad Reset from NRSTINFO: FCONF: Reading TB_FW firmware configuration file from: 0x2ffe2000INFO: FCONF: Reading firmware configuration information for: stm32mp_ioINFO: Using SDMMCINFO: Instance 1INFO: Boot used partition fsbl1NOTICE: BL2: v2.6-stm32mp1-r2.0(debug):desk-mp1-l-1.0.0(709eafce)NOTICE: BL2: Built : 08:34:10, Jul 25 2023INFO: BL2: Doing platform setupINFO: RAM: DDR3-DDR3L 16bits 533000kHzINFO: Memory size = 0x20000000 (512 MB)INFO: BL2: Loading image id 1INFO: Loading image id=1 at address 0x2ffff000INFO: Image id=1 loaded: 0x2ffff000 - 0x2ffff226INFO: FCONF: Reading FW_CONFIG firmware configuration file from: 0x2ffff000INFO: FCONF: Reading firmware configuration information for: dyn_cfgINFO: FCONF: Reading firmware configuration information for: stm32mp1_firewallINFO: BL2: Loading image id 4INFO: Loading image id=4 at address 0x2ffc5000INFO: Image id=4 loaded: 0x2ffc5000 - 0x2ffd9820INFO: BL2: Skip loading image id 8INFO: BL2: Skip loading image id 9INFO: BL2: Loading image id 2INFO: Loading image id=2 at address 0xc0500000INFO: Image id=2 loaded: 0xc0500000 - 0xc0512e30INFO: BL2: Loading image id 16INFO: Loading image id=16 at address 0x2ffc0000INFO: Image id=16 loaded: 0x2ffc0000 - 0x2ffc3ff5INFO: BL2: Loading image id 5INFO: Loading image id=5 at address 0xc0100000INFO: Image id=5 loaded: 0xc0100000 - 0xc01e8ba0NOTICE: BL2: Booting BL32INFO: Entry point address = 0x2ffc5000INFO: SPSR = 0x1d3NOTICE: SP_MIN: v2.6-stm32mp1-r2.0(debug):desk-mp1-l-1.0.0(709eafce)NOTICE: SP_MIN: Built : 08:34:10, Jul 25 2023INFO: ARM GICv2 driver initializedINFO: ETZPC: UART1 (3) could be non secureINFO: ETZPC: SPI6 (4) could be non secureINFO: ETZPC: RNG1 (7) could be non secureINFO: ETZPC: HASH1 (8) could be non secureINFO: ETZPC: CRYP1 (9) could be non secureINFO: ETZPC: I2C6 (12) could be non secureINFO: SP_MIN: Initializing runtime servicesINFO: SP_MIN: Preparing exit to normal worldserial_stm32 serial@40010000: pinctrl_select_state_full: uclass_get_device_by_phandle_id: err=-19  U-Boot 2021.10-desk-mp1-l-1.0.0 (Jul 25 2023 - 08:53:53 +0000) CPU: STM32MP157AAB Rev.BModel: Dave desk-mp1 stm32mp157a-dcsb5000dd1rBoard: Etra in trusted mode (st,stm32mp157a-dcsb5000dd1r)DRAM: 512 MiBClocks:- MPU : 650 MHz- MCU : 208.878 MHz- AXI : 266.500 MHz- PER : 0 MHz- DDR : 533 MHzWDT: Started with servicing (32s timeout)NAND: 0 MiBMMC: STM32 SD/MMC: 2, STM32 SD/MMC: 0, STM32 SD/MMC: 1Loading Environment from MMC... *** Warning - bad CRC, using default environment In: serialOut: serialErr: serialSOM ConfigID#: 00000001SOM UniqueID#: 39303435:33385105:001e0024CB ConfigID#: 00000001CB UniqueID#: 0d000035:c4a4762dBoard: ETRA on SBCNet: eth0: ethernet@5800a000Hit any key to stop autoboot: 0 switch to partitions #0, OKmmc0 is current device1151 bytes read in 4 ms (280.3 KiB/s)Running bootscript from mmc ...## Executing script at c2000000bootscript generated with command "./tools/mkimage -C none -A arm -T script -d boot.src.cmd boot.scr.uimg"60967 bytes read in 6 ms (9.7 MiB/s)8766008 bytes read in 374 ms (22.4 MiB/s)## Booting kernel from Legacy Image at c2000000 ... Image Name: Linux-5.15.67-desk-mp1-l-1.0.0 Created: 2023-07-25 9:04:16 UTC Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 8765944 Bytes = 8.4 MiB Load Address: c2000040 Entry Point: c2000040 Verifying Checksum ... OK## Flattened Device Tree blob at c4000000 Booting using the fdt blob at 0xc4000000 XIP Kernel Image Loading Device Tree to cffee000, end cffffe26 ... OKETZPC: 0x54003000 node disabled, decprot 7=0ETZPC: 0x48001000 node disabled, decprot 89=2 Starting kernel ... [ 0.000000] Booting Linux on physical CPU 0x0[ 0.000000] Linux version 5.15.67-desk-mp1-l-1.0.0 (oe-user@oe-host) (arm-ostl-linux-gnueabi-gcc (GCC) 11.3.0, GNU ld (GNU Binutils) 2.38.20220708) #1 SMP PREEMPT Tue Jul 25 09:04:16 UTC 2023[ 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: Dave desk-mp1 stm32mp157a-dcsb5000dd1r[ 0.000000] Memory policy: Data cache writealloc[ 0.000000] Reserved memory: created DMA memory pool at 0x10000000, size 0 MiB[ 0.000000] OF: reserved mem: initialized node mcuram2@10000000, compatible id shared-dma-pool[ 0.000000] Reserved memory: created DMA memory pool at 0x10040000, size 0 MiB[ 0.000000] OF: reserved mem: initialized node vdev0vring0@10040000, compatible id shared-dma-pool[ 0.000000] Reserved memory: created DMA memory pool at 0x10041000, size 0 MiB[ 0.000000] OF: reserved mem: initialized node vdev0vring1@10041000, compatible id shared-dma-pool[ 0.000000] Reserved memory: created DMA memory pool at 0x10042000, size 0 MiB[ 0.000000] OF: reserved mem: initialized node vdev0buffer@10042000, compatible id shared-dma-pool[ 0.000000] Reserved memory: created DMA memory pool at 0x10048000, size 0 MiB[ 0.000000] OF: reserved mem: initialized node mcu_rsc_table@10048000, compatible id shared-dma-pool[ 0.000000] Reserved memory: created DMA memory pool at 0x30000000, size 0 MiB[ 0.000000] OF: reserved mem: initialized node mcuram@30000000, compatible id shared-dma-pool[ 0.000000] Reserved memory: created DMA memory pool at 0x38000000, size 0 MiB[ 0.000000] OF: reserved mem: initialized node retram@38000000, compatible id shared-dma-pool[ 0.000000] cma: Reserved 128 MiB at 0xd8000000[ 0.000000] Zone ranges:[ 0.000000] Normal [mem 0x00000000c0000000-0x00000000dfffffff][ 0.000000] HighMem empty[ 0.000000] Movable zone start for each node[ 0.000000] Early memory node ranges[ 0.000000] node 0: [mem 0x00000000c0000000-0x00000000d3ffffff][ 0.000000] node 0: [mem 0x00000000d4000000-0x00000000d7ffffff][ 0.000000] node 0: [mem 0x00000000d8000000-0x00000000dfffffff][ 0.000000] Initmem setup node 0 [mem 0x00000000c0000000-0x00000000dfffffff][ 0.000000] psci: probing for conduit method from DT.[ 0.000000] psci: PSCIv1.1 detected in firmware.[ 0.000000] psci: Using standard PSCI v0.2 function IDs[ 0.000000] psci: MIGRATE_INFO_TYPE not supported.[ 0.000000] psci: SMC Calling Convention v1.2[ 0.000000] percpu: Embedded 17 pages/cpu s37004 r8192 d24436 u69632[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 129920[ 0.000000] Kernel command line: root=/dev/mmcblk1p10 rootwait rw console=ttySTM0,115200[ 0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes, linear)[ 0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes, linear)[ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off[ 0.000000] Memory: 300948K/524288K available (13312K kernel code, 1379K rwdata, 3896K rodata, 1024K init, 218K bss, 92268K reserved, 131072K cma-reserved, 0K highmem)[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1[ 0.000000] trace event string verifier disabled[ 0.000000] rcu: Preemptible hierarchical RCU implementation.[ 0.000000] rcu: RCU event tracing is enabled.[ 0.000000] Trampoline variant of Tasks RCU enabled.[ 0.000000] Tracing variant of Tasks RCU enabled.[ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.[ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16[ 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.000002] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns[ 0.000029] Switching to timer-based delay loop, resolution 41ns[ 0.001195] Console: colour dummy device 80x30[ 0.001268] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000)[ 0.001301] pid_max: default: 32768 minimum: 301[ 0.001618] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)[ 0.001653] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)[ 0.003036] CPU: Testing write buffer coherency: ok[ 0.003567] /cpus/cpu@0 missing clock-frequency property[ 0.003637] /cpus/cpu@1 missing clock-frequency property[ 0.003670] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000[ 0.005405] Setting up static identity map for 0xc0100000 - 0xc0100060[ 0.005671] rcu: Hierarchical SRCU implementation.[ 0.008100] smp: Bringing up secondary CPUs ...[ 0.009497] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001[ 0.009764] smp: Brought up 1 node, 2 CPUs[ 0.009805] SMP: Total of 2 processors activated (96.00 BogoMIPS).[ 0.009824] CPU: All CPU(s) started in SVC mode.[ 0.010806] devtmpfs: initialized[ 0.032433] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5[ 0.032846] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns[ 0.032891] futex hash table entries: 512 (order: 3, 32768 bytes, linear)[ 0.040446] pinctrl core: initialized pinctrl subsystem[ 0.043156] NET: Registered PF_NETLINK/PF_ROUTE protocol family[ 0.046675] DMA: preallocated 256 KiB pool for atomic coherent allocations[ 0.048584] thermal_sys: Registered thermal governor 'step_wise'[ 0.048965] cpuidle: using governor menu[ 0.049357] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.[ 0.049390] hw-breakpoint: maximum watchpoint size is 8 bytes.[ 0.049940] Serial: AMBA PL011 UART driver[ 0.053200] stm32-pm-domain pm_domain: domain core-ret-power-domain registered[ 0.053255] stm32-pm-domain pm_domain: subdomain core-power-domain registered[ 0.053277] stm32-pm-domain pm_domain: domains probed[ 0.087638] platform panel-rgb@0: Fixing up cyclic dependency with 5a001000.display-controller[ 0.106095] Kprobes globally optimized[ 0.121733] SCSI subsystem initialized[ 0.122736] usbcore: registered new interface driver usbfs[ 0.122827] usbcore: registered new interface driver hub[ 0.122911] usbcore: registered new device driver usb[ 0.123328] pps_core: LinuxPPS API ver. 1 registered[ 0.123349] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>[ 0.123389] PTP clock support registered[ 0.123744] EDAC MC: Ver: 3.0.0[ 0.124928] arm-scmi firmware:scmi: SCMI Notifications - Core Enabled.[ 0.125049] arm-scmi firmware:scmi: SCMI Protocol v2.0 'ST:' Firmware version 0x0[ 0.126512] Advanced Linux Sound Architecture Driver Initialized.[ 0.127690] Bluetooth: Core ver 2.22[ 0.127787] NET: Registered PF_BLUETOOTH protocol family[ 0.127806] Bluetooth: HCI device and connection manager initialized[ 0.127832] Bluetooth: HCI socket layer initialized[ 0.127852] Bluetooth: L2CAP socket layer initialized[ 0.127891] Bluetooth: SCO socket layer initialized[ 0.128960] clocksource: Switched to clocksource arch_sys_counter[ 0.222709] NET: Registered PF_INET protocol family[ 0.223093] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)[ 0.224777] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear)[ 0.224852] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)[ 0.224882] TCP established hash table entries: 4096 (order: 2, 16384 bytes, linear)[ 0.224954] TCP bind hash table entries: 4096 (order: 3, 32768 bytes, linear)[ 0.225057] TCP: Hash tables configured (established 4096 bind 4096)[ 0.225207] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)[ 0.225265] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)[ 0.225617] NET: Registered PF_UNIX/PF_LOCAL protocol family[ 0.226925] RPC: Registered named UNIX socket transport module.[ 0.226961] RPC: Registered udp transport module.[ 0.226975] RPC: Registered tcp transport module.[ 0.226988] RPC: Registered tcp NFSv4.1 backchannel transport module.[ 0.229353] hw perfevents: enabled with armv7_cortex_a7 PMU driver, 5 counters available[ 0.231542] Initialise system trusted keyrings[ 0.232045] workingset: timestamp_bits=14 max_order=17 bucket_order=3[ 0.243706] squashfs: version 4.0 (2009/01/31) Phillip Lougher[ 0.245211] NFS: Registering the id_resolver key type[ 0.245398] Key type id_resolver registered[ 0.245416] Key type id_legacy registered[ 0.245635] ntfs: driver 2.1.32 [Flags: R/O].[ 0.245943] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.[ 0.246841] fuse: init (API version 7.34)[ 0.388552] NET: Registered PF_ALG protocol family[ 0.388596] Key type asymmetric registered[ 0.388611] Asymmetric key parser 'x509' registered[ 0.388797] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)[ 0.388825] io scheduler mq-deadline registered[ 0.388840] io scheduler kyber registered[ 0.398701] reg11: supplied by regulator-dummy[ 0.399561] reg18: supplied by regulator-dummy[ 0.400029] usb33: supplied by regulator-dummy[ 0.404634] STM32 USART driver initialized[ 0.427643] brd: module loaded[ 0.438559] loop: module loaded[ 0.447889] CAN device driver interface[ 0.450335] pegasus: Pegasus/Pegasus II USB Ethernet driver[ 0.450444] usbcore: registered new interface driver pegasus[ 0.450531] usbcore: registered new interface driver asix[ 0.450616] usbcore: registered new interface driver ax88179_178a[ 0.450696] usbcore: registered new interface driver cdc_ether[ 0.450782] usbcore: registered new interface driver smsc75xx[ 0.450864] usbcore: registered new interface driver smsc95xx[ 0.450930] usbcore: registered new interface driver net1080[ 0.451013] usbcore: registered new interface driver cdc_subset[ 0.451078] usbcore: registered new interface driver zaurus[ 0.451243] usbcore: registered new interface driver cdc_ncm[ 0.452540] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver[ 0.452600] ehci-platform: EHCI generic platform driver[ 0.452879] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver[ 0.452917] ohci-platform: OHCI generic platform driver[ 0.453740] usbcore: registered new interface driver cdc_acm[ 0.453763] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters[ 0.453856] usbcore: registered new interface driver usb-storage[ 0.458291] i2c_dev: i2c /dev entries driver[ 0.462476] softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=1)[ 0.462512] softdog: soft_reboot_cmd=<not set> soft_active_on_boot=0[ 0.464460] sdhci: Secure Digital Host Controller Interface driver[ 0.464488] sdhci: Copyright(c) Pierre Ossman[ 0.464502] Synopsys Designware Multimedia Card Interface Driver[ 0.465026] sdhci-pltfm: SDHCI platform and OF driver helper[ 0.466320] ledtrig-cpu: registered to indicate activity on CPUs[ 0.466428] arm-scmi firmware:scmi: Failed. SCMI protocol 17 not active.[ 0.466683] SMCCC: SOC_ID: ID = jep106:0020:0500 Revision = 0x00002000[ 0.467619] hid: raw HID events driver (C) Jiri Kosina[ 0.467904] usbcore: registered new interface driver usbhid[ 0.467928] usbhid: USB HID core driver[ 0.476894] NET: Registered PF_PACKET protocol family[ 0.476955] can: controller area network core[ 0.477074] NET: Registered PF_CAN protocol family[ 0.477096] can: raw protocol[ 0.477114] can: broadcast manager protocol[ 0.477135] can: netlink gateway - max_hops=1[ 0.477579] Bluetooth: RFCOMM TTY layer initialized[ 0.477626] Bluetooth: RFCOMM socket layer initialized[ 0.477680] Bluetooth: RFCOMM ver 1.11[ 0.478143] lib80211: common routines for IEEE802.11 drivers[ 0.478693] Key type dns_resolver registered[ 0.478822] ThumbEE CPU extension supported.[ 0.478855] Registering SWP/SWPB emulation handler[ 0.479523] registered taskstats version 1[ 0.479562] Loading compiled-in X.509 certificates[ 0.519231] stm32-mdma 58000000.dma-controller: STM32 MDMA driver registered[ 0.522591] stm32-dma 48000000.dma-controller: no dma pool: can't use MDMA: 0[ 0.524312] stm32-dma 48000000.dma-controller: STM32 DMA driver registered[ 0.533158] stm_thermal 50028000.thermal: stm_thermal_probe: Driver initialized successfully[ 0.540358] /soc/interrupt-controller@5000d000: bank0[ 0.540416] /soc/interrupt-controller@5000d000: bank1[ 0.540447] /soc/interrupt-controller@5000d000: bank2[ 0.542491] stm32mp157-pinctrl soc:pinctrl@50002000: GPIOA bank added[ 0.543238] stm32mp157-pinctrl soc:pinctrl@50002000: GPIOB bank added[ 0.543954] stm32mp157-pinctrl soc:pinctrl@50002000: GPIOC bank added[ 0.544657] stm32mp157-pinctrl soc:pinctrl@50002000: GPIOD bank added[ 0.545412] stm32mp157-pinctrl soc:pinctrl@50002000: GPIOE bank added[ 0.546143] stm32mp157-pinctrl soc:pinctrl@50002000: GPIOF bank added[ 0.546883] stm32mp157-pinctrl soc:pinctrl@50002000: GPIOG bank added[ 0.547546] stm32mp157-pinctrl soc:pinctrl@50002000: GPIOH bank added[ 0.547627] stm32mp157-pinctrl soc:pinctrl@50002000: Pinctrl STM32 initialized[ 0.548624] stm32mp157-pinctrl soc:pinctrl@54004000: at least one GPIO bank is required[ 0.548659] stm32mp157-pinctrl: probe of soc:pinctrl@54004000 failed with error -22[ 0.550723] LCD_5V: supplied by vin[ 0.551536] wlan-en-regulator: supplied by vin[ 0.555478] stm32-usart 4000f000.serial: interrupt mode for rx (no dma)[ 0.555519] stm32-usart 4000f000.serial: interrupt mode for tx (no dma)[ 0.555558] 4000f000.serial: ttySTM1 at MMIO 0x4000f000 (irq = 49, base_baud = 4000000) is a stm32-usart[ 0.557765] stm32-usart 40010000.serial: interrupt mode for rx (no dma)[ 0.557802] stm32-usart 40010000.serial: interrupt mode for tx (no dma)[ 0.557839] 40010000.serial: ttySTM0 at MMIO 0x40010000 (irq = 50, base_baud = 4000000) is a stm32-usart[ 1.850996] printk: console [ttySTM0] enabled[ 1.857628] stm32-usart 40018000.serial: interrupt mode for rx (no dma)[ 1.863016] stm32-usart 40018000.serial: interrupt mode for tx (no dma)[ 1.869560] 40018000.serial: ttySTM3 at MMIO 0x40018000 (irq = 51, base_baud = 4000000) is a stm32-usart[ 1.881281] stm32-usart 40019000.serial: interrupt mode for rx (no dma)[ 1.886575] stm32-usart 40019000.serial: interrupt mode for tx (no dma)[ 1.893259] 40019000.serial: ttySTM2 at MMIO 0x40019000 (irq = 52, base_baud = 4000000) is a stm32-usart[ 1.909403] stm32-dwmac 5800a000.ethernet: IRQ eth_lpi not found[ 1.914981] stm32-dwmac 5800a000.ethernet: User ID: 0x40, Synopsys ID: 0x42[ 1.921142] stm32-dwmac 5800a000.ethernet: DWMAC4/5[ 1.926014] stm32-dwmac 5800a000.ethernet: DMA HW capability register supported[ 1.933440] stm32-dwmac 5800a000.ethernet: RX Checksum Offload Engine supported[ 1.940753] stm32-dwmac 5800a000.ethernet: TX Checksum insertion supported[ 1.947636] stm32-dwmac 5800a000.ethernet: Wake-Up On Lan supported[ 1.954085] stm32-dwmac 5800a000.ethernet: TSO supported[ 1.959297] stm32-dwmac 5800a000.ethernet: Enable RX Mitigation via HW Watchdog Timer[ 1.967097] stm32-dwmac 5800a000.ethernet: Enabled L3L4 Flow TC (entries=2)[ 1.974107] stm32-dwmac 5800a000.ethernet: Enabled RFS Flow TC (entries=8)[ 1.981034] stm32-dwmac 5800a000.ethernet: TSO feature enabled[ 1.986911] stm32-dwmac 5800a000.ethernet: Using 32 bits DMA width[ 2.001601] stm32_rtc 5c004000.rtc: registered as rtc0[ 2.005421] stm32_rtc 5c004000.rtc: setting system clock to 2000-01-01T01:17:06 UTC (946689426)[ 2.014794] stm32_rtc 5c004000.rtc: Date/Time must be initialized[ 2.020269] stm32_rtc 5c004000.rtc: registered rev:1.2[ 2.046020] stm32f7-i2c 40015000.i2c: using dma1chan0 (tx) and dma1chan1 (rx) for DMA transfers[ 2.054152] stm32f7-i2c 40015000.i2c: STM32F7 I2C-0 bus adapter[ 2.085185] stpmic1 1-0033: PMIC Chip Version: 0x21[ 2.093814] vddcore: supplied by vin[ 2.099105] vdd_ddr: supplied by vin[ 2.104284] vdd: supplied by vin[ 2.109173] v3v3: supplied by vin[ 2.114111] v1v8_audio: supplied by v3v3[ 2.120927] v3v3_hdmi: supplied by vin[ 2.126920] vtt_ddr: supplied by vdd_ddr[ 2.132354] vdd_usb: supplied by vin[ 2.138151] vdda: supplied by vin[ 2.143677] v1v2_hdmi: supplied by v3v3[ 2.149514] vref_ddr: supplied by vin[ 2.155209] bst_out: supplied by vin[ 2.158236] vbus_otg: supplied by bst_out[ 2.162409] vbus_sw: supplied by bst_out[ 2.171796] hwmon hwmon1: temp1_input not attached to any thermal zone[ 2.178999] rtc-ds3232 1-0068: registered as rtc1[ 2.183240] stm32f7-i2c 5c002000.i2c: STM32F7 I2C-1 bus adapter[ 2.190552] i2c i2c-0: Added multiplexed i2c bus 2[ 2.194038] i2c-mux-gpio i2cmux: 1 port mux on STM32F7 I2C(0x40015000) adapter[ 2.206163] mmci-pl18x 48004000.mmc: mmc0: PL180 manf 53 rev2 at 0x48004000 irq 38,0 (pio)[ 2.407704] mmci-pl18x 58005000.mmc: Got CD GPIO[ 2.412283] mmci-pl18x 58005000.mmc: mmc1: PL180 manf 53 rev2 at 0x58005000 irq 42,0 (pio)[ 2.433028] mmc0: queuing unknown CIS tuple 0x01 [d9 01 ff] (3 bytes)[ 2.445196] mmc0: queuing unknown CIS tuple 0x1a [01 01 00 02 07] (5 bytes)[ 2.448841] mmci-pl18x 58007000.mmc: mmc2: PL180 manf 53 rev2 at 0x58007000 irq 43,0 (pio)[ 2.454003] mmc0: queuing unknown CIS tuple 0x1b [c1 41 30 30 ff ff 32 00] (8 bytes)[ 2.467531] mmc0: queuing unknown CIS tuple 0x14 [] (0 bytes)[ 2.478559] mmc0: new high speed SDIO card at address 0001[ 2.499820] stm32-ipcc 4c001000.mailbox: ipcc rev:1.0 enabled, 6 chans, proc 0[ 2.507352] stm32-rproc 10000000.m4: IRQ index 0 not found[ 2.514121] remoteproc remoteproc0: m4 is available[ 2.520534] rfkill_gpio bt_rfkill: bt_rfkill device registered.[ 2.525980] LCD_VDD: supplied by vdd[ 2.529307] TOUCH_VDD: supplied by vdd[ 2.533575] mmc1: new high speed SDHC card at address 59b4[ 2.535152] stm32-usbphyc 5a006000.usbphyc: registered rev:1.0[ 2.539675] mmcblk1: mmc1:59b4 USDU1 14.9 GiB [ 2.551901] dwc2 49000000.usb-otg: supply vusb_d not found, using dummy regulator[ 2.558386] dwc2 49000000.usb-otg: supply vusb_a not found, using dummy regulator[ 2.574981] mmcblk1: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11[ 2.602527] mmc2: new DDR MMC card at address 0001[ 2.607338] mmcblk2: mmc2:0001 W62704 3.53 GiB [ 2.617614] mmcblk2: p1 p2 p3 p4 p5 p6 p7 p8 p9[ 2.624137] mmcblk2boot0: mmc2:0001 W62704 2.00 MiB [ 2.630956] mmcblk2boot1: mmc2:0001 W62704 2.00 MiB [ 2.637231] mmcblk2rpmb: mmc2:0001 W62704 512 KiB, chardev (240:0)[ 2.706495] dwc2 49000000.usb-otg: EPs: 9, dedicated fifos, 952 entries in SPRAM[ 2.713781] dwc2 49000000.usb-otg: DWC OTG Controller[ 2.717692] dwc2 49000000.usb-otg: new USB bus registered, assigned bus number 1[ 2.725280] dwc2 49000000.usb-otg: irq 74, io mem 0x49000000[ 2.732163] hub 1-0:1.0: USB hub found[ 2.734593] hub 1-0:1.0: 1 port detected[ 2.746472] ehci-platform 5800d000.usb: EHCI Host Controller[ 2.751093] ehci-platform 5800d000.usb: new USB bus registered, assigned bus number 2[ 2.759330] ehci-platform 5800d000.usb: irq 75, io mem 0x5800d000[ 2.789047] ehci-platform 5800d000.usb: USB 2.0 started, EHCI 1.00[ 2.795268] hub 2-0:1.0: USB hub found[ 2.797701] hub 2-0:1.0: 2 ports detected[ 2.803514] ohci-platform 5800c000.usb: Generic Platform OHCI controller[ 2.808862] ohci-platform 5800c000.usb: new USB bus registered, assigned bus number 3[ 2.817306] ohci-platform 5800c000.usb: irq 45, io mem 0x5800c000[ 2.894442] hub 3-0:1.0: USB hub found[ 2.896878] hub 3-0:1.0: 2 ports detected[ 2.904118] input: pmic_onkey as /devices/platform/soc/5c002000.i2c/i2c-1/1-0033/5c002000.i2c:stpmic@33:onkey/input/input0[ 2.919666] [drm] Initialized stm 1.0.0 20170330 for 5a001000.display-controller on minor 0[ 2.967971] Console: switching to colour frame buffer device 100x30[ 2.989844] stm32-display 5a001000.display-controller: [drm] fb0: stmdrmfb frame buffer device[ 3.000691] cfg80211: Loading compiled-in X.509 certificates for regulatory database[ 3.012330] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'[ 3.017941] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2[ 3.026262] cfg80211: failed to load regulatory.db[ 3.026718] ALSA device list:[ 3.033989] No soundcards found.[ 3.084344] EXT4-fs (mmcblk1p10): mounted filesystem with ordered data mode. Opts: (null). Quota mode: disabled.[ 3.093364] VFS: Mounted root (ext4 filesystem) on device 179:10.[ 3.100592] devtmpfs: mounted[ 3.104371] Freeing unused kernel image (initmem) memory: 1024K[ 3.119480] Run /sbin/init as init process[ 3.468579] systemd[1]: System time before build time, advancing clock.[ 3.592388] NET: Registered PF_INET6 protocol family[ 3.638925] Segment Routing with IPv6[ 3.641500] In-situ OAM (IOAM) with IPv6[ 3.703883] systemd[1]: systemd 250.5+ running in system mode (+PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK -SECCOMP -GCRYPT -GNUTLS -OPENSSL -ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN +IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -BZIP2 -LZ4 -XZ -ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=hybrid)[ 3.735467] systemd[1]: Detected architecture arm. Welcome to ST OpenSTLinux - Weston - (A Yocto Project Based Distro) 4.0.4-snapshot-20230408 (kirkstone)! [ 3.940815] systemd[1]: Hostname set to <desk-mp1>.[ 3.955676] systemd[1]: Initializing machine ID from random generator.[ 4.039778] systemd[1]: Using hardware watchdog 'Software Watchdog', version 0, device /dev/watchdog0[ 4.047762] systemd[1]: Watchdog running with a timeout of 32s.[ 6.667897] systemd[1]: /lib/systemd/system/mount-partitions.service:9: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.[ 6.711705] systemd[1]: Queued start job for default target Multi-User System.[ 6.786390] systemd[1]: Created slice Slice /system/getty.[ OK ] Created slice Slice /system/getty.[ 6.823575] systemd[1]: Created slice Slice /system/modprobe.[ OK ] Created slice Slice /system/modprobe.[ 6.863561] systemd[1]: Created slice Slice /system/serial-getty.[ OK ] Created slice Slice /system/serial-getty.[ 6.902882] systemd[1]: Created slice User and Session Slice.[ OK ] Created slice User and Session Slice.[ 6.940153] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.[ OK ] Started Dispatch Password …ts to Console Directory Watch.[ 6.979902] systemd[1]: Started Forward Password Requests to Wall Directory Watch.[ OK ] Started Forward Password R…uests to Wall Directory Watch.[ 7.020108] systemd[1]: Reached target Path Units.[ OK ] Reached target Path Units.[ 7.059486] systemd[1]: Reached target Remote File Systems.[ OK ] Reached target Remote File Systems.[ 7.099446] systemd[1]: Reached target Slice Units.[ OK ] Reached target Slice Units.[ 7.129490] systemd[1]: Reached target Swaps.[ OK ] Reached target Swaps.[ 7.197005] systemd[1]: Listening on RPCbind Server Activation Socket.[ OK ] Listening on RPCbind Server Activation Socket.[ 7.239638] systemd[1]: Reached target RPC Port Mapper.[ OK ] Reached target RPC Port Mapper.[ 7.280631] systemd[1]: Listening on Syslog Socket.[ OK ] Listening on Syslog Socket.[ 7.335740] systemd[1]: Listening on Process Core Dump Socket.[ OK ] Listening on Process Core Dump Socket.[ 7.370036] systemd[1]: Listening on initctl Compatibility Named Pipe.[ OK ] Listening on initctl Compatibility Named Pipe.[ 7.418278] systemd[1]: Journal Audit Socket was skipped because of a failed condition check (ConditionSecurity=audit).[ 7.429397] systemd[1]: Listening on Journal Socket (/dev/log).[ OK ] Listening on Journal Socket (/dev/log).[ 7.470828] systemd[1]: Listening on Journal Socket.[ OK ] Listening on Journal Socket.[ 7.511077] systemd[1]: Listening on Network Service Netlink Socket.[ OK ] Listening on Network Service Netlink Socket.[ 7.550923] systemd[1]: Listening on udev Control Socket.[ OK ] Listening on udev Control Socket.[ 7.590386] systemd[1]: Listening on udev Kernel Socket.[ OK ] Listening on udev Kernel Socket.[ 7.630620] systemd[1]: Listening on User Database Manager Socket.[ OK ] Listening on User Database Manager Socket.[ 7.670676] systemd[1]: Huge Pages File System was skipped because of a failed condition check (ConditionPathExists=/sys/kernel/mm/hugepages).[ 7.690868] systemd[1]: Mounting POSIX Message Queue File System... Mounting POSIX Message Queue File System...[ 7.737488] systemd[1]: Mounting Kernel Debug File System... Mounting Kernel Debug File System...[ 7.777328] systemd[1]: Mounting Kernel Trace File System... Mounting Kernel Trace File System...[ 7.819519] systemd[1]: Mounting Temporary Directory /tmp... Mounting Temporary Directory /tmp...[ 7.870379] systemd[1]: Starting Create List of Static Device Nodes... Starting Create List of Static Device Nodes...[ 7.918262] systemd[1]: Starting Load Kernel Module configfs... Starting Load Kernel Module configfs...[ 7.958062] systemd[1]: Starting Load Kernel Module drm... Starting Load Kernel Module drm...[ 7.998366] systemd[1]: Starting Load Kernel Module fuse... Starting Load Kernel Module fuse...[ 8.037947] systemd[1]: Starting Mount partitions... Starting Mount partitions...[ 8.085655] systemd[1]: Starting RPC Bind... Starting RPC Bind...[ 8.120141] systemd[1]: File System Check on Root Device was skipped because of a failed condition check (ConditionPathIsReadWrite=!/).[ 8.166240] systemd[1]: Starting Journal Service... Starting Journal Service...[ 8.195070] systemd[1]: Load Kernel Modules was skipped because all trigger condition checks failed.[ 8.230714] systemd[1]: Mounting NFSD configuration filesystem... Mounting NFSD configuration filesystem...[ 8.280113] systemd[1]: Starting Generate network units from Kernel command line... Starting Generate network …ts from Kernel command line...[ 8.353043] systemd[1]: Starting Remount Root and Kernel File Systems... Starting Remount Root and Kernel File Systems...[ 8.409068] systemd[1]: Starting Apply Kernel Variables... Starting Apply Kernel Variables...[ 8.475944] EXT4-fs (mmcblk1p10): re-mounted. Opts: (null). Quota mode: disabled.[ 8.503216] systemd[1]: Starting Coldplug All udev Devices... Starting Coldplug All udev Devices...[ 8.598444] systemd[1]: Started RPC Bind.[ OK ] Started RPC Bind.[ 8.631033] systemd[1]: Mounted POSIX Message Queue File System.[ OK ] Mounted POSIX Message Queue File System.[ 8.650885] systemd[1]: Mounted Kernel Debug File System.[ OK ] Mounted Kernel Debug File System.[ 8.691132] systemd[1]: Mounted Kernel Trace File System.[ OK ] Mounted Kernel Trace File System.[ 8.730449] systemd[1]: Mounted Temporary Directory /tmp.[ OK ] Mounted Temporary Directory /tmp.[ 8.773325] systemd[1]: Finished Create List of Static Device Nodes.[ OK ] Finished Create List of Static Device Nodes.[ 8.792296] systemd[1]: modprobe@configfs.service: Deactivated successfully.[ 8.812024] EXT4-fs (mmcblk1p8): mounted filesystem with ordered data mode. Opts: (null). Quota mode: disabled.[ 8.821503] systemd[1]: Finished Load Kernel Module configfs.[ OK ] Finished Load Kernel Module configfs.[ 8.840643] systemd[1]: Started Journal Service.[ OK ] Started Journal Service.[ OK ] Finished Load Kernel Module drm.[ OK ] Finished Load Kernel Module fuse.[FAILED] Failed to mount NFSD configuration filesystem.See 'systemctl status proc-fs-nfsd.mount' for details.[DEPEND] Dependency failed for NFS server and services.[DEPEND] Dependency failed for NFS Mount Daemon.[ OK ] Finished Generate network units from Kernel command line.[ OK ] Finished Remount Root and Kernel File Systems.[ OK ] Finished Apply Kernel Variables. Mounting FUSE Control File System... Mounting Kernel Configuration File System...[ OK ] Started Starts Psplash Boot screen.[ 9.369825] EXT4-fs (mmcblk1p9): mounted filesystem with ordered data mode. Opts: (null). Quota mode: disabled. Starting Flush Journal to Persistent Storage... Starting Create[ 9.498091] systemd-journald[603]: Received client request to flush runtime journal. System Users...[ OK ] Mounted FUSE Control File System.[ OK ] Mounted Kernel Configuration File System.[ OK ] Finished Flush Journal to Persistent Storage.[ OK ] Finished Create System Users. Starting Create Static Device Nodes in /dev...[ 9.856101] EXT4-fs (mmcblk1p11): mounted filesystem with ordered data mode. Opts: (null). Quota mode: disabled.[ OK ] Finished Mount partitions.[ OK ] Finished Create Static Device Nodes in /dev.[ OK ] Reached target Preparation for Local File Systems. Mounting /var/volatile... Starting Resize root files…to fit available disk space... Starting Rule-based Manage…for Device Events and Files...[ OK ] Mounted /var/volatile. Starting Load/Save Random Seed...[ OK ] Started Rule-based Manager for Device Events and Files.[ OK ] Finished Coldplug All udev Devices. Starting Wait for udev To …plete Device Initialization...[ OK ] Created slice Slice /system/systemd-backlight. Starting Load/Save Screen …ness of backlight:backlight...[ OK ] Finished Load/Save Screen …htness of backlight:backlight.[ 12.162114] wlan: loading out-of-tree module taints kernel.[ 12.302130] Galcore version 6.4.9.436021[ 13.465162] using random self ethernet address[ 13.468256] using random host ethernet address[ 13.812041] usb0: HOST MAC 5c:c0:78:d3:5c:60[ 13.814935] usb0: MAC 86:80:fd:a1:db:63[ 13.854235] dwc2 49000000.usb-otg: bound driver configfs-gadget[ 13.859057] random: crng init done[ OK ] Finished Load/Save Random Seed.[ 14.038386] dwc2 49000000.usb-otg: new device is high-speed[ 14.072449] dwc2 49000000.usb-otg: new address 39[ 14.126410] wlan: loading driver v4.5.25.46[ 14.162882] hifDeviceInserted: Dumping clocks (50000000,99000000)[ 14.412522] [TELIT] Using WE866C6 board data. [ 14.524974] ol_download_firmware: chip_id:0x5020001 board_id:0x0[ 14.553604] __ol_transfer_bin_file: Failed to get bdwlan30_c6.b00:-2[ 14.558611] __ol_transfer_bin_file: Trying to load default bdwlan30_c6.bin[ 14.646945] __ol_transfer_bin_file: Loading setup file qsetup30.bin[ 14.663241] __ol_transfer_bin_file: Failed to get qsetup30.bin:-2[ 14.819133] IPv6: ADDRCONF(NETDEV_CHANGE): usb0: link becomes ready[ 15.373085] R0: wlan: [751:E :SAP] dfs_init_radar_filters[217]: Unknown dfs domain 0 [ 15.576912] Host SW:4.5.25.46, FW:0.0.0.111, HW:QCA93x7_REV1_1[ 15.598824] ENTER sme_set_btc_coex_dutycycle = 30[ 15.598862] ENTER sme_set_btc_coex_dutycycle =30[ 15.607920] ath_hif_sdio: HIF (Atheros/multi-bss)[ 15.617314] wlan: driver loaded in 1490000[ OK ] Finished Wait for udev To Complete Device Initialization.[ OK ] Reached target Hardware activated USB gadget.[ 16.363425] EXT4-fs (mmcblk1p10): resizing filesystem from 264203 to 1048576 blocks[ OK ] Listening on Load/Save RF …itch Status /dev/rfkill Watch. Starting Load/Save RF Kill Switch Status...[ OK ] Started Load/Save RF Kill Switch Status.[ *** ] A start job is running for Resize r…ilable disk space (22s / no limit)[ ***] A start job is running for Resize r…ilable disk space (23s / no limit)[ 29.912763] EXT4-fs (mmcblk1p8): resizing filesystem from 65536 to 65536 blocks[ 29.941441] EXT4-fs (mmcblk1p9): resizing filesystem from 16384 to 16384 blocks[ *** ] A start job is running for Resize r…ilable disk space (25s / no limit)[ **] A start job is running for Resize r…ilable disk space (32s / no limit)[*** ] A start job is running for Resize r…ilable disk space (44s / no limit)[ ***] A start job is running for Resize r…ilable disk space (54s / no limit)[ *** ] A start job is running for Resize r…le disk space (1min 9s / no limit)[ ***] A start job is running for Resize r…e disk space (1min 22s / no limit)[ **] A start job is running for Resize r…e disk space (1min 35s / no limit)[* ] A start job is running for Resize r…e disk space (1min 46s / no limit)[ **] A start job is running for Resize r…e disk space (1min 56s / no limit)[** ] A start job is running for Resize r…le disk space (2min 7s / no limit)[ *** ] A start job is running for Resize r…e disk space (2min 19s / no limit)[ **] A start job is running for Resize r…e disk space (2min 32s / no limit)[ ***] A start job is running for Resize r…e disk space (2min 44s / no limit)[** ] A start job is running for Resize r…e disk space (2min 56s / no limit)[** ] A start job is running for Resize r…le disk space (3min 9s / no limit)[ *** ] A start job is running for Resize r…e disk space (3min 18s / no limit)[ OK ] Finished Resize root files…m to fit available disk space.[ OK ] Reached target Local File Systems. Starting Rebuild Dynamic Linker Cache... Starting Create Volatile Files and Directories...[ OK ] Finished Create Volatile Files and Directories.[ OK ] Started Hardware RNG Entropy Gatherer Daemon. Starting Rebuild Journal Catalog... Starting Network Time Synchronization... Starting Record System Boot/Shutdown in UTMP...[ OK ] Finished Record System Boot/Shutdown in UTMP.[ OK ] Finished Rebuild Journal Catalog.[ OK ] Started Network Time Synchronization.[ OK ] Reached target System Time Set.[ OK ] Finished Rebuild Dynamic Linker Cache. Starting Update is Completed...[ OK ] Finished Update is Completed.[ OK ] Reached target System Initialization.[ OK ] Started Daily rotation of log files.[ OK ] Started Daily Cleanup of Temporary Directories.[ OK ] Reached target Timer Units.[ OK ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.[ OK ] Listening on D-Bus System Message Bus Socket.[ OK ] Listening on dropbear.socket.[ OK ] Reached target Socket Units.[ OK ] Reached target Basic System.[ OK ] Started Job spooling tools.[ OK ] Started Periodic Command Scheduler. Starting D-Bus System Message Bus... Starting IPv6 Packet Filtering Framework... Starting IPv4 Packet Filtering Framework... Starting Hold until boot process finishes up...[ OK ] Started System Logging Service. Starting Resets System Activity Logs... Starting User Login Management...[ OK ] Started D-Bus System Message Bus.[ OK ] Finished IPv6 Packet Filtering Framework.[ OK ] Finished IPv4 Packet Filtering Framework.[ OK ] Finished Hold until boot process finishes up.[ OK ] Finished Resets System Activity Logs.[ OK ] Reached target Preparation for Network. Starting Network Configuration... Starting Check if the gpu …orrect weston configuration...[ OK ] Started User Login Management. Starting Userfs cleanup package...[ OK ] Finished Check if the gpu … correct weston configuration.[ OK ] Finished Userfs cleanup package.[ OK ] Started Network Configuration. Starting Network Name Resolution...[ OK ] Started Network Name Resolution.[ OK ] Reached target Network.[ OK ] Reached target Host and Network Name Lookups. Starting Avahi mDNS/DNS-SD Stack...[ OK ] Started IIO Daemon. Starting Real time performance monitoring...[ OK ] Started NFS status monitor for NFSv2/3 locking..[ OK ] Started Respond to IPv6 Node Information Queries.[ OK ] Started Network Router Discovery Daemon. Starting Permit User Sessions... Starting Target Communication Framework agent...[ OK ] Started Xinetd A Powerful Replacement For Inetd.[ OK ] Finished Permit User Sessions.[ OK ] Started Target Communication Framework agent.[ OK ] Started Real time performance monitoring.[ OK ] Started Avahi mDNS/DNS-SD Stack.[ OK ] Started Getty on tty1.[ OK ] Started Serial Getty on ttySTM0.[ OK ] Reached target Login Prompts.[ OK ] Started Weston, a Wayland …mpositor, as a screenshotsystem service.[ OK ] Reached target Multi-User System. Starting Record Runlevel Change in UTMP... Starting User Database Manager...[ OK ] Finished Record Runlevel Change in UTMP.[ OK ] Started User Database Manager. ST OpenSTLinux - Weston - (A Yocto Project Based Distro) 4.0.4-snapshot desk-mp1 ttySTM0 desk-mp1 login: root (automatic login)
alias: gawkpath_default not found
alias: gawkpath_prepend not found
alias: gawkpath_append not found
alias: gawklibpath_default not found
alias: gawklibpath_prepend not found
alias: gawklibpath_append not found
root@desk-mp1:~#
</pre>
----
[[Category:ETRA]]
dave_user
226
edits