Specifications
Page | 51
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 contain
the required uImage file.
ubifs image generation
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 contain the
required ubi.img file.
4.6 Linux System Customization
The Linux kernel has many configuration options. From the default
configuration, users can add or delete some configurations to suit different
needs. The following example illustrates the general process of system
customization.
4.6.1 4 Alteration of kernel configuration
The 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
cd linux-03.00.00.04/
cp arch/arm/configs/omap3_soc8200_defconfig .config
make menuconfig