bztsrc--bootboot/README.md

474 lines
23 KiB
Markdown
Raw Permalink Normal View History

2021-10-17 12:49:44 +00:00
**!!!WARNING!!**
2022-12-16 03:28:18 +00:00
Microsoft-paid trolls got me banned from OSDev.org and they are [spreading lies about BOOTBOOT](osdev.md) ever since. Do not ask
questions about BOOTBOOT there, because you won't get correct answers. Use GitLab issues instead or mail me directly.
2021-10-17 12:49:44 +00:00
2018-06-05 18:34:03 +00:00
BOOTBOOT Reference Implementations
==================================
I provide pre-compiled images ready for use.
1. *x86_64-efi* the preferred way of booting on x86_64 architecture.
Standard GNU toolchain and a few files from gnuefi (included).
2021-04-08 18:43:57 +00:00
[bootboot.efi](https://gitlab.com/bztsrc/bootboot/raw/master/dist/bootboot.efi) (103k), [bootboot.rom](https://gitlab.com/bztsrc/bootboot/raw/master/dist/bootboot.rom) (103k)
2018-06-05 18:34:03 +00:00
2018-11-25 15:55:19 +00:00
2. *x86_64-bios* BIOS, Multiboot (GRUB), El Torito (CDROM), Expansion ROM and Linux boot compatible, OBSOLETE loader.
2018-06-05 18:34:03 +00:00
If you want to recompile this, you'll need fasm (not included).
2021-02-22 00:48:18 +00:00
[boot.bin](https://gitlab.com/bztsrc/bootboot/raw/master/dist/boot.bin) (512 bytes, works as MBR, VBR and CDROM boot record too), [bootboot.bin](https://gitlab.com/bztsrc/bootboot/raw/master/dist/bootboot.bin) (13k, loaded by boot.bin, also BBS Expansion ROM and Multiboot compliant)
2018-06-05 18:34:03 +00:00
2020-02-26 11:54:20 +00:00
3. *aarch64-rpi* ARMv8 boot loader for Raspberry Pi 3, 4
2021-01-21 04:54:39 +00:00
[bootboot.img](https://gitlab.com/bztsrc/bootboot/raw/master/dist/bootboot.img) (35k)
2018-06-05 18:34:03 +00:00
2021-01-17 21:31:22 +00:00
4. *mykernel* an example BOOTBOOT [compatible kernel](https://gitlab.com/bztsrc/bootboot/tree/binaries/mykernel) (source available in [C](https://gitlab.com/bztsrc/bootboot/tree/master/mykernel/c), [C++](https://gitlab.com/bztsrc/bootboot/tree/master/mykernel/cpp), [Pascal](https://gitlab.com/bztsrc/bootboot/tree/master/mykernel/pas), [Ada](https://gitlab.com/bztsrc/bootboot/tree/master/mykernel/ada), [Rust](https://gitlab.com/bztsrc/bootboot/tree/master/mykernel/rust) and [Go](https://gitlab.com/bztsrc/bootboot/tree/master/mykernel/go)) which draws lines and boxes
2018-06-05 18:34:03 +00:00
2020-12-17 12:05:32 +00:00
5. *mkbootimg* an all-in-one multiplatform [bootable disk image creator](https://gitlab.com/bztsrc/bootboot/tree/binaries/) (Windows, MacOSX, Linux).
2020-06-18 09:17:49 +00:00
2020-09-24 14:48:57 +00:00
BOOTBOOT can also be compiled as a [coreboot](https://gitlab.com/bztsrc/bootboot/tree/master/x86_64-cb) payload,
see *x86_64-cb* and *aarch64-cb*, but since they are tied strongly with libpayload, I do not provide binaries for those.
Please note that not all the reference implementations do support the full protocol at level 2, x86_64-bios only handles
static mappings which makes it a level 1 loader.
2018-06-05 18:34:03 +00:00
2020-09-29 13:06:37 +00:00
For a quick test, you can find example bootable disk [images](https://gitlab.com/bztsrc/bootboot/tree/binaries/images) too.
2020-01-11 19:45:18 +00:00
2018-06-05 18:34:03 +00:00
BOOTBOOT Protocol
=================
Rationale
---------
The protocol describes how to boot an ELF64 or PE32+ executable inside an initial ram disk image
into clean 64 bit mode, without using any configuration or even knowing the file system of initrd.
On [BIOS](https://gitlab.com/bztsrc/bootboot/tree/master/x86_64-bios) based systems, the same image can be loaded via
2018-07-23 22:10:35 +00:00
Multiboot, chainload from MBR, VBR (GPT hybrid booting) and CDROM boot record, or run as a BIOS Expansion ROM
2018-06-05 18:34:03 +00:00
(so not only the ramdisk can be in ROM, but the loader as well).
On [UEFI machines](https://gitlab.com/bztsrc/bootboot/tree/master/x86_64-efi), it is a standard EFI OS Loader application.
2020-02-26 11:54:20 +00:00
On [Raspberry Pi 3+](https://gitlab.com/bztsrc/bootboot/tree/master/aarch64-rpi) board the bootboot.img
2018-06-05 18:34:03 +00:00
is loaded from the boot partition on SD card as kernel8.img by start.elf.
The difference to other booting protocols is flexibility and portability;
only clean 64 bit support; and that BOOTBOOT expects the kernel to fit inside the
initial ramdisk. This is ideal for hobby OSes and micro-kernels. The advantage it gaves is that your kernel
can be splitted up into several files and yet they will be loaded together
as if it were a monolitic kernel. And you can use your own file system for the initrd.
Note: BOOTBOOT is not a boot manager, it's a boot loader protocol. If you want an interactive boot menu, you should
integrate that *before* a BOOTBOOT compatible loader is called. Like GRUB chainloading boot.bin (or loading bootboot.bin as a
2018-07-23 22:10:35 +00:00
multiboot "kernel" and initrd as a module) or adding bootboot.efi to UEFI Boot Manager's menu for example.
2018-06-05 18:34:03 +00:00
Support the Development by Donation
-----------------------------------
If you like it or find it useful, your donation of any amount will be very much appreciated:<br>
<a href="bitcoin:3G9vcV91S19fHMoBcmSksUpaxGPR5MUGCk"><img src="https://gitlab.com/bztsrc/bootboot/raw/master/donate.png"><br>BTC 3G9vcV91S19fHMoBcmSksUpaxGPR5MUGCk</a>
2018-06-05 18:34:03 +00:00
Licence
-------
The BOOTBOOT Protocol as well as the reference implementations are free
software and licensed under the terms of MIT licence.
```
Copyright (C) 2017 bzt (bztsrc@gitlab)
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use, copy,
modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
```
Authors
-------
efirom: Michael Brown
zlib: Mark Adler
tinflate: Joergen Ibsen
raspbootcom: (GPL) Goswin von Brederlow
2021-01-16 22:04:23 +00:00
mykernel/rust: Vinay Chandra
2018-06-05 18:34:03 +00:00
BOOTBOOT, FS/Z: bzt
Glossary
--------
* _boot partition_: the first bootable partition of the first bootable disk,
a rather small one. Most likely an EFI System Partition with FAT, but can be
any other partition as well if the partition is bootable (bit 2 set in flags).
* _environment file_: a maximum one page frame long, utf-8 [file](https://gitlab.com/bztsrc/bootboot/blob/master/README.md#environment-file) on boot partition
at `BOOTBOOT\CONFIG` (or when your initrd is on the entire partition, `/sys/config`). It
has "key=value" pairs (separated by newlines). The protocol
only specifies two of the keys: "screen" for screen size,
and "kernel" for the name of the executable inside the initrd.
* _initrd_: initial [ramdisk image](https://gitlab.com/bztsrc/bootboot/blob/master/README.md#installation)
(probably in ROM or flash, or on a GPT boot partition at BOOTBOOT\INITRD, or it can occupy the whole partition, or can be loaded
over the network, over serial line or as a GRUB module). It's format and whereabouts are not specified (the good part :-) ) and can be optionally gzip compressed.
2018-06-05 18:34:03 +00:00
* _loader_: a native executable on the boot partition or in ROM. For multi-bootable disks
more loader implementations can co-exists.
* _file system driver_: a separated function that parses initrd for the kernel file.
Without one the first executable found will be loaded.
2018-06-05 18:40:48 +00:00
* _kernel file_: an ELF64 / PE32+ [executable inside initrd](https://gitlab.com/bztsrc/bootboot/tree/master/mykernel),
2021-01-21 05:16:39 +00:00
optionally with the following symbols: `mmio`, `fb`, `environment`, `bootboot`, `initstack` (see machine state and linker script).
2018-06-05 18:34:03 +00:00
2020-06-24 14:33:08 +00:00
* _BOOTBOOT structure_: an informational structure defined in [bootboot.h](https://gitlab.com/bztsrc/bootboot/blob/master/dist/bootboot.h).
2018-06-05 18:34:03 +00:00
Boot process
------------
1. the firmware locates the loader, loads it and passes control to it.
2. the loader initializes hardware (64 bit multicore mode, screen resolution, memory map etc.)
2018-06-05 18:34:03 +00:00
3. then loads environment file and initrd file (probably from the boot partition or from ROM).
4. iterates on file system drivers, and loads kernel file from initrd.
5. if file system is not recognized, scans for the first executable in the initrd.
6. parses executable header and symbols to get link addresses (only level 2 compatible loaders).
2020-06-24 14:33:08 +00:00
7. maps linear framebuffer, environment and [bootboot structure](https://gitlab.com/bztsrc/bootboot/blob/master/dist/bootboot.h) accordingly.
2018-06-05 18:40:48 +00:00
8. sets up stack, registers and jumps to kernel entry point. See [example kernel](https://gitlab.com/bztsrc/bootboot/tree/master/mykernel).
2018-06-05 18:34:03 +00:00
Machine state
-------------
When the kernel gains control, the memory mapping looks like this:
```
2019-03-14 23:28:38 +00:00
-128M "mmio" area (0xFFFFFFFFF8000000)
2018-06-05 18:34:03 +00:00
-64M "fb" framebuffer (0xFFFFFFFFFC000000)
-2M "bootboot" structure (0xFFFFFFFFFFE00000)
-2M+1page "environment" string (0xFFFFFFFFFFE01000)
-2M+2page.. code segment v (0xFFFFFFFFFFE02000)
..0 stack ^ (0x0000000000000000)
0-16G RAM identity mapped (0x0000000400000000)
```
2019-02-07 23:41:34 +00:00
All information is passed at linker defined addresses. No API required at all, therefore the BOOTBOOT Protocol is
2018-11-25 16:35:11 +00:00
totally architecture and ABI agnostic. Level 1 expects these symbols at pre-defined addresses you see above, level 2
loaders parse the symbol table in executable to get the actual addresses.
2018-06-05 18:34:03 +00:00
2018-11-06 15:25:26 +00:00
The RAM (up to 16G) is identity mapped in the positive address range. Serial console is configured for 115200 baud,
8 data bits, no partity and 1 stop bit. Interrups are turned off and code is running in supervisor mode (ring 0 / EL1).
2018-06-05 18:34:03 +00:00
The screen is properly set up with a 32 bit packed pixel linear framebuffer, mapped at the negative address defined by
the `fb` symbol. Level 1 loaders limit the framebuffer size somewhere around 4096 x 4096 pixels (depends on scanline size
and aspect ratio too). That's more than enough for [Ultra HD 4K](https://en.wikipedia.org/wiki/4K_resolution) (3840 x 2160).
Level 2 loaders can place the fb anywhere in memory from -1G to -2M, therefore they do not have such a limitation.
2018-06-05 18:34:03 +00:00
2020-06-24 14:33:08 +00:00
The main information [bootboot structure](https://gitlab.com/bztsrc/bootboot/blob/master/dist/bootboot.h) is mapped
2018-06-05 18:34:03 +00:00
at `bootboot` symbol. It consist of a fixed 128 bytes long header followed by various number of fixed
records. Your initrd (with the additional kernel modules and servers) is enitrely in the memory, and you can locate it
using this struct's *initrd_ptr* and *initrd_size* members. The physical address of the framebuffer can be found in
the *fb_ptr* field. The *boot time* and a platform independent *memory map* are also provided.
The configuration string (or command line if you like) is mapped at `environment` symbol.
Kernel's code segment is mapped at ELF header's `p_vaddr` or PE header's `code_base` (level 2 only). Level 1 loaders
load kernels at -2M, therefore limiting the kernel's size in 2M, including configuration, data, bss and stack. Level 2
loaders has a limit of 16M for code, data and bss segment. That must be more than enough for all micro-kernels. Bss
segment is after the text segment, growing upwards, and it's zerod-out by the loader.
2018-06-05 18:34:03 +00:00
2019-02-07 23:41:34 +00:00
Co-processor enabled, and if Symmetric Multi Processing supported, all cores are running the same kernel code at once.
The stack is at the top of the memory, starting at zero and growing downwards. Each core has it's own 1k stack on SMP systems
2021-01-21 04:54:39 +00:00
(core 0's stack starts at 0, core 1's at -1024 etc.). Level 2 loaders can set the size of the stack with the `initstack`
symbol.
2018-06-05 18:34:03 +00:00
Environment file
----------------
Configuration is passed to your kernel as newline separated, zero terminated UTF-8 string with "key=value" pairs.
```
// BOOTBOOT Options
// --- Loader specific ---
// requested screen dimension. If not given, autodetected
screen=800x600
// elf or pe binary to load inside initrd
kernel=sys/core
// --- Kernel specific, you're choosing ---
anythingyouwant=somevalue
otherstuff=enabled
somestuff=100
someaddress=0xA0000
```
That cannot be larger than a page size (4096 bytes). Temporary variables will be appended at the end (from
UEFI command line). C style single line and multi line comments can be used. BOOTBOOT protocol only uses `screen` and
`kernel` keys, all the others and their values are up to your kernel (or drivers) to parse. Be creative :-)
2018-06-28 11:10:26 +00:00
To modify the environment when having booting issues, one will need to insert the disk into another machine (or boot a simple OS like DOS) and edit
2018-06-05 18:34:03 +00:00
BOOTBOOT\CONFIG on the boot partition. With UEFI, you can use the `edit` command provided by the EFI Shell or append
"key=value" pairs on the command line (value specified on command line takes precedence over the one in the file).
File system drivers
-------------------
The file system of the boot partition and how initrd is loaded from it is out of the scope of this specification:
the BOOTBOOT Protocol only states that a compatible loader must be able to load initrd and the environment file,
but does not describe how or from where. They can be loaded from nvram, ROM or over
network for example, it does not matter.
On the other hand BOOTBOOT does specify one API function to locate a file (the kernel)
inside the initrd image, but the ABI is also implementation (and architecture) specific.
This function receives a pointer to initrd in memory as well as the kernel's filename, and
returns a pointer to the first byte of the kernel and it's size. On error (if file system is
not recognized or the kernel file is not found) returns {NULL,0}. Plain simple.
```c
typedef struct {
uint8_t *ptr;
uint64_t size;
} file_t;
file_t myfs_initrd(uint8_t *initrd, char *filename);
```
The protocol expects that a BOOTBOOT compliant loader iterates on a list of drivers until one
returns a valid result. If all file system drivers returned {NULL,0}, the loader will brute-force
scan for the first ELF64 / PE32+ image in the initrd. This feature is quite comfortable when you
want to use your own file system but you don't have written an fs driver for it yet, or when your
"initrd" is a single, statically linked executable, like the Minix kernel. You just copy
your initrd on the boot partition, and you're ready to rock and roll!
The BOOTBOOT Protocol expects the file system drivers ([here](https://gitlab.com/bztsrc/bootboot/blob/master/x86_64-efi/fs.h),
2020-09-17 02:41:14 +00:00
[here](https://gitlab.com/bztsrc/bootboot/blob/master/x86_64-bios/fs.inc), [here](https://gitlab.com/bztsrc/bootboot/blob/master/aarch64-rpi/fs.h)
and [here](https://gitlab.com/bztsrc/bootboot/blob/master/x86_64-cb/fs.h)) to be separated from the rest of the loader's source.
This is so because it was designed to help the needs of hobby OS developers, specially for those who want to write their own file
systems.
2018-06-05 18:34:03 +00:00
The reference implementations support [cpio](https://en.wikipedia.org/wiki/Cpio) (all hpodc, newc and crc variants),
[ustar](https://en.wikipedia.org/wiki/Tar_(computing)), osdev.org's [SFS](http://wiki.osdev.org/SFS),
[James Molloy's initrd](http://www.jamesmolloy.co.uk/tutorial_html/8.-The%20VFS%20and%20the%20initrd.html)
2019-03-06 14:50:25 +00:00
format and OS/Z's native [FS/Z](https://gitlab.com/bztsrc/osz/blob/master/include/osZ/fsZ.h) (with encryption support too).
2018-06-05 18:34:03 +00:00
Gzip compressed initrds also supported to save disk space and fasten up load time (not recommended on RPi3).
Example kernel
--------------
2021-01-16 22:13:17 +00:00
An [example kernel](https://gitlab.com/bztsrc/bootboot/blob/master/mykernel/c/kernel.c) is included with BOOTBOOT Protocol
2018-06-05 18:34:03 +00:00
to demostrate how to access the environment:
```c
#include <bootboot.h>
/* imported virtual addresses, see linker script below */
2020-08-28 17:18:34 +00:00
extern BOOTBOOT bootboot; // see bootboot.h
extern unsigned char environment[4096]; // configuration, UTF-8 text key=value pairs
extern uint8_t fb; // linear framebuffer mapped
2018-06-05 18:34:03 +00:00
void _start()
{
2019-02-07 23:41:34 +00:00
/*** NOTE: this code runs on all cores in parallel ***/
2018-06-05 18:34:03 +00:00
int x, y, s=bootboot.fb_scanline, w=bootboot.fb_width, h=bootboot.fb_height;
if(s) {
// cross-hair to see screen dimension detected correctly
for(y=0;y<h;y++) { *((uint32_t*)(&fb + s*y + (w*2)))=0x00FFFFFF; }
for(x=0;x<w;x++) { *((uint32_t*)(&fb + s*(h/2)+x*4))=0x00FFFFFF; }
// red, green, blue boxes in order
for(y=0;y<20;y++) { for(x=0;x<20;x++) { *((uint32_t*)(&fb + s*(y+20) + (x+20)*4))=0x00FF0000; } }
for(y=0;y<20;y++) { for(x=0;x<20;x++) { *((uint32_t*)(&fb + s*(y+20) + (x+50)*4))=0x0000FF00; } }
for(y=0;y<20;y++) { for(x=0;x<20;x++) { *((uint32_t*)(&fb + s*(y+20) + (x+80)*4))=0x000000FF; } }
// say hello
puts("Hello from a simple BOOTBOOT kernel");
}
2018-06-05 18:34:03 +00:00
// hang for now
while(1);
}
```
2021-01-16 22:13:17 +00:00
For compilation, see example bootboot kernel's [Makefile](https://gitlab.com/bztsrc/bootboot/blob/master/mykernel/c/Makefile) and
[link.ld](https://gitlab.com/bztsrc/bootboot/blob/master/mykernel/c/link.ld).
2018-06-05 18:34:03 +00:00
2019-02-07 23:41:34 +00:00
Because on an SMP system all cores executing the same code, you probably want to start your kernel with something like:
```c
if (currentcoreid == bootboot.bspid) {
/* things to do on the bootstrap processor */
} else {
/* things to do on the application processor(s) */
}
```
On x86_64, 'currentcoreid' is the Local Apic Id (cpuid[eax=1].ebx >> 24), on AArch64 that's (mpidr_el1 & 3).
Because there were multiple reports with SMP issues on buggy machines, the x86 loaders also support `nosmp=1` in the environment.
If given, then only one core will be booted. This option will be removed once the issues are workarounded and SMP
initialized properly on all machines.
2018-06-05 18:34:03 +00:00
Installation
------------
2020-09-29 13:20:15 +00:00
In the [images](https://gitlab.com/bztsrc/bootboot/tree/binaries/images) directory you can find test disk images.
The [mkbootimg](https://gitlab.com/bztsrc/bootboot/tree/master/mkbootimg) image creator tool will make the steps below for you.
2020-01-11 19:45:18 +00:00
2018-06-05 18:34:03 +00:00
1. make an initrd with your kernel in it. Example:
```shell
mkdir -r tmp/sys
cp mykernel.x86_64.elf tmp/sys/core
# copy more files to tmp/ directory
# create your file system image or an archive. For example use one of these:
cd tmp
find . | cpio -H newc -o | gzip > ../INITRD
find . | cpio -H crc -o | gzip > ../INITRD
find . | cpio -H hpodc -o | gzip > ../INITRD
tar -czf ../INITRD *
mkfs ../INITRD .
```
2. Create FS0:\BOOTBOOT directory on the boot partition, and copy the image you've created
into it. If you want, create a text file named CONFIG there too, and put your
environment variables there. If you use a different name than "sys/core" for your
kernel, specify "kernel=" in it.
Alternatively you can copy an uncompressed INITRD into the whole partition using your fs only, leaving FAT file system entirely out.
You can also create an Option ROM out of INITRD (on BIOS there's not much space ~64-96k, but on EFI it can be 16M).
3. copy the BOOTBOOT loader on the boot partition.
**IMPORTANT**: see the relevant port's README.md for more details.
Troubleshooting
---------------
```
2021-01-21 17:24:03 +00:00
BOOTBOOT-PANIC: no LBA support
2018-06-05 18:34:03 +00:00
```
Really old hardware. Your BIOS does not support LBA. This message is generated by 1st stage loader (boot.bin).
```
2021-01-21 17:24:03 +00:00
BOOTBOOT-PANIC: no FS0:\BOOTBOOT.BIN
2018-06-05 18:34:03 +00:00
```
The loader is not on the disk or it's starting LBA address is not recorded in the boot sector at dword [0x1B0]
2018-06-05 18:34:03 +00:00
(see [mkboot](https://gitlab.com/bztsrc/bootboot/blob/master/x86_64-bios/mkboot.c)). As the boot sector supports RAID mirror,
it will try to load the loader from other drives as well. This message is generated by 1st stage loader (boot.bin).
```
BOOTBOOT-PANIC: Hardware not supported
```
Really old hardware. On x86_64, your CPU is older than family 6.0 or PAE, MSR, LME features not supported.
2018-06-05 18:40:48 +00:00
On AArch64 it means the MMU does not support 4k granule size or at least 36 bit address size.
2018-06-05 18:34:03 +00:00
```
BOOTBOOT-PANIC: Unable to initialize SDHC card
```
The loader was unable to initialize EMMC for SDHC card access, probably hardware error or old card.
2019-12-13 13:15:55 +00:00
```
BOOTBOOT-PANIC: No GPT found
```
The loader was unable to load the GUID Partitioning Table.
2018-06-05 18:34:03 +00:00
```
BOOTBOOT-PANIC: No boot partition
```
2019-12-13 13:15:55 +00:00
There's no EFI System Partition nor any other bootable partition in the GPT. Or the FAT file system is found but corrupt
(contains inconsistent BPB data), or doesn't have a BOOTBOOT directory (with 8+3 MSDOS entry, not LFN).
2018-06-05 18:34:03 +00:00
```
2018-07-23 22:10:35 +00:00
BOOTBOOT-PANIC: Not 2048 sector aligned
2018-06-05 18:34:03 +00:00
```
2018-07-23 22:10:35 +00:00
This error is only shown by bootboot.bin (and not by bootboot.efi or bootboot.img) and only when
booted from CDROM in El Torito "no emulation" mode, and the boot partition file system's
root directory is not 2048 bytes aligned or the cluster size is not multiple of 2048
bytes. For FAT16 it depends on FAT table size and therefore on file system size. If you
see this message, increase the number of hidden sectors in BPB by 2. FAT32 file systems are
not affected.
```
BOOTBOOT-PANIC: Initrd not found
```
The loader could not find the initial ramdisk image on the boot partition.
2018-06-05 18:34:03 +00:00
```
BOOTBOOT-PANIC: Kernel not found in initrd
```
Kernel is not included in the initrd, or initrd's fileformat is not recognized by any of the file system
drivers and scanning haven't found a valid executable header in it.
```
BOOTBOOT-PANIC: Kernel is not a valid executable
```
The file that was specified as kernel could be loaded by fs drivers, but it's not an ELF64 or PE32+,
does not match the architecture, or does not have any program header with a loadable segment (p_vaddr or core_base)
2018-11-25 16:37:14 +00:00
in the negative range (see linker script). This error is also shown by level 2 loaders if the address of `mmio`, `fb`,
`bootboot` and `environment` symbols are not in the negative range (-1G to 0) or if they are not page aligned.
2020-06-18 09:17:49 +00:00
On x86_64 the fb symbol, and for AArch64 the mmio symbol must be 2M aligned too. Use [mkbootimg check](https://gitlab.com/bztsrc/bootboot/tree/master/mkbootimg)
to find out what the problem is.
```
BOOTBOOT-PANIC: Kernel is too big
```
The kernel is bigger than 16 megabytes. For level 1 loaders the limit is somewhere below 2M.
2018-06-05 18:34:03 +00:00
```
BOOTBOOT-PANIC: GOP failed, no framebuffer
BOOTBOOT-PANIC: VESA VBE error, no framebuffer
BOOTBOOT-PANIC: VideoCore error, no framebuffer
```
The first part of the message varies on different platforms. It means that the loader was unable to set up linear
framebuffer with packed 32 bit pixels in the requested resolution. Possible solution is to modify screen to
`screen=800x600` or `screen=1024x768` in environment.
2018-11-09 10:59:14 +00:00
```
BOOTBOOT-PANIC: Unsupported cipher
```
This message is shown if the initrd is encrypted with a cipher that the loader does not support. Solution:
2018-11-09 11:43:03 +00:00
regenerate and encrypt the initrd image with SHA-XOR-CBC cipher, known to all the three implementations.
(Note: encryption is only supported for FS/Z initrd images.)
2018-11-09 10:59:14 +00:00
2018-06-05 18:34:03 +00:00
That's all, hope it will be useful!
2020-01-16 17:51:40 +00:00
Contributors
------------
I'd like to say special thanks to [Valentin Anger](https://gitlab.com/SyrupThinker) for throughfully testing this
code on many different real hardware. Also to [Vinay Chandra](https://gitlab.com/vinaychandra) for pushing me to add
2020-11-09 13:10:55 +00:00
level 2 protocol to the reference implementations and for testing and providing a Rust kernel example for the project,
and also for providing a MacOS binary for mkbootimg.
2020-08-28 17:18:34 +00:00
Further thanks to [Stephen Sherratt](https://gitlab.com/stevebob) for being presistent at fixing issues.
2021-02-20 22:01:19 +00:00
Many thanks for a very through testing to [Neutru](https://gitlab.com/neutru) and [Pascal Mathis](https://gitlab.com/ppmathis).