*** Basic Requirement ***

	Linux Distribution:
		Ubuntu 8.0.4

	packages can be download via Ubuntu utilities:
	
	    Please enter below commands line by line. 
	    If you can't install, please contact Ubuntu forum or just googleing.
	
    		sudo apt-get update
		    sudo apt-get install g++ 
		    sudo apt-get install ssh
		    sudo apt-get install help2man 
		    sudo apt-get install libncurses5-dev
    		sudo apt-get install subversion
	    	sudo apt-get install zlib1g-dev
		    sudo apt-get install automake
		    sudo apt-get install autoconf
		    sudo apt-get install flex
		    sudo apt-get install bison
		    sudo apt-get install gettext
		    sudo apt-get install libstdc++5
		    sudo apt-get install libtool 
		    sudo apt-get install gettext
		    sudo apt-get install patch

	Require packages:
		texinfo-4.9

    directory needed to create
        * create /tftpboot and make sure you have full access right
        * create /opt and make sure you have full access right

*** packages ***

buildroot.tar.bz2		- source of toolchain
source-x.y.z.tar.gz		- source of router 
packages/
	texinfo-4.9.tar.gz


*** texinfo-4.9.tar.gz ***
1. ./configure
2. make
3. sudo make install

*** toolchain ***

1. tar xvfj buildroot.tar.bz2

2. cd buildroot

3. make
	if there has error while geting the files from internet, please modify toolchain/kernel-headers/kernel-headers.mk
	For more information, please google the question you have. All packages are from open source web site.

	NOTE: Make sure the PC has ability to access internet

*** router image ***

0. Make sure the toolchain at /opt and set the PATH to /opt/buildroot-gdb/bin
	export PATH=/opt/buildroot-gdb/bin:${PATH}

1. tar xvfz soruce-x.y.z.tar.gz 

2. cd source

3. make menuconfig

	Make sure below setting.

	(RT3052) Ralink Products
	(4M/32M) Flash/SDRAM Size

	Save then exit.

4. make config_update PROFILE=3GAP_1_0_x

5. make

6. The firmware image will be placed in /tftproot and ./image



