Код: Выделить всё
boot.img
init_boot.img
bootloader
super.img
userdata.img
vbmeta.img
vbmeta_system.img
vendor_boot.img
Мой подход заключался в создании одного необработанного образа диска с таблицей разделов GPT. Я пытался распаковать boot.img, чтобы получить ядро и initramfs, а затем записать vbmeta.img, vbmeta_system.img, super.img и userdata.img в разные разделы необработанного образа диска.
Однако система всегда не загружается, когда я пытаюсь запустить ее с помощью QEMU. Я хочу загрузить ядро напрямую, а не использовать предоставленный загрузчик.
Как мне отладить процесс загрузки, чтобы найти основную причину сбоя? Есть ли лучший или более стандартный способ сделать это?
Код: Выделить всё
./startup-workspace/startup.sh
+ KERNEL=startup-workspace/kernel/kernel
+ INITRD=startup-workspace/initramfs/ramdisk.cpio
+ DISK=startup-workspace/devices/disk.img
+ qemu-system-aarch64 -M virt,gic_version=3 -cpu cortex-a57 -smp 4 -m 4096 -kernel startup-workspace/kernel/kernel -initrd startup-workspace/initramfs/ramdisk.cpio -drive file=startup-workspace/devices/disk.img,format=raw,if=none,id=disk0 -device virtio-blk-pci,drive=disk0,bootindex=0 -device virtio-rng-pci -nographic -append 'console=ttyAMA0 androidboot.hardware=cutf androidboot.selinux=permissive root=/dev/ram0 androidboot.serialconsole=1 androidboot.boot_devices=pci0000:00/0000:00:02.0 androidboot.dynamic_partitions=true'
[ 0.000000][ T0] Booting Linux on physical CPU 0x0000000000 [0x411fd070]
[ 0.000000][ T0] Linux version 5.15.41-android13-8-00029-g24d27dff64c4-ab9178016 (build-user@build-host) (Android (8508608, based on r450784e) clang version 14.0.7 (https://android.googlesource.com/toolchain/llvm-project 4c603efb0cca074e9238af8b4106c30add4418f6), LLD 14.0.7) #1 SMP PREEMPT Fri Oct 14 19:05:44 UTC 2022
[ 0.000000][ T0] Machine model: linux,dummy-virt
[ 0.000000][ T0] Stack Depot is disabled
[ 0.000000][ T0] KVM is not available. Ignoring kvm-arm.mode
[ 0.000000][ T0] efi: UEFI not found.
[ 0.000000][ T0] Zone ranges:
[ 0.000000][ T0] DMA32 [mem 0x0000000040000000-0x00000000ffffffff]
[ 0.000000][ T0] Normal [mem 0x0000000100000000-0x000000013fffffff]
[ 0.000000][ T0] Movable zone start for each node
[ 0.000000][ T0] Early memory node ranges
[ 0.000000][ T0] node 0: [mem 0x0000000040000000-0x000000013fffffff]
[ 0.000000][ T0] Initmem setup node 0 [mem 0x0000000040000000-0x000000013fffffff]
[ 0.000000][ T0] cma: Reserved 16 MiB at 0x00000000ff000000
[ 0.000000][ T0] psci: probing for conduit method from DT.
[ 0.000000][ T0] psci: PSCIv1.1 detected in firmware.
[ 0.000000][ T0] psci: Using standard PSCI v0.2 function IDs
[ 0.000000][ T0] psci: Trusted OS migration not required
[ 0.000000][ T0] psci: SMC Calling Convention v1.0
[ 0.000000][ T0] percpu: Embedded 29 pages/cpu s81472 r8192 d29120 u118784
[ 0.000000][ T0] Detected PIPT I-cache on CPU0
[ 0.000000][ T0] CPU features: SYS_ID_AA64MMFR1_EL1[11:8]: already set to 0
[ 0.000000][ T0] CPU features: detected: GIC system register CPU interface
[ 0.000000][ T0] CPU features: detected: Spectre-v2
[ 0.000000][ T0] CPU features: detected: Spectre-v3a
[ 0.000000][ T0] CPU features: detected: Spectre-v4
[ 0.000000][ T0] CPU features: detected: Spectre-BHB
[ 0.000000][ T0] CPU features: kernel page table isolation forced ON by KASLR
[ 0.000000][ T0] CPU features: detected: Kernel page table isolation (KPTI)
[ 0.000000][ T0] CPU features: detected: ARM erratum 834220
[ 0.000000][ T0] CPU features: detected: ARM erratum 832075
[ 0.000000][ T0] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[ 0.000000][ T0] Built 1 zonelists, mobility grouping on. Total pages: 1032192
[ 0.000000][ T0] Kernel command line: stack_depot_disable=on kasan.stacktrace=off kvm-arm.mode=protected cgroup_disable=pressure console=ttyAMA0 androidboot.hardware=cutf androidboot.selinux=permissive root=/dev/ram0 androidboot.serialconsole=1 androidboot.boot_devices=pci0000:00/0000:00:02.0 androidboot.dynamic_partitions=true
[ 0.000000][ T0] cgroup: Disabling pressure control group feature
[ 0.000000][ T0] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.000000][ T0] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.000000][ T0] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.000000][ T0] software IO TLB: mapped [mem 0x00000000fb000000-0x00000000ff000000] (64MB)
[ 0.000000][ T0] Memory: 3938468K/4194304K available (26816K kernel code, 2402K rwdata, 16544K rodata, 2496K init, 591K bss, 239452K reserved, 16384K cma-reserved)
[ 0.000000][ T0] random: get_random_u64 called from kmem_cache_open+0x2c/0x38c with crng_init=0
[ 0.000000][ T0] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.000000][ T0] trace event string verifier disabled
[ 0.000000][ T0] rcu: Preemptible hierarchical RCU implementation.
[ 0.000000][ T0] rcu: RCU event tracing is enabled.
[ 0.000000][ T0] rcu: RCU dyntick-idle grace-period acceleration is enabled.
[ 0.000000][ T0] rcu: RCU restricting CPUs from NR_CPUS=32 to nr_cpu_ids=4.
[ 0.000000][ T0] rcu: RCU priority boosting: priority 1 delay 500 ms.
[ 0.000000][ T0] Trampoline variant of Tasks RCU enabled.
[ 0.000000][ T0] Tracing variant of Tasks RCU enabled.
[ 0.000000][ T0] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[ 0.000000][ T0] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[ 0.000000][ T0] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[ 0.000000][ T0] GICv3: 256 SPIs implemented
[ 0.000000][ T0] GICv3: 0 Extended SPIs implemented
[ 0.000000][ T0] GICv3: Distributor has no Range Selector support
[ 0.000000][ T0] Root IRQ handler: gic_handle_irq.33676.cfi_jt
[ 0.000000][ T0] GICv3: 16 PPIs implemented
[ 0.000000][ T0] GICv3: CPU0: found redistributor 0 region 0:0x00000000080a0000
[ 0.000000][ T0] ITS [mem 0x08080000-0x0809ffff]
[ 0.000000][ T0] ITS@0x0000000008080000: allocated 8192 Devices @1000d0000 (indirect, esz 8, psz 64K, shr 1)
[ 0.000000][ T0] ITS@0x0000000008080000: allocated 8192 Interrupt Collections @1000e0000 (flat, esz 8, psz 64K, shr 1)
[ 0.000000][ T0] GICv3: using LPI property table @0x00000001000f0000
[ 0.000000][ T0] GICv3: CPU0: using allocated LPI pending table @0x0000000100100000
[ 0.000000][ T0] rcu: Offload RCU callbacks from CPUs: (none).
[ 0.000000][ T0] kfence: initialized - using 524288 bytes for 63 objects at 0x(____ptrval____)-0x(____ptrval____)
[ 0.000000][ T0] arch_timer: cp15 timer(s) running at 62.50MHz (virt).
[ 0.000000][ T0] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x1cd42e208c, max_idle_ns: 881590405314 ns
[ 0.000298][ T0] sched_clock: 56 bits at 62MHz, resolution 16ns, wraps every 4398046511096ns
[ 0.039025][ T0] Calibrating delay loop (skipped), value calculated using timer frequency.. 125.00 BogoMIPS (lpj=250000)
[ 0.042006][ T0] pid_max: default: 32768 minimum: 301
[ 0.048195][ T0] LSM: Security Framework initializing
[ 0.054556][ T0] SELinux: Initializing.
[ 0.070468][ T0] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.070933][ T0] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.235790][ T1] /cpus/cpu-map: empty cluster
[ 0.313070][ T1] rcu: Hierarchical SRCU implementation.
[ 0.369418][ T1] dyndbg: Ignore empty _ddebug table in a CONFIG_DYNAMIC_DEBUG_CORE build
[ 0.372916][ T1] Platform MSI: its@8080000 domain created
[ 0.375183][ T1] PCI/MSI: /intc@8000000/its@8080000 domain created
[ 0.377821][ T1] EFI services will not be available.
[ 0.389868][ T1] smp: Bringing up secondary CPUs ...
[ 0.421002][ T0] Detected PIPT I-cache on CPU1
[ 0.429036][ T0] GICv3: CPU1: found redistributor 1 region 0:0x00000000080c0000
[ 0.432464][ T0] GICv3: CPU1: using allocated LPI pending table @0x0000000100110000
[ 0.439880][ T0] CPU1: Booted secondary processor 0x0000000001 [0x411fd070]
[ 0.508639][ T0] Detected PIPT I-cache on CPU2
[ 0.509305][ T0] GICv3: CPU2: found redistributor 2 region 0:0x00000000080e0000
[ 0.512354][ T0] GICv3: CPU2: using allocated LPI pending table @0x0000000100120000
[ 0.521171][ T0] CPU2: Booted secondary processor 0x0000000002 [0x411fd070]
[ 0.549001][ T0] Detected PIPT I-cache on CPU3
[ 0.549659][ T0] GICv3: CPU3: found redistributor 3 region 0:0x0000000008100000
[ 0.552695][ T0] GICv3: CPU3: using allocated LPI pending table @0x0000000100130000
[ 0.563806][ T0] CPU3: Booted secondary processor 0x0000000003 [0x411fd070]
[ 0.572507][ T1] smp: Brought up 1 node, 4 CPUs
[ 0.574544][ T1] SMP: Total of 4 processors activated.
[ 0.575655][ T1] CPU features: detected: 32-bit EL0 Support
[ 0.576068][ T1] CPU features: detected: 32-bit EL1 Support
[ 0.577500][ T1] CPU features: detected: CRC32 instructions
[ 0.620927][ T1] CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching
[ 1.951824][ T1] CPU: All CPU(s) started at EL1
[ 1.955581][ T18] alternatives: patching kernel code
[ 2.168923][ T1] Registered cp15_barrier emulation handler
[ 2.169923][ T1] Registered setend emulation handler
[ 2.171037][ T1] KASLR enabled
[ 2.178460][ T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 2.179709][ T1] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[ 2.216479][ T1] pinctrl core: initialized pinctrl subsystem
[ 2.307722][ T1] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 2.401248][ T1] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
[ 2.408246][ T1] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 2.410130][ T1] audit: initializing netlink subsys (disabled)
[ 2.434862][ T43] audit: type=2000 audit(2.160:1): state=initialized audit_enabled=0 res=1
[ 2.505355][ T1] thermal_sys: Registered thermal governor 'step_wise'
[ 2.506114][ T1] thermal_sys: Registered thermal governor 'user_space'
[ 2.506604][ T1] thermal_sys: Registered thermal governor 'power_allocator'
[ 2.520117][ T1] cpuidle: using governor menu
[ 2.534259][ T1] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[ 2.544788][ T1] ASID allocator initialised with 32768 entries
[ 2.562238][ T1] Serial: AMBA PL011 UART driver
[ 2.894428][ T1] 9000000.pl011: ttyAMA0 at MMIO 0x9000000 (irq = 47, base_baud = 0) is a PL011 rev1
[ 3.023146][ T1] printk: console [ttyAMA0] enabled
[ 3.476599][ T50] cryptomgr_test (50) used greatest stack depth: 14944 bytes left
[ 3.486701][ T52] cryptomgr_test (52) used greatest stack depth: 14672 bytes left
[ 3.848408][ T1] iommu: Default domain type: Translated
[ 3.850254][ T1] iommu: DMA domain TLB invalidation policy: strict mode
[ 3.885178][ T1] SCSI subsystem initialized
[ 3.910632][ T1] mc: Linux media interface: v0.10
[ 3.912689][ T1] videodev: Linux video capture interface: v2.00
[ 3.920184][ T1] pps_core: LinuxPPS API ver. 1 registered
[ 3.921299][ T1] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti
[ 3.923936][ T1] PTP clock support registered
[ 3.926429][ T1] EDAC MC: Ver: 3.0.0
[ 3.964760][ T1] Advanced Linux Sound Architecture Driver Initialized.
[ 4.036509][ T1] Bluetooth: Core ver 2.22
[ 4.038439][ T1] NET: Registered PF_BLUETOOTH protocol family
[ 4.066182][ T1] nfc: nfc_init: NFC Core ver 0.1
[ 4.072817][ T1] NET: Registered PF_NFC protocol family
[ 4.105572][ T1] clocksource: Switched to clocksource arch_sys_counter
[ 5.121650][ T1] VFS: Disk quotas dquot_6.6.0
[ 5.123140][ T1] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 5.145845][ T1] NET: Registered PF_INET protocol family
[ 5.154509][ T1] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 5.195924][ T1] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[ 5.199607][ T1] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 5.204478][ T1] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
[ 5.207796][ T1] TCP: Hash tables configured (established 32768 bind 32768)
[ 5.217097][ T1] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 5.219499][ T1] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 5.228159][ T1] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 5.233837][ T1] NET: Registered PF_XDP protocol family
[ 5.235765][ T1] PCI: CLS 0 bytes, default 64
[ 5.306851][ T1] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[ 5.320230][ T1] kvm [1]: HYP mode not available
[ 5.349923][ T9] Trying to unpack rootfs image as initramfs...
[ 5.487978][ T1] Initialise system trusted keyrings
[ 5.508012][ T1] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[ 5.791534][ T1] fuse: init (API version 7.36)
[ 6.005676][ T1] Key type asymmetric registered
[ 6.007441][ T1] Asymmetric key parser 'x509' registered
[ 6.013126][ T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 239)
[ 6.018211][ T1] io scheduler mq-deadline registered
[ 6.019483][ T1] io scheduler kyber registered
[ 6.025494][ T1] io scheduler bfq registered
[ 6.098444][ T1] pl061_gpio 9030000.pl061: PL061 GPIO chip registered
[ 6.112401][ T1] pci-host-generic 4010000000.pcie: host bridge /pcie@10000000 ranges:
[ 6.119540][ T1] pci-host-generic 4010000000.pcie: IO 0x003eff0000..0x003effffff -> 0x0000000000
[ 6.125358][ T1] pci-host-generic 4010000000.pcie: MEM 0x0010000000..0x003efeffff -> 0x0010000000
[ 6.127090][ T1] pci-host-generic 4010000000.pcie: MEM 0x8000000000..0xffffffffff -> 0x8000000000
[ 6.132373][ T1] pci-host-generic 4010000000.pcie: Memory resource size exceeds max for 32 bits
[ 6.138547][ T1] pci-host-generic 4010000000.pcie: ECAM at [mem 0x4010000000-0x401fffffff] for [bus 00-ff]
[ 6.149523][ T1] pci-host-generic 4010000000.pcie: PCI host bridge to bus 0000:00
[ 6.152031][ T1] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 6.154256][ T1] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
[ 6.155440][ T1] pci_bus 0000:00: root bus resource [mem 0x10000000-0x3efeffff]
[ 6.156551][ T1] pci_bus 0000:00: root bus resource [mem 0x8000000000-0xffffffffff]
[ 6.171815][ T1] pci 0000:00:00.0: [1b36:0008] type 00 class 0x060000
[ 6.208110][ T1] pci 0000:00:01.0: [1af4:1000] type 00 class 0x020000
[ 6.211596][ T1] pci 0000:00:01.0: reg 0x10: [io 0x0000-0x001f]
[ 6.213369][ T1] pci 0000:00:01.0: reg 0x14: [mem 0x00000000-0x00000fff]
[ 6.215219][ T1] pci 0000:00:01.0: reg 0x20: [mem 0x00000000-0x00003fff 64bit pref]
[ 6.217768][ T1] pci 0000:00:01.0: reg 0x30: [mem 0x00000000-0x0003ffff pref]
[ 6.224478][ T1] pci 0000:00:02.0: [1af4:1001] type 00 class 0x010000
[ 6.226335][ T1] pci 0000:00:02.0: reg 0x10: [io 0x0000-0x007f]
[ 6.227389][ T1] pci 0000:00:02.0: reg 0x14: [mem 0x00000000-0x00000fff]
[ 6.228666][ T1] pci 0000:00:02.0: reg 0x20: [mem 0x00000000-0x00003fff 64bit pref]
[ 6.234911][ T1] pci 0000:00:03.0: [1af4:1005] type 00 class 0x00ff00
[ 6.236132][ T1] pci 0000:00:03.0: reg 0x10: [io 0x0000-0x001f]
[ 6.237635][ T1] pci 0000:00:03.0: reg 0x14: [mem 0x00000000-0x00000fff]
[ 6.238894][ T1] pci 0000:00:03.0: reg 0x20: [mem 0x00000000-0x00003fff 64bit pref]
[ 6.273734][ T1] pci 0000:00:01.0: BAR 6: assigned [mem 0x10000000-0x1003ffff pref]
[ 6.277550][ T1] pci 0000:00:01.0: BAR 4: assigned [mem 0x8000000000-0x8000003fff 64bit pref]
[ 6.280137][ T1] pci 0000:00:02.0: BAR 4: assigned [mem 0x8000004000-0x8000007fff 64bit pref]
[ 6.282368][ T1] pci 0000:00:03.0: BAR 4: assigned [mem 0x8000008000-0x800000bfff 64bit pref]
[ 6.283724][ T1] pci 0000:00:01.0: BAR 1: assigned [mem 0x10040000-0x10040fff]
[ 6.285424][ T1] pci 0000:00:02.0: BAR 1: assigned [mem 0x10041000-0x10041fff]
[ 6.287262][ T1] pci 0000:00:03.0: BAR 1: assigned [mem 0x10042000-0x10042fff]
[ 6.289428][ T1] pci 0000:00:02.0: BAR 0: assigned [io 0x1000-0x107f]
[ 6.290685][ T1] pci 0000:00:01.0: BAR 0: assigned [io 0x1080-0x109f]
[ 6.292276][ T1] pci 0000:00:03.0: BAR 0: assigned [io 0x10a0-0x10bf]
[ 6.380254][ T20] cacheinfo: Unable to detect cache hierarchy for CPU 0
[ 13.772529][ T1] BPF:[129678] ENUM (anon)
[ 13.776343][ T1] BPF:size=4 vlen=16
[ 13.778574][ T1] BPF:
[ 13.779637][ T1] BPF:Invalid name
[ 13.781318][ T1] BPF:
[ 13.781318][ T1]
[ 13.782900][ T1] failed to validate module [e1000] BTF: -22
[ 13.794884][ T1] e1000: Intel(R) PRO/1000 Network Driver
[ 13.796446][ T1] e1000: Copyright (c) 1999-2006 Intel Corporation.
[ 13.939806][ T1] goldfish_address_space: loading out-of-tree module taints kernel.
[ 16.623542][ T1] BPF: type_id=1508 bits_offset=320
[ 16.625630][ T1] BPF:
[ 16.626489][ T1] BPF:Invalid name
[ 16.627493][ T1] BPF:
[ 16.627493][ T1]
[ 18.786607][ T1] failed to validate module [vhci_hcd] BTF: -22
[ 19.148282][ T1] BPF: type_id=129722 bits_offset=2880
[ 19.150620][ T1] BPF:
[ 19.151477][ T1] BPF:Invalid name
[ 19.152467][ T1] BPF:
[ 19.152467][ T1]
[ 19.154387][ T1] failed to validate module [virt_wifi] BTF: -22
[ 19.470128][ T1] BPF: type_id=23129 bits_offset=64
[ 19.471613][ T1] BPF:
[ 19.472457][ T1] BPF:Invalid name
[ 19.474046][ T1] BPF:
[ 19.474046][ T1]
[ 19.475363][ T1] failed to validate module [virtio_gpu] BTF: -22
[ 19.999616][ T1] BPF:[129761] FUNC
[ 20.001719][ T1] BPF:type_id=72535
[ 20.002870][ T1] BPF:
[ 20.003708][ T1] BPF:Invalid name
[ 20.005220][ T1] BPF:
[ 20.005220][ T1]
[ 20.006458][ T1] failed to validate module [virtio_console] BTF: -22
[ 20.467840][ T1] BPF: type_id=25 bits_offset=192
[ 20.469936][ T1] BPF:
[ 20.470790][ T1] BPF:Invalid name
[ 20.471771][ T1] BPF:
[ 20.471771][ T1]
[ 20.473561][ T1] failed to validate module [virtio_net] BTF: -22
[ 20.620301][ T1] init: Loaded kernel module /lib/modules/virtio_pci_modern_dev.ko
[ 20.632050][ T1] init: Loading module /lib/modules/virtio_pci.ko with args ''
[ 20.733332][ T1] virtio-pci 0000:00:01.0: enabling device (0000 -> 0003)
[ 20.897484][ T1] virtio-pci 0000:00:02.0: enabling device (0000 -> 0003)
[ 21.097175][ T1] virtio_blk virtio1: [vda] 27467776 512-byte logical blocks (14.1 GB/13.1 GiB)
[ 21.198298][ T1] vda: vda1 vda2
[ 21.225623][ T1] virtio-pci 0000:00:03.0: enabling device (0000 -> 0003)
[ 21.273806][ T1] init: Loaded kernel module /lib/modules/virtio_pci.ko
[ 21.278302][ T155] random: fast init done
[ 21.284508][ T1] init: Loading module /lib/modules/virtio_pmem.ko with args ''
[ 21.300091][ T155] random: crng init done
[ 21.388596][ T1] init: Loaded kernel module /lib/modules/virtio_pmem.ko
[ 21.407667][ T1] init: Loading module /lib/modules/virtio_snd.ko with args ''
[ 21.516443][ T1] BPF: type_id=129678 bits_offset=0
[ 21.518842][ T1] BPF:
[ 21.520187][ T1] BPF:Invalid name
[ 21.523035][ T1] BPF:
[ 21.523035][ T1]
[ 21.525932][ T1] failed to validate module [virtio_snd] BTF: -22
[ 21.548366][ T1] init: Loaded kernel module /lib/modules/virtio_snd.ko
[ 21.567997][ T1] init: Loading module /lib/modules/vkms.ko with args ''
[ 21.655387][ T1] BPF: type_id=23129 bits_offset=0
[ 21.657723][ T1] BPF:
[ 21.658589][ T1] BPF:Invalid name
[ 21.659593][ T1] BPF:
[ 21.659593][ T1]
[ 21.661561][ T1] failed to validate module [vkms] BTF: -22
[ 21.791712][ T1] [drm] Initialized vkms 1.0.0 20180514 for vkms on minor 0
[ 21.799014][ T1] init: Loaded kernel module /lib/modules/vkms.ko
[ 21.811862][ T1] init: Loading module /lib/modules/vmw_vsock_virtio_transport.ko with args ''
[ 22.209549][ T1] zram: Added device: zram0
[ 22.618041][ T1] printk: init: 97 output lines suppressed due to ratelimiting
[ 24.583640][ T1] init: [libfs_mgr]Error updating for slotselect
[ 24.588502][ T1] init: [libfs_mgr]ReadFstabFromFile(): failed to load fstab from : '/etc/recovery.fstab'
[ 24.593531][ T1] init: [libfs_mgr]ReadDefaultFstab(): failed to find device default fstab
[ 24.596432][ T1] init: Could not read default fstab
[ 24.630396][ T1] init: Could not find mount entry for /system
Подробнее здесь: https://stackoverflow.com/questions/797 ... cuttlefish
Мобильная версия