강좌 & 팁
글 수 2,412
2014.04.10 20:24:53 (*.134.169.166)
51838
LCD의 화면이 60초 후면 꺼지는 문제는 다음과 같이 설정이 되어 있기 떄문입니다.
커널 버젼에 따라서 vt.c 파일의 위치가 바뀌고 있습니다.
커널 3.0.35. 버전에서는 vt.c가 drivers/tty 또는 drivers/tty/vt/ 에 존재합니다.
이 파일을 열어서 180라인을 수정해 주면 됩니다.
178 static int vesa_blank_mode; /* 0:none 1:suspendV 2:suspendH 3:powerdown */
179 static int vesa_off_interval;
180 static int blankinterval = 10*60;
181 core_param(consoleblank, blankinterval, int, 0444);
기본 설정이 60초을 되어 있습니다. 이것을 0으로 수정하면 화면이 꺼지지 않습니다.
180 static int blankinterval = 0;