
	1. Platform:
		Red Hat 8.0
	
	2. Steps:
		0)	Create directory
			
			su root
			mkdir /mnt/hdd
			mkdir /tftpboot
		
		1)	Untar
		
			cd /mnt/hdd
			cp FOR_GPL.tgz .
			tar xzvf FOR_GPL.tgz

		2)	Untar tool chain
		
			cd /opt
			cp /mnt/hdd/FOR_GPL/amit.opt.tgz .
			tar xzvf amit.opt.tgz

		3)	Copy batch file

			cd /usr/local/bin
			cp /mnt/hdd/FOR_GPL/script/* .
	
	3. Make Kernel
		0)	Execute batch file

			. brecis25b .ids <----	This batch file will set path and
									env values

		1)	Execute make command

			cd /mnt/hdd/FOR_GPL/uClinux/brecis/compilescript
			make linuxall <---- This command cleans whole linux kernel and
								make a new one
			make ucsrc <----	This command cleans whole uC-src and make
								a new kernel image
			make linux <----	This command will not clean uC-src but try to
								find newer or modified linux kernel files
		
		2)	Change kernel config

			cd /mnt/hdd/FOR_GPL/uClinux/linux
			make menuconfig

			After saving kernel config, copy configuration file to /arch

			cd /mnt/hdd/FOR_GPL/uClinux/linux/arch/mipsnommu/
			cp /mnt/hdd/FOR_GPL/uClinux/linux/.config defconfig-brecis.ids

			Then execute "make linuxall" in /uClinux/brecis/compilescript

		3)	check image file

			cd /tftpboot/root	<----	the image file will put here if you use
										the root account, if your account name
										is ABCDE, then the image file will put
										in /tftpboot/ABCDE
			
			The image file is named image.flash, the size should not be over
			4MB.
