-
[Linux] 커널 빌드 및 수정한 특정 모듈만 빌드하여 적재하기SW/Linux 2021. 4. 9. 09:53
커널 빌드하기
1. sudo apt-get install linux-source- + TAB으로 소스코드 다운
2. cp /boot/config-4.15.0-20-generic ./.config
3. make -j8 && make modules && make modules_install && make install
4. reboot특정 모듈만 빌드하여 적재하기
1. make SUBDIRS=/drivers/i2c/
2. make modules SUBDIRS=/drivers/i2c/
3. make modules_install SUBDIRS=/drivers/i2c/
4. 해당 폴더에 들어가서 rmmod [모듈] 후 insmod ./[모듈].ko하니깐 올라간다.'SW > Linux' 카테고리의 다른 글
[Linux] Shared memory 확인 및 제거 (0) 2023.10.19 [Linux] 용량 큰 파일 찾기 du (0) 2021.06.23 [Linux] 커널 모듈 명령어 (0) 2021.04.09 [git] git add, commit, reset, stash 커밋 추가, 삭제 및 임시저장 (1) 2020.02.20 [Linux] gcc 옵션 및 objdump 명령어 - c 최적화 & c 어셈블리어 추출 (0) 2020.02.08