Minimal Linux System
The idea of this task was to build a light-weight system that would boot from flash memory and run from RAM. This way, the need for a hard drive is eliminated and you are left with a solid-state computer.Getting this task done took a lot of effort. I briefly describe how I got my system going below. Check out the references if you wish to build your own. Before we get started, we need to know which drives are present on which bus.
On a linux system, this means that the hard drive isIDE-0 Master: Hard Disk IDE-0 Slave : - IDE-1 Master: CompactFlash IDE-1 Slave : CDROM
/dev/hda
and the
CompactFlash is /dev/hdc
. The flash memory can be used as an
IDE drive
because it implements the IDE command set on chip. So, a CompactFlash
chip is smart where as the SmartMedia memory is dumb! In order to build a working system, you need the following packages -
- The Kernel Source - I used 2.4.20
- Busybox - collection of utilities
- Lilo - the boot loader
- gcc - for compiling sources
Step 1: Compiling the kernel
I downloaded the kernel sources from http://www.kernel.org. The package is named linux-2.4.20.tar.gz which is the latest stable release as of this writing. I put the downloaded file in the /usr/src directory and executed the following command to unpack the files -tar xvzf linux-2.4.20.tar.gzThe sources come with programs to help you configure kernel parameters. So, do the following -
cd /usr/src/linux-2.4.20/This starts up a GUI application with various buttons. You can select the features you want enabled or disabled. For the sake of simplicity, I compiled all drivers needed by my hardware into the kernel as opposed to compiling them as modules. Disabling all unnecessary support helps speedup the boot process. For instance, if you don't have a scsi drive, there is no point in compiling those drivers. My linux setup required me to select the following options (there are other selection too, but there were the ones that I abosultely needed to bootup) -
make xconfig
- Processor Type: Cyrix III/VIA C3/VIA C5
- Networking Options: Unix domain sockets and TCP/IP networking
- Block devices: RAM disk support, Initial RAM disk support
- Network Devices: 10/100 Mbps - VIA Rhine
- ATA/IDE/MFM/RLL Support: Include IDE/ATA-2 Support
- File systems: ext2, /dev (automatically mount at boot)
make depIf the build is successful, the kernel image is put in the /usr/src/linux-2.4.20/arch/i386/boot directory.
make bzImage
STEP 2: Build Busybox
Busybox is a multi-call binary. This means that it combines many programs into a single executable. To execute a command, you simply pass the name as a parameter to busybox. For instance, the 'ls' utlity can be invoked by call 'busybox ls'.Busybox provides us with the 'init' program which is run when the kernel starts up. Along with this, it also provides various other utilities such as ls, mount, ifconfig, df, swapon, swapoff etc. A complete list can be found at http://www.busybox.net. Download the source and unpack in any directory. Edit Configure.h to enable or disable the programs you want to keep. Remember that we want to build a minimal system, so only the utilities that are absolutely essential should be compiled in order to keep the size down. Here is a quick breakdown of the tasks:
- Download busybox-0.60.5.tar.gz (or whatever is the latest)
- Unpack: tar xvzf busybox-0.60.5.tar.gz
- Configure: edit Configure.h
- Specify static compile: This is done in the Makefile. I have chosen not to have any external library dependencies. This reduces the number of things that can go wrong. You may choose the other route.
Step 3: Prepare the destination
My linux system boots from a 32 MB CompactFlash. This memory shows up as a regular hard disk on my development system. I created two partitions on this (/dev/hdc) using fdisk.- /dev/hdc1: ext2, 16 MB, used for storing the system files.
- /dev/hdc2: ext2, 16 MB, used for storing user files.
Step 4: Build the root filesystem
First, our CompactFlash is mounted by executing the command:mount /dev/hdc1 /mnt
Then create the following directories -
drwxr-xr-x 2 root root 1024 Dec 6 17:13 boot drwxr-xr-x 2 root root 1024 Dec 5 19:02 dev drwxr-xr-x 2 root root 1024 Dec 7 06:16 etc drwxr-xr-x 2 root root 1024 Dec 4 17:13 proc drwxr-xr-x 2 root root 1024 Dec 6 17:13 tmp drwxr-xr-x 2 root root 1024 Dec 6 18:27 varCopy the kernel image that was build earlier to the boot directory. Be careful here and copy to /mnt/boot and not to /boot. Also copy the boot.b from /boot to /mnt/boot.
Populate the dev directory by copying nodes from your development system.
- cp -dpR /dev/hdc /mnt/dev/
- cp -dpR /dev/hdc1 /mnt/dev/
Switch to /mnt/etc directory. We need to create an inittab file. The 'init' program uses this file to figure out what to do. It must contain the following text:
::sysinit:/etc/rcS ::respawn:/bin/ash ::ctrlaltdel:/bin/umount -a -rThis tells 'init' to run /etc/rcS script on startup, start an 'ash' shell (you may have selected a different shell during the configuration of busybox) and to unmount all when ctrl-alt-del is pressed. The programs that you want run automatically on startup should be put in the rcS script.
/etc/lilo.conf is used by the bootloader to set things up. The listing is shown below:
boot=/dev/hdc disk=/dev/hdc bios=0x80 map=/boot/map install=/boot/boot.b default=linux linear prompt timeout=100 image=/boot/bzImage label=linux root=/dev/hdc1 read-onlyThe 'bios=0x80' line tells lilo that when we set the secondary IDE as the boot drive in the BIOS, 0x80 will point to /dev/hdc instead of the usual /dev/hda. It's a little confusing, read more about this in the lilo manual.
Now you are ready to install the bootloader on /dev/hdc. Change directory to /mnt/boot and execute the following:
lilo -r /mnt/ -C etc/lilo.confNow pray that everything goes alright! If successful, move on...
Your filesystem should look something like this.
Step 5: Boot from CompactFlash
You are now ready to reboot. A little extra prayer may help at this point! Go into the BIOS and set the secondary IDE as the first boot disk. Watch and hope that your system boots up. Don't give up if it does not work on the first or second try. There is plenty of help available on the internet. On my working system, it takes 5 seconds from the lilo prompt to the command promt. Impressive, isn't it? ;)
Here is a screenshot of my embedded bootup
process.
References