2010年7月28日 星期三

ARM Cortex A8

基于 ARM Cortex A8 的i.MX51打造低功耗高性能多媒体上网设备
http://www.morninghan.com/MX51%20Cortex%20A8%20%E5%BC%80%E5%8F%91%E6%9D%BF.html


沒SATA啊...
ARM Cortex A8 TI OMAP 3530

DevKit8000 OMAP3530 Evaluation Kit
http://www.armkits.com/product/devkit8000.asp?gclid=CPiCmePejqMCFQYdbgodmTeLRw

OMAP3530
http://focus.ti.com/docs/prod/folders/print/omap3530.html

SEED-OMAP3530 (Development Boards/EVMs)
http://focus.ti.com/dsp/docs/thirdparty/catalog/devtoolsproductfolder.tsp?actionPerformed=productFolder&productId=6117

德州儀器針對多媒體應用推出最新 720 MHz OMAP3530 處理器
http://www.ti.com.tw/news/newsdetail.asp?scid=SC-09098

2009最新 TI OMAP3530開發板+4.3" LCD +WinCE 6.0 +Linux +Android +Angstrom[ARM開發板,OMAP3], $7700
http://goods.ruten.com.tw/item/show?11090428710711

現貨雙核心CORTEX-A8 TI OMAP3530 開發學習板(含5.6"LCD含全配附件)(台灣獨家代理), $9200
http://tw.page.bid.yahoo.com/tw/auction/c46629269?u=i03070309

ARM CORTEX A8 TI OMAP3530開發板+4.3" LCD
http://www.fitpi.com.tw/news_events/ARM_OMAP_3530.htm

大稻埕逍遙遊 與 大稻埕老街攝影巡禮

葉倫會的部落格

大稻埕逍遙遊第309次導覽隨筆(2010.7.18)
http://ylh515.pixnet.net/blog/post/26635078

台北城開心攝影巡禮第6次導覽隨筆(2010.7.4)
http://ylh515.pixnet.net/blog/post/26529202

大稻埕逍遙遊第274次導覽隨筆(2009.02.15)
http://ylh515.pixnet.net/blog/post/23181117


「大稻埕逍遙遊」與「大稻埕老街攝影巡禮」活動訊息
http://okgo.tw/news/20070730235029.html

大稻埕逍遙遊與找茶趣
http://blog.xuite.net/wangyai/leisure/16987928

Linux net related article

從應用程式送出封包到 NIC 上流程 (linux)
http://www.csie.ntu.edu.tw/~b92092/Pakage%20Send%200.14.doc


Linux 網路代碼導讀v0.2
http://www.linuxuser.com.tw/skill_detail.php?cid=1654

2010年7月25日 星期日

X forwarding

Ubuntu 8.04

On Client
gdmsetup

[Security] -> disable [Deny TCP connections to Xserver]


xhost +SERVER_IP
ssh SERVER_IP
(On server)
export DISPLAY CLIENT_IP:0.0




/etc/gdm/gdm.conf
[security]
DisallowTCP=true


/etc/X11/xinit/xserverrc:5:exec /usr/bin/X11/X -nolisten tcp

Displaying Remote X-Windows Applications
http://www.vyvy.org/main/en/node/25

xhost 和 DISPLAY
http://libai.math.ncu.edu.tw/bcc16/5/xhost/

3. X11 Forwarding using SSH
http://tldp.org/HOWTO/XDMCP-HOWTO/ssh.html

X DISPLAY
http://www.togaware.com/linux/survivor/X_DISPLAY.html

GREP_OPTIONS is evil

GREP_OPTIONS is evil
https://bugs.launchpad.net/ubuntu/+source/mysql-dfsg-5.0/+bug/75031

unset GREP_OPTIONS


[Bug 67141] Re: GREP_OPTIONS can break system scripts
http://www.mail-archive.com/ubuntu-bugs@lists.ubuntu.com/msg433295.html

Ignoring .svn directories with grep
http://coreygilmore.com/blog/2007/09/14/ignoring-svn-directories-with-grep/

2010年7月13日 星期二

牽牛花

牽牛花
http://zh.wikipedia.org/zh-tw/%E7%89%BD%E7%89%9B%E8%8A%B1

牽牛花結種子了~
http://blog.yam.com/bethtsao/article/23260875

我種的牽牛花,在一日壽命的花朵凋謝後
花房的部分就成為種子
一開始是綠色的
過一段時日
就漸漸轉變為黃褐色


牽牛花
http://163.19.122.1/flower/507/5072/new%20page.htm

意外找到這個.....牽牛花也能嗑??!!
嗑花!夾竹桃、牽牛花 搖頭族玩命
http://intermargins.net/intermargins/IsleMargin/DrugLib/news/08usage/usage13.htm

inlined function description results in "sorry, unimplemented" message

I got following error while compiling a kernel module with glibc toolchain (codesoucery arm-2009q1), gcc-4.3.3

XXX.h:20: sorry, unimplemented: inlining failed in call to 'YYY': function body not available
ZZZ.c:83: sorry, unimplemented: called from here

While using the uclibc toolchain built from buildroot, gcc-4.3.3 doesn't.

[PATCH] fix inlining related build failures in mxser.c
http://lkml.org/lkml/2004/12/23/131
One simple way to fix those is to simply un-inline the functions in question (and since they are somewhat large that's what I did) - an alternative would be to rework the ordering of the file so the functions are defined before their first use.
http://lkml.org/lkml/2004/12/24/18
Add -funit-at-a-time to the CFLAGS, and the compiler is happy.
http://lkml.org/lkml/2005/1/3/147
unit-at-a-time is already enabled at -O2 in 3.4 .
The kernel Makefile explicitely disables it on i386.

Bug 147446 - inlined function description results in "sorry, unimplemented" message
https://bugzilla.redhat.com/show_bug.cgi?id=147446
This is not a GCC bug, but combination of vpnclient bug and kernel "feature".
Kernel insists to define inline to inline __attribute__((always_inline)) for certain GCC versions. This attribute is a requirement that the function in question must be inlined or the compilation fails if that is not possible. The problem on vpnclient side is that it declares a function prototype as inline, without defining its body.
Simply remove the inline keyword from it and it will work.



Linux From Scratch
http://www.linuxfromscratch.org/lfs/view/stable/index.html

2010年7月7日 星期三

Ubuntu window panel dispear

Ubuntu 10.4
First, try open a gnome-terminal

test@test-desktop:~$ gnome-panel
gnome-panel: error while loading shared libraries: libtdb.so.1: cannot open shared object file: No such file or directory
It seems the libtdb.so.1 is missing, look for the package that contains the library, and reinstall it.
test@test-desktop:~$ dpkg -S libtdb.so.1
libtdb1: /usr/lib/libtdb.so.1
libtdb1: /usr/lib/libtdb.so.1.2.0
test@test-desktop:~$ apt-get install --reinstall libtdb1

2010年7月6日 星期二

SD卡的lock掉了...

傻傻把SD卡拆了想找lock的接點才發現竟然沒有任何接點
google後才知道 lock功能是做在 讀卡機 上的
lock不見就貼一個回去就好了..


SD card 的 LOCK 開關無效?
http://gsyan888.blogspot.com/2010/06/sd-card-lock.html

SD Card lock missing
http://www.mobinauts.com/topic/30157-sd-card-lock-missing/
This maybe useful to anyone whose "lock" toggle has fallen off. The plastic toggle is there to activate a switch in the device (like in digital camera) not on the card. To get the device to see the card as unlocked, just glue a small piece of plastic to fill the slot in the side of the SD card casing. You will loose the SD card lock feature but at least you will be able to write data to the card again


[分享]親愛的,我把SD卡給分解了!
http://www.mobile01.com/topicdetail.php?f=61&t=169750&p=2#