How to build the WR5203 ?

Step 1: Install Toolchain
		decompress RT288x_SDK/toolchain/buildrot-gcc342.tar.bz2 to /opt/buildroot-gcc342
		cp buildrot-gcc342.tar.bz2 /opt/
		tar -jxf buildroot-gcc342.tar.bz2

Step 2: Install mksquashfs
		cd RT288x_SDK/toolchain/mksquash_lzma-3.2
		make
		make install

		**Note : May some error happen just like Tab Space or path of installing mksquash of issues

			1.Tab Space issue :
				==>	RT288x_SDK\toolchain\mksquash_lzma-3.0\lzma\C\7zip\Compress\LZMA_Alone\makefile

			2.Path of installing mksquash issue
				==> Modify the content of Makefile of mksquash_lzma-3.2 due to WR3052 system uses the buildroot-gcc342 toolchain .

			make install:
			#-cp squashfs3.2-r2/squashfs-tools/mksquashfs /opt/buildroot-gdb/bin/mksquashfs_lzma-3.2
			-cp squashfs3.2-r2/squashfs-tools/mksquashfs /opt/buildroot-gcc342/bin/mksquashfs_lzma-3.2
			#-cp ${LzmaAlone}/lzma_alone /opt/buildroot-gdb/bin/lzma_alone
			-cp ${LzmaAlone}/lzma_alone /opt/buildroot-gcc342/bin/lzma_alone

Step 3: Install LZMA
		cd RT288x_SDK/toolchain/lzma-4.32.0beta5
		./configure
		make
		make install

		**Note : May some error happen during the process of making
		undefine the MACRO :futimes in the lzma.cpp
		So add the statement "#define HAVE_FUTIMES" in the config.h
		and making process will be finished .

Step 4: Compilering Source Code
		make mroproper
		make menuconfig
		From Menu
			a:
		   	 	Select the Custom you wish to target
		   	 	--->(*)Ralink Products
		   	 		-->(*)RT3052
		   	 	--->(*)Flash/SDRAM size
		   	 	    -->  choose you want

   			b:
   	 			How to select flash type:
   	 				Kernel/Library/Defaults Selection
   	 				--->(*)Customize Kernel Settings
	 	exit ; save

		make dep;make
