User manual

When the above steps are finished, the current directory will generate the file
x-load.bin.ift_for_NAND we need.
3.4.2.3 u-boot image generated
cd u-boot-03.00.00.04/
make distclean
make am3517_evm_config
make
When the above steps are finished, the current directory will generate the file u-boot.bin we need.
3.4.2.4 kernel image generated
User may change linux-03.00.00.04/drivers/video/omap2/displays/
panel-sharp-lq043t1dg01.c, the default display is VGA.
//#define LCD_43inch 1
//#define LCD_7inch 1
#define VGA 1
Compilation
cd linux-03.00.00.04/
make distclean
cp arch/arm/configs/omap3_soc8200_defconfig .config
make
make uImage
When the above steps are finished, the arch/arm/boot directory will generate the file uImage we
need.
3.4.2.5 ubifs image generated
cd /home/embest/work
sudo /home/embest/tools/mkfs.ubifs -r rootfs -m 2048 -e 129024 -c 812 -o ubifs.img
sudo /home/embest/tools/ubinize -o ubi.img -m 2048 -p 128KiB -s 512
/home/embest/tools/ubinize.cfg
When the above steps are finished, the current directory will generate the file ubi.img we need.
3.4.3 System Customization
Actually, Linux kernel has many options for configuring the kernel. According to the default
configuration, users can add or delete some configuration to suit different need. The following
example illustrates the general process of system customization.
3.4.3.1 Alteration of kernel configuration
Kernel source code provides the default configuration file:
arch/arm/configs/omap3_soc8200_defconfig
Users can customize the system on the basis of this file