summaryrefslogtreecommitdiffstats
path: root/meta-agl-bsp/classes
AgeCommit message (Expand)AuthorFilesLines
2018-02-22Fix cyclone5 build by supplying patched image classJan-Simon Möller1-0/+181
2018-01-23meta-agl-bsp/classes: Remove bbclass filesChanghyeok Bae3-989/+0
2017-10-18Backport fix for image class dependenciesJan-Simon Möller1-5/+9
2017-10-14meta-agl-bsp: Re-merge image-vm/image.bbclass overlaysTom Rini2-7/+7
2017-09-08Upgrade to pyroChanghyeok Bae1-79/+77
2017-07-26image: Add vmdk.xz to the list of types that trigger image-vm inheritTom Rini1-0/+622
2017-07-20image-vm: Allow for xz compressed vmdk imagesTom Rini1-0/+181
2017-06-20Remove sdcard_image-rpi-gdp.bbclassLeon Anavi1-113/+0
2017-05-06sdcard: rpi-sdimg: fix mcopy issue with boot.scrMatt Ranostay1-0/+184
2017-01-27meta-raspberrypi: fix overlay issues with sdcard_image-rpi-gdp.bbclassMatt Ranostay1-2/+3
2016-12-02Set rootfs size based on real size of rootfs imageAnton Gerasimov1-2/+18
2016-09-25meta-raspberrypi: AGL support for Raspberry PiLeon Anavi1-0/+96
nd-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
# short-description: Custom EFI disk image with systemd-boot
# long-description: Creates a partitioned EFI disk image that the user
# can directly dd to boot media. The selected bootloader is systemd-boot
# and we do not have swap

part /boot --source bootimg-efi --sourceparams="loader=systemd-boot,initrd=microcode.cpio" --use-uuid --label msdos --active --align 1024

part / --source rootfs --fstype=ext4 --label platform --align 1024 --use-uuid

# Modify the append line here as needed to suit the environment.
#
# To change the default video resolution add one of the following
# resolutions:
# uvesafb.mode_option=1024x768-32
# uvesafb.mode_option=1280x1024-32
# uvesafb.mode_option=1600x1200-32
#
# To avoid corrupt boot screen by systemd message you can remove the
# console=tty0 portion below or disable all boot messages by kernel command
# line.  To disable all boot messages add:
#
# quiet
bootloader --ptable gpt --timeout=5 --append="rootwait rootfstype=ext4 console=ttyS0,115200n8 console=tty0 reboot=efi"