*  For 4M with dual image, each iamge size should not more than 1966080. (4M-4*64K)/2

*
	Basic Coding Style for this Project

	1. tab =4 
		if you use vi, please set ts=4, sw=4
		Please align your code, this is a share project.

	2. 
		if(a == 1) {
			...
		} else {
			...
		}

	3. 
		for(i = 0; i < 10; i++) {
			...
		}


*
	How to use indent to convert your coding style.

	indent -bls -ts4 -cdw -bad -bap -bbo -nbc -br -brs -c33 -cd33 -ncdb -ce -ci4 -cli0 -cp33 -cs -d0 -di1 -nfc1 -nfca -hnl -i4 -ip0 -l120 -lp -npcs -nprs -npsl -nsaf -nsai -nsaw -nsc -nsob -nss your_src.c -o your_src_new.c

	or 

	indent -bls -ts4 -cdw -bad -bap -bbo -nbc -br -brs -c33 -cd33 -ncdb -ce -ci4 -cli0 -cp33 -cs -d0 -di1 -nfc1 -nfca -hnl -i4 -ip0 -l120 -lp -npcs -nprs -npsl -nsaf -nsai -nsaw -nsc -nsob -nss your_src.c




* How to make

1. How to build when first get from svn serve?

	make menuconfig
	make config_update PROFILE=xxx
	make

2. How to backup configurations?

	make config_save PROFILE=xxx

3. How to restore old configurations?

	make config_update PROFILE=xxx


4. How to build user space applcation?

	make user_xxxx_clean
	make user_xxxx_all



