Add Grub support

Signed-off-by: Maxime Chretien <maxime.chretien@bootlin.com>
This commit is contained in:
Maxime Chretien 2020-06-11 16:33:31 +02:00
parent 110afea57e
commit e2d68e3f4b
3 changed files with 10 additions and 1 deletions

8
projects/grub.sh Normal file
View file

@ -0,0 +1,8 @@
# Elixir definitions for Grub
list_tags_h()
{
echo "$tags" |
tac |
sed -r 's/^(grub-)?([0-9]+).([0-9]+)([A-Za-z0-9\.-]*)$/\2 \2.\3 \1\2.\3\4/'
}

View file

@ -91,3 +91,4 @@ index u-boot https://gitlab.denx.de/u-boot/u-boot.git &
index uclibc-ng git://uclibc-ng.org/git/uclibc-ng &
index zephyr https://github.com/zephyrproject-rtos/zephyr &
index toybox https://github.com/landley/toybox.git &
index grub https://git.savannah.gnu.org/git/grub.git &

View file

@ -30,7 +30,7 @@ if [ -z "$ELIXIR_INSTALL" ]; then
exit 1
fi
for p in linux u-boot busybox zephyr musl barebox uclibc-ng arm-trusted-firmware amazon-freertos qemu glibc coreboot llvm mesa ofono dpdk toybox; do
for p in linux u-boot busybox zephyr musl barebox uclibc-ng arm-trusted-firmware amazon-freertos qemu glibc coreboot llvm mesa ofono dpdk toybox grub; do
echo "Processing project $root/$p ..."
export LXR_DATA_DIR=$root/$p/data
export LXR_REPO_DIR=$root/$p/repo