Changes between Version 31 and Version 32 of jazz/08-11-16
- Timestamp:
- Nov 17, 2008, 2:25:59 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
jazz/08-11-16
v31 v32 54 54 431 tfbm_open(&gFramebuffer); 55 55 }}} 56 * 安裝 manpages-dev 套件,查 mmap manpages56 * 安裝 manpages-dev 套件,查 mmap 、 strerror 跟 errno 的 manpage。從 cannot mmap(mmio) : Invalid argument 這個錯誤訊息可以判斷 errno 等於 EINVAL。而 mmap 發生 EINVAL 的情形有三種,最可能的原因是第一個:We don't like addr, length, or '''offset''' (e.g., they are too large, or __'''not aligned on a page boundary'''__). 57 57 {{{ 58 58 root@intrepid:~/jfbterm-0.4.7# apt-get install manpages-dev … … 65 65 {{{ 66 66 void *mmap(void *addr, size_t length, int prot, int flags, int fd, off_t offset); 67 68 offset must be a multiple of the page size as returned by sysconf(_SC_PAGE_SIZE). 67 69 68 70 ERRORS … … 110 112 }}} 111 113 114 {{{ 115 116 }}} 117 112 118 == UCIMF - jfbterm patch (中文輸入) == 113 119 … … 131 137 * 原來 Lenny 是這隻雙筒望眼鏡呀?! [[BR]][[BR]][[Image(http://www.linuxdevices.com/files/misc/pixar_toy_story_lenny_cap.jpg)]] 132 138 * [http://blog.seety.org/everydaywork/2007/4/25/669/ screenrc 範例] 139 * 133 140 {{{ 134 141 $ cat > .screenrc <<EOF 135 142 caption always "%{= wk} %{= KY} [%n]%t @ %H %{-} %= %{= KR} %l %{-} | %{= KG} %Y-%m-%d %{-} " 136 hardstatus alwayslastline " %-Lw%{= Bw}%n%f %t%{-}%+Lw %=| %0c:%s"143 hardstatus alwayslastline " %-Lw%{= Bw}%n%f %t%{-}%+Lw %=|" 137 144 EOF 138 145 }}}