Changes between Version 21 and Version 22 of jazz/08-11-16


Ignore:
Timestamp:
Nov 17, 2008, 6:53:12 AM (16 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/08-11-16

    v21 v22  
    1919main.c:        if (mode == KD_TEXT) {
    2020vterm.c:        ioctl(0, KDSETMODE, KD_TEXT);
     21
     22root@intrepid:~/jfbterm-0.4.7# grep mmio *
     23acconfig.h:/* Quit if mmap(mmio) is failed */
     24ChangeLog:        mmap(mmio)$N%3!<%I$rJQ99$7$F$_$^$7$?!#
     25ChangeLog:        "Cannot mmap(mmio)."$,H/@8$7$F$bL5;k$9$k;v$,$G$-$k$h$&$K$7$F$_
     26config.h:/* Quit if mmap(mmio) is failed */
     27config.h.in:/* Quit if mmap(mmio) is failed */
     28config.log:configure:6444: checking whether to enable check-mmio-error
     29configure: --enable-check-mmio-error         Check mmap(mmio) return code default no
     30configure:# Check whether --enable-check-mmio-error was given.
     31configure:if test "${enable_check_mmio_error+set}" = set; then
     32configure:  enableval=$enable_check_mmio_error;
     33configure:  enable_check_mmio_error=no
     34configure:{ echo "$as_me:$LINENO: checking whether to enable check-mmio-error" >&5
     35configure:echo $ECHO_N "checking whether to enable check-mmio-error... $ECHO_C" >&6; }
     36configure:if test x$enable_check_mmio_error = xyes; then
     37configure.in:AC_ARG_ENABLE(check-mmio-error, [ --enable-check-mmio-error         Check mmap(mmio) return code [default no]],,enable_check_mmio_error=no)
     38configure.in:AC_MSG_CHECKING(whether to enable check-mmio-error)
     39configure.in:if test x$enable_check_mmio_error = xyes; then
     40fbcommon.c:     print_message("MMIO   : %p L=%u\n", fbfs->mmio_start, fbfs->mmio_len);
     41fbcommon.c:     p->moff = (u_long)(fb_fix.mmio_start) & (~PAGE_MASK);
     42fbcommon.c:     p->mlen = (fb_fix.mmio_len + p->moff + ~PAGE_MASK) & PAGE_MASK;
     43fbcommon.c:     p->mmio = (u_char*)mmap(NULL, p->mlen, PROT_READ|PROT_WRITE,
     44fbcommon.c:     if ((long)p->mmio == -1) {
     45fbcommon.c:             die("cannot mmap(mmio)");
     46fbcommon.c:             print_message("cannot mmap(mmio) : %s\n", strerror(errno));
     47fbcommon.c:     p->mmio = (char *)p->mmio + p->moff;
     48fbcommon.c:     print_message("mmio ; %d - %p\n", p->mlen, p->mmio);
     49fbcommon.c:     if ((long)p->mmio != -1) {
     50fbcommon.c:             munmap((caddr_t)((u_long)p->mmio & PAGE_MASK), p->mlen);
     51fbcommon.h:     u_char* mmio;
    2152}}}
    2253