diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-28 23:28:15 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-02 15:44:10 +0100 |
commit | bb6ddc3691ab04162ec5fd69a2d5e7876713fd15 (patch) | |
tree | 76e376b01253c3aace1a98a5021bcaad3c92e861 /meta/recipes-bsp/grub/grub2.inc | |
parent | fcc456ee4b8f619134abb4649db53c638074082c (diff) | |
download | poky-bb6ddc3691ab04162ec5fd69a2d5e7876713fd15.tar.gz |
Convert to new override syntax
This is the result of automated script conversion:
scripts/contrib/convert-overrides.py <oe-core directory>
converting the metadata to use ":" as the override character instead of "_".
(From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/grub/grub2.inc')
-rw-r--r-- | meta/recipes-bsp/grub/grub2.inc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/meta/recipes-bsp/grub/grub2.inc b/meta/recipes-bsp/grub/grub2.inc index 19294760c4..bb791347dc 100644 --- a/meta/recipes-bsp/grub/grub2.inc +++ b/meta/recipes-bsp/grub/grub2.inc | |||
@@ -30,21 +30,21 @@ CVE_CHECK_WHITELIST += "CVE-2019-14865" | |||
30 | DEPENDS = "flex-native bison-native gettext-native" | 30 | DEPENDS = "flex-native bison-native gettext-native" |
31 | 31 | ||
32 | COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*|riscv.*)-(linux.*|freebsd.*)' | 32 | COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*|riscv.*)-(linux.*|freebsd.*)' |
33 | COMPATIBLE_HOST_armv7a = 'null' | 33 | COMPATIBLE_HOST:armv7a = 'null' |
34 | COMPATIBLE_HOST_armv7ve = 'null' | 34 | COMPATIBLE_HOST:armv7ve = 'null' |
35 | 35 | ||
36 | # configure.ac has code to set this automagically from the target tuple | 36 | # configure.ac has code to set this automagically from the target tuple |
37 | # but the OE freeform one (core2-foo-bar-linux) don't work with that. | 37 | # but the OE freeform one (core2-foo-bar-linux) don't work with that. |
38 | 38 | ||
39 | GRUBPLATFORM_arm = "efi" | 39 | GRUBPLATFORM:arm = "efi" |
40 | GRUBPLATFORM_aarch64 = "efi" | 40 | GRUBPLATFORM:aarch64 = "efi" |
41 | GRUBPLATFORM_riscv32 = "efi" | 41 | GRUBPLATFORM:riscv32 = "efi" |
42 | GRUBPLATFORM_riscv64 = "efi" | 42 | GRUBPLATFORM:riscv64 = "efi" |
43 | GRUBPLATFORM ??= "pc" | 43 | GRUBPLATFORM ??= "pc" |
44 | 44 | ||
45 | inherit autotools gettext texinfo pkgconfig | 45 | inherit autotools gettext texinfo pkgconfig |
46 | 46 | ||
47 | CFLAGS_remove = "-O2" | 47 | CFLAGS:remove = "-O2" |
48 | 48 | ||
49 | EXTRA_OECONF = "--with-platform=${GRUBPLATFORM} \ | 49 | EXTRA_OECONF = "--with-platform=${GRUBPLATFORM} \ |
50 | --disable-grub-mkfont \ | 50 | --disable-grub-mkfont \ |
@@ -70,7 +70,7 @@ BUILD_LDFLAGS = "" | |||
70 | 70 | ||
71 | export PYTHON = "python3" | 71 | export PYTHON = "python3" |
72 | 72 | ||
73 | do_configure_prepend() { | 73 | do_configure:prepend() { |
74 | cd ${S} | 74 | cd ${S} |
75 | FROM_BOOTSTRAP=1 ${S}/autogen.sh | 75 | FROM_BOOTSTRAP=1 ${S}/autogen.sh |
76 | cd ${B} | 76 | cd ${B} |