로그인 유지
보드를 부팅 하면
Welcome.....
커널버전..
Falinux login :
이렇게 뜨는데..
위에 두 문장은 /etc/issue 에서 지웠습니다만..
아래 문장은 어디에 있는걸까요? 또한 pxa270보드에서 커서를 없애고도 싶습니다..ㅠㅠ
도와주세요~~
안녕하세요..
/etc/rc.d/rc.local 에서 마지막 부분에 보시면 있습니다.
그리고.. 커서는 커널에서.. /drivers/video/console/bitblit.c 소스를 보시면
236 static void bit_cursor(struct vc_data *vc, struct fb_info *info, int mode,
237 int softback_lines, int fg, int bg)
238 {
239 struct fb_cursor cursor;
240 struct fbcon_ops *ops = info->fbcon_par;
241 unsigned short charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff;
242 int w = (vc->vc_font.width + 7) >> 3, c;
243 int y = real_y(ops->p, vc->vc_y);
244 int attribute, use_sw = (vc->vc_cursor_type & 0x10);
245 int err = 1;
246 char *src;
247 return;
248 cursor.set = 0;
249
250 if (softback_lines) {
247 라인을 추가해 주시면 됩니다... return;
그럼 좋은 하루 되세요..
안녕하세요..
/etc/rc.d/rc.local 에서 마지막 부분에 보시면 있습니다.
그리고.. 커서는 커널에서.. /drivers/video/console/bitblit.c 소스를 보시면
236 static void bit_cursor(struct vc_data *vc, struct fb_info *info, int mode,
237 int softback_lines, int fg, int bg)
238 {
239 struct fb_cursor cursor;
240 struct fbcon_ops *ops = info->fbcon_par;
241 unsigned short charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff;
242 int w = (vc->vc_font.width + 7) >> 3, c;
243 int y = real_y(ops->p, vc->vc_y);
244 int attribute, use_sw = (vc->vc_cursor_type & 0x10);
245 int err = 1;
246 char *src;
247 return;
248 cursor.set = 0;
249
250 if (softback_lines) {
247 라인을 추가해 주시면 됩니다... return;
그럼 좋은 하루 되세요..