config 썸네일형 리스트형 makefile(.mk) flag and blank issue If your flag has [blank] end of word, "ifeq" make miss understanding. ex)CONFIG_AAA := true [blank]ifeq ($(CONFIG_AAA), true)end So we need to use "strip" sentence when we use "ifeq" ifeq ($(strip $(CONFIG_AAA)),true) 더보기 make mrproper 외 kernel build command Kconfig 나 defconfig 들을 수정한 이후알수없게 build error 가 계속 발생할때가 있다.이때, make mrproper 를 실행해 주면 정상적으로 build 가 된다. makefile, Kconfig, defconfig 등을 수정하고 난 이후에는꼭 make mrproper 를 실행해 주자. [ 커널 빌드 명령어의 의미 ] make mrproper- 기존에 설정되어 있던 모든 의존관계를 제거하는 역할. make menuconfig- 콘솔에서 메뉴 형식으로 커널 환경 설정 시작.- make config -> 질의 응답형식으로 물어봄. (오래걸림)- make xconfig -> GUI 환경에서 사용. make dep- 커널에 설정된 내용에 따라서 소스 코드의 파일을 확인, 필요한 링크를 생.. 더보기 이전 1 다음