Chromeos의 Linuxtv 설치

Chromeos의 Linuxtv 설치

DVB-T USB 동글이 제대로 작동하려면 이 드라이버를 설치해야 합니다. 이 튜토리얼을 사용했습니다https://rk.edu.pl/pl/obsluga-tunerow-dvb-t-pod-linuksem/

내가 한 일은 다음과 같습니다.

git clone git://linuxtv.org/media_build.git
cd media_build

그런 다음 명령을 실행합니다 ./build. 이렇게 하면 몇 가지 오류가 발생합니다.

libkmod: ERROR ../libkmod/libkmod-module.c:1668 kmod_module_new_from_loaded: could not open /proc/modules: No such file or directory
Error: could not get list of modules: No such file or directory

Preparing to compile for kernel version 5.4.163

File not found: /lib/modules/5.4.163-17364-gfe3d4f499cf1/build/.config at ./scripts/make_kconfig.pl line 33, <IN> line 4.make[1]: *** [Makefile:367: allyesconfig] Error 2
make[1]: Leaving directory '/home/tabsik12/media_build/v4l'
make: *** [Makefile:26: allyesconfig] Error 2
can't select all drivers at ./build line 531

이 문제를 어떻게 해결할 수 있나요? 저는 Chrome OS의 Linux에 대해 잘 모릅니다.

답변1

문제는 ChromeOS용으로 제공되는 Linux 커널이 로드 가능한 모듈 지원 없이 빌드되었기 때문입니다. 내 ChromeOS Linux 셸에서 다음 출력을 참조하세요.

arul@penguin$ zcat /proc/config.gz |egrep -w "CONFIG_MODULES"
# CONFIG_MODULES is not set
arul@penguin$ 
arul@penguin$ lsmod
libkmod: ERROR ../libkmod/libkmod-module.c:1668 kmod_module_new_from_loaded: could not open /proc/modules: No such file or directory
Error: could not get list of modules: No such file or directory
arul@penguin$ 
arul@penguin$ ls /lib/modules
ls: cannot access '/lib/modules': No such file or directory

관련 정보