|
|
ELJonline:
Building Tiny Linux Systems with Busybox, Part 2: Building the Kernel 2001-01-01
Let Bruce help you put the BusyBox to work.For this example I use Linux kernel version 2.2.17. The 2.4.0-test8 kernel that I tried did not size the RAM disk for the root file system properly, leading to a "not enough memory" message at boot time.
That bug will probably be repaired in the 2.4 series of kernels by the time you read this. We will build our example to run on an i386-architecture PC-compatible system with PC keyboard and VGA display, booting from a floppy disk and running the root file system entirely in RAM once the system is booted. This example should also boot from IDE disks and from FLASH EEPROM devices that masquerade as IDE disks. It can also be configured to boot from a CD-ROM. Build a bzImage-style kernel with all of the facilities needed for the application, plus these three:
If you're not familiar with building and installing kernels on a normal Linux PC, you'll need to study up on that. In short, I placed the kernel sources in /usr/src/linux and ran:
This created a compiled Linux kernel in /usr/src/linux/arch/i386/boot/bzImage. Building a Static-Linked Busybox In the busybox source directory, edit the Makefile, changing the variable DOSTATIC from false to true. Then run make. That will create a static-linked version of busybox. Confirm that it is static-linked by running this command:
This should print something like:
It's important to get this right; if you install a dynamic-linked version of Busybox, your system won't run because we aren't installing the runtime dynamic linker and its libraries on the floppy disk for this example. Creating a ROM Root File System We're going to go through all of the steps for creating a minimal root file system by hand so that you will understand just how little is necessary to boot your system rather than copying all of the files from the root of your Linux distribution and then being afraid to remove anything because you don't know whether it's necessary. You will need to become root (the superuser) to perform the following steps because the mknod command requires superuser privilege. Create the tiny-linux directory and change directory into it:
Create the standard directories in it:
Enter the tiny-linux/dev directory:
Create the generic terminal devices:
Create the virtual terminal device for the VGA display:
Create the RAM disk device:
Create the null device, used to discard unwanted output:
Change directory to tiny-linux/etc/init.d, where startup scripts are stored:
Use an editor to create this shell script in tiny-linux/etc/init.d/rcS. It will be executed when the system boots:
Make the script executable:
Change directory to tiny-linux/etc:
Use an editor to create the file tiny-linux/etc/fstab, which says what file systems should be mounted at boot time:
Set the mode of tiny-linx/etc/fstab:
Use an editor to create the file tiny-linux/etc/inittab, which tells /bin/init, the system startup program, what processes to start:
The above example runs the script /etc/init.d/rcS at boot time and runs an interactive shell on the console device. Set the modes of tiny-linux/etc/inittab:
That's everything necessary to create your root file system, except for the installation of the programs. Change directory to tiny-linux/bin:
Copy your static-linked version of Busybox from wherever you built it into tiny-linux/bin/busybox with a command similar to this one:
Add another command name ls to Busybox using the ln command:
Run ls, and the result should look like this:
Repeat the above ln command for all of these names:
Are you tired yet? Well, now is a good time to take a break -- you've finished creating your ROM root file system. Generate the ROM Root File System Image You'll need the genromfs program to generate the ROM file system image. If you are using Debian or Red Hat, it's already packaged for you as part of the standard system; you'll just need to run the command to install it. If your Linux distribution doesn't include a prepackaged version, at this writing the program can be found at ftp://ibiblio.org/pub/Linux/system/recovery/genromfs-0.3.tar.gz. Install the program, change directory to the directory that contains tiny-linux and run these commands:
This creates the ROM file system image in the file fs. Now, compress the file system image using the gzip command:
That will create the file fs.gz, which is about half the size of the uncompressed version. Build the Floppy We'll need one more program to build our floppy: syslinux. This is an i386 bootstrap program that will load a kernel and a compressed root file system image from a floppy, hard disk or CD. Again, it's prepackaged with Debian or Red Hat and can be found, at this writing, at ftp://ibiblio.org/pub/Linux/system/boot/loaders/syslinux-1.48.tar.gz. Create an MS-DOS file system on a floppy by using the Linux mformat command (or by another means). Put the floppy in your drive but don't mount it, and install the syslinux bootstrap with this command:
That will copy a first-stage bootstrap onto the first block of the floppy and a second-stage bootstrap into the file LDLINUX.SYS in the MS-DOS file system of the floppy. I'm assuming you have a directory called /mnt; substitute whatever directory you usually use for mounting floppy disks in the shell commands below. Now, it's time to copy our kernel and root file system onto the floppy:
Create the configuration file /mnt/syslinux.cfg with an editor:
This tells syslinux to wait for two seconds and then boot the default system. You can interrupt the default boot during those two seconds by pressing the shift key. Typing linux at the prompt will do the same thing as the default. The kernel is booted with the arguments root=/dev/ram0 and initrd=fs.gz. These arguments tell the kernel that the root is a RAM disk, and that the RAM disk is loaded from the compressed ROM file system image fs.gz. Although the "ROM" root file system is actually in RAM, it will not be writable because the Linux ROM file system driver used in this example is meant to work with real ROMs and thus doesn't support writing. The Smoke Test Configure an i386 PC to boot from the floppy. Note that this is a setting in the BIOS preferences of most new PCs, and they are often configured to boot from the hard disk without first looking for a bootstrap on the floppy. Place the floppy in the first floppy drive, and restart the system. You should see something like the following:
Tons of cybercrud about every device driver and facility in the kernel race by too rapidly to read...
You've done it! Press Enter and you should see something like this:
Pop out the floppy disk; it's not being used any longer. The root file system is entirely in RAM. You should be able to look around the system and try out commands, but you won't have any writable storage. This is the simplest, bootable-system, running busybox that I could think of, and thus I've left out the files in /dev that you'd need to mount writable RAM disks, floppies and hard disks. You now should be able to figure out what those devices are, add them and build a tiny Linux system specialized to your application. About the author: Bruce Perens (bruce@perens.com) is president of Linux Captial Group and chairman of Progeny Linux Systems and Known Safe. He was project leader of the Debian Project for two and a half years. Copyright © 2001 Specialized Systems Consultants, Inc. All rights reserved. Embedded Linux Journal Online is a cooperative project of Embedded Linux Journal and LinuxDevices.com.
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||