Chapter 5. Wakes installer

Table of Contents

1. Installer call
2. Install process description

1. Installer call

Initramfs used to host the Wakes installer is a debian one. In the init script we use the keyword boot to pass the install argument:

        boot=*)
                BOOT=${x#boot=}
                ;;

As $BOOT is sourced:

. /scripts/${BOOT}

we created the file scripts/install:

mountroot ()
{
  /wakes/install.sh
}

and we use the moutroot function to start the Wakes installer;

mountroot