diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2016-05-10 12:19:38 -0400 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-05-19 12:02:39 +0200 |
commit | beac69f84e8a45809555e0c5f9df7f1ab8f4a268 (patch) | |
tree | 2b594fc7dfee647d9587e8bb3273849cf6d48579 | |
parent | f0a1e61c478ecb69bb457891ea0629e156a78377 (diff) | |
download | meta-openembedded-beac69f84e8a45809555e0c5f9df7f1ab8f4a268.tar.gz |
efibootmgr: sync with upstream while efivar upgraded to 0.23
Sync with upstream to have the following fix:
...
commit 53aa9cdf7f0746f91f39521d020b024103041384
Author: Peter Jones <pjones@redhat.com>
Date: Thu Mar 3 09:50:03 2016 -0500
Explicitly pass a mode to efi_set_variable() in all cases.
We'll have to do this for efivar-0.24 .
Signed-off-by: Peter Jones <pjones@redhat.com>
...
It fixed compile failure:
...
efibootmgr.c: In function 'make_boot_var':
efibootmgr.c:305:7: error: too few arguments to function 'efi_set_variable'
rc = efi_set_variable(boot->guid, boot->name, boot->data,
^
...
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-extended/efibootmgr/efibootmgr_0.12.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-extended/efibootmgr/efibootmgr_0.12.bb b/meta-oe/recipes-extended/efibootmgr/efibootmgr_0.12.bb index d80c89fe4..0dee582e3 100644 --- a/meta-oe/recipes-extended/efibootmgr/efibootmgr_0.12.bb +++ b/meta-oe/recipes-extended/efibootmgr/efibootmgr_0.12.bb | |||
@@ -10,7 +10,7 @@ DEPENDS = "pciutils zlib efivar" | |||
10 | 10 | ||
11 | COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux" | 11 | COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux" |
12 | 12 | ||
13 | SRCREV = "eb6e36c9064eae256cd60df24a977e3abd87fd16" | 13 | SRCREV = "75d25807ba81cb724964c989012611272c8f1f5d" |
14 | SRC_URI = "git://github.com/rhinstaller/efibootmgr.git;protocol=https \ | 14 | SRC_URI = "git://github.com/rhinstaller/efibootmgr.git;protocol=https \ |
15 | " | 15 | " |
16 | 16 | ||