Linux 커널 오류 "작업 초기화를 찾을 수 없습니다"

Linux 커널 오류 "작업 초기화를 찾을 수 없습니다"

현재 저는 맞춤형 기기에 대한 Android 업데이트 작업을 진행 중입니다. Android 7.1.2(u-boot 2015.07 Linux 커널 4.5 포함)로 실행되는 것으로 알려진 Android 4.3(u-boot 2015.04 및 Linux 커널 3.2 포함)에서 업데이트되었습니다. u-boot 2015.07 및 Linux 커널 4.5는 맞춤형 장치에서 실행되는 것으로 알려져 있습니다. u-boot 및 Linux 커널을 Android 7.1.2에 통합하면 Linux 커널이 부팅되지 않습니다.

로그는 다음과 같습니다.

[    3.667772] sr_init: No PMIC hook to init smartreflex
[    3.673780] sr_init: platform driver register failed for SR
[    3.716721] vdd5_reg: disabling
[    3.720220] regulator-wl18xx-wl-en: disabling
[    3.724826] regulator-wl18xx-bt-en: disabling
[    3.959011] usb 2-1: new high-speed USB device number 2 using musb-hdrc
[    4.099854] usb 2-1: New USB device found, idVendor=0424, idProduct=2513
[    4.106939] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.120895] hub 2-1:1.0: USB hub found
[    4.126728] hub 2-1:1.0: 3 ports detected
[    4.311994] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
[    4.320977] VFS: Mounted root (ext4 filesystem) on device 179:2.
[    4.331395] devtmpfs: error mounting -2
[    4.336827] Freeing unused kernel memory: 452K (c09b5000 - c0a26000)
[    4.348323] Starting init: /etc/init exists but couldn't execute it (error -13)
[    4.377888] Kernel panic - not syncing: No working init found.  Try passing init= option to kernel. See Linux Documentation/init.txt for guidance.
[    4.391965] ---[ end Kernel panic - not syncing: No working init found.  Try passing init= option to kernel. See Linux Documentation/init.txt for guidance.
[   77.048831] random: nonblocking pool is initialized

루트 파일 시스템(레이블이 있는 시스템)은 ext4 형식입니다. 커널이 빌드되면 /bin/sh 및 /etc/init/가 있지만 /sbin/ 폴더 및 /bin/init /etc/init 파일은 없습니다. 누구나 파일을 실행할 수 있도록 권한을 변경해 보았지만 작동하지 않았습니다. 이게 무슨 문제인지 아는 사람 있나요?

편집: 주요 문제는 파일 시스템이 마운트되지 않았다는 것입니다.

[    4.295699] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
[    4.304608] VFS: Mounted root (ext4 filesystem) on device 179:2.
[    4.314750] devtmpfs: error mounting -2

이 오류의 원인을 아는 사람이 있습니까?

관련 정보