2014年10月9日 星期四

How to remove .git files ?


find . | grep "\.git" | xargs rm -rf

2014年10月2日 星期四

Linux - warning: override XXX

Because your kconfig have "choice" !

This mean that only have "1" module can be enable.
But, you enabled 2 or more module on your config file belong this item.

After "make xxxx_config", it found 2 enable module on this item.

it will show ... warning: override.

You must to disable unnecessary module on this item.