mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 21:09:03 +02:00

WiC script to create an EFI image for Galileo Gen 1/2. This differs from the reference EFI image that is shipped with Poky as follows. * Removed the swap partition. * Change to Kernel Cmd Line for Galileo, updating console etc. Signed-off-by: Ray Kinsella <ray.kinsella@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
10 lines
553 B
Plaintext
10 lines
553 B
Plaintext
# short-description: Create an Galileo Gen 1/2 disk image
|
|
# long-description: Creates a partitioned EFI disk image for Intel Galileo Gen 1/2,
|
|
# that the user can directly dd to boot media.
|
|
|
|
part /boot --source bootimg-efi --sourceparams="loader=gummiboot" --ondisk mmcblk0 --label msdos --active --align 1024
|
|
|
|
part / --source rootfs --ondisk mmcblk0 --fstype=ext3 --label platform --align 1024
|
|
|
|
bootloader --timeout=0 --append="console=ttyS1,115200n8 earlycon=uart8250,mmio32,0x9000b000,115200n8 reboot=efi,warm apic=debug rw LABEL=boot debugshell=5"
|