When the IPL has completed its work, it copies a bootable OS image into RAM and jumps to it to continue execution.
An OS image is simply a file that contains the OS, plus any executables, OS modules, and data files that are needed to get the system running properly. This image is presented in an image filesystem (IFS). This IFS consists of:
Drivers and applications that may be needed later but are not required at the outset may be included in the IFS, or left out and started at another time by a mechanism such as the SLM service (see System Launch and Monitor (SLM)).
The time needed to copy the IFS into RAM varies according to the contents (hence, size) of the IFS. It is usually the longest part of the kernel boot process. In extreme cases, where the system contains a very large image and has no filesystem other than the IFS, this stage can take several seconds.
You can reduce the time required for this phase of the boot process, albeit indirectly, by reducing the size of the IFS and writing a simple script that loads and launches applications and services at a later time. For more information on reducing the time it takes to boot, see the Boot Optimization Guide.
To add, remove, or configure files stored in the IFS, edit the build file, or use the system builder tool in the IDE (see Build scripts in this chapter and the OS Image Buildfiles chapter).
You can also compress the OS image to make the IFS smaller. A compressed image adds to the time needed for the decompression. You can reduce this time by enabling the cache in the IPL. Whatever strategy you choose, you should experiment to discover which technique provides optimal performance, as you define it for your system.