What do you want to configure?
FYI:
When an Android device get powered on then 2 bootloaders are run: the 1st-stage bootloader and the 2nd-stage bootloader.
The 1st-stage bootloader does the following:
- Setup the memory segments and stack used by the bootloader code
- Reset the disk system
- Find the 2nd-stage boot loader in the FAT directory
- Read the 2nd-stage boot loader image into memory
- Transfer control to the 2nd-stage bootloader
The 2nd-stage bootloader does the following:
- Copy the boot sector data bytes to a local memory area, as they will be overwritten
- Find the kernel image
- Read the kernel image into memory
- Reset the disk system
- Enable the A20 line
- Setup the interrupt descriptor table
- Setup the global descriptor table
- Load the descriptor tables into the CPU
- Switch to protected mode
- Clear the prefetch queue
- Setup protected mode memory segments and stack for use by the kernel code
- Transfer control to the kernel code using a long jump