Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/2 v3] grub-efi: change to generate EFI image in target package
@ 2013-11-20  1:40 jackie.huang
  2013-11-20  1:40 ` [PATCH 1/2] " jackie.huang
  2013-11-20  1:40 ` [PATCH 2/2] grub-efi: allow compilation without large model support jackie.huang
  0 siblings, 2 replies; 14+ messages in thread
From: jackie.huang @ 2013-11-20  1:40 UTC (permalink / raw)
  To: openembedded-core

From: Jackie Huang <jackie.huang@windriver.com>

v3 comments:
Drop the original solution to generate and deploy EFI image in the -native
packae and change to do that in taret package, and the -native one only
provides the grub-mkimage binary. No need 3 files anymore, make them in
one bb.

--
The following changes since commit 0eb947454e1c92467283e6f1adeca67c7c57698b:

  python: Fix ptest not working problems (2013-11-18 13:04:13 +0000)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib jhuang0/d_grub-efi_1119_0
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jhuang0/d_grub-efi_1119_0

Jackie Huang (2):
  grub-efi: change to generate EFI image in target package
  grub-efi: allow compilation without large model support

 meta/classes/grub-efi.bbclass                      |  4 +-
 ...allow-a-compilation-without-mcmodel-large.patch | 69 ++++++++++++++++++++++
 .../{grub-efi-native_2.00.bb => grub-efi_2.00.bb}  | 44 ++++++++------
 3 files changed, 96 insertions(+), 21 deletions(-)
 create mode 100644 meta/recipes-bsp/grub/files/grub-efi-allow-a-compilation-without-mcmodel-large.patch
 rename meta/recipes-bsp/grub/{grub-efi-native_2.00.bb => grub-efi_2.00.bb} (77%)

-- 
1.8.3



^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PATCH 0/2 v4] grub-efi: change to generate EFI image in target package
@ 2013-11-22  7:23 jackie.huang
  2013-11-22  7:23 ` [PATCH 1/2] " jackie.huang
  0 siblings, 1 reply; 14+ messages in thread
From: jackie.huang @ 2013-11-22  7:23 UTC (permalink / raw)
  To: openembedded-core; +Cc: phcoder, dvhart

From: Jackie Huang <jackie.huang@windriver.com>

v4 comments:
no code changes, only added some detail informations explaining whay the change
is necessary and fix the incorrect Upstream-Status statement for the patch.

--
The following changes since commit ee3e2e5ce15a3bf78c7e9d76d7bf68131f2d3ef7:

  librsvg: upgrade to 2.40.0 (2013-11-20 14:03:06 +0000)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib jhuang0/d_grub-efi_1122_0
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jhuang0/d_grub-efi_1122_0

Jackie Huang (2):
  grub-efi: change to generate EFI image in target package
  grub-efi: allow compilation without large model support

 meta/classes/grub-efi.bbclass                      |  4 +-
 ...allow-a-compilation-without-mcmodel-large.patch | 81 ++++++++++++++++++++++
 .../{grub-efi-native_2.00.bb => grub-efi_2.00.bb}  | 44 +++++++-----
 3 files changed, 108 insertions(+), 21 deletions(-)
 create mode 100644 meta/recipes-bsp/grub/files/grub-efi-allow-a-compilation-without-mcmodel-large.patch
 rename meta/recipes-bsp/grub/{grub-efi-native_2.00.bb => grub-efi_2.00.bb} (77%)

-- 
1.8.3



^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PATCH 0/2 v5] grub-efi: change to generate EFI image in target package
@ 2013-11-22 10:00 jackie.huang
  2013-11-22 10:00 ` [PATCH 1/2] " jackie.huang
  0 siblings, 1 reply; 14+ messages in thread
From: jackie.huang @ 2013-11-22 10:00 UTC (permalink / raw)
  To: openembedded-core; +Cc: phcoder, dvhart

From: Jackie Huang <jackie.huang@windriver.com>

v5 comments:
Replace the patch "allow a compilation without mcmodel=large" with the one
provided by Vladimir Serbinenko <phcoder@gmail.com>.

--
The following changes since commit ee3e2e5ce15a3bf78c7e9d76d7bf68131f2d3ef7:

  librsvg: upgrade to 2.40.0 (2013-11-20 14:03:06 +0000)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib jhuang0/d_grub-efi_v5_1122_1
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jhuang0/d_grub-efi_v5_1122_1

Jackie Huang (2):
  grub-efi: change to generate EFI image in target package
  grub-efi: allow compilation without large model support

 meta/classes/grub-efi.bbclass                      |   4 +-
 ...allow-a-compilation-without-mcmodel-large.patch | 141 +++++++++++++++++++++
 .../{grub-efi-native_2.00.bb => grub-efi_2.00.bb}  |  44 ++++---
 3 files changed, 168 insertions(+), 21 deletions(-)
 create mode 100644 meta/recipes-bsp/grub/files/grub-efi-allow-a-compilation-without-mcmodel-large.patch
 rename meta/recipes-bsp/grub/{grub-efi-native_2.00.bb => grub-efi_2.00.bb} (77%)

-- 
1.8.3



^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2013-11-22 18:52 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-20  1:40 [PATCH 0/2 v3] grub-efi: change to generate EFI image in target package jackie.huang
2013-11-20  1:40 ` [PATCH 1/2] " jackie.huang
2013-11-22  2:45   ` Darren Hart
2013-11-22  4:49     ` jhuang0
2013-11-22  5:02       ` Darren Hart
2013-11-22  6:29         ` jhuang0
2013-11-20  1:40 ` [PATCH 2/2] grub-efi: allow compilation without large model support jackie.huang
2013-11-22  2:49   ` Darren Hart
2013-11-22  3:37     ` jhuang0
2013-11-22  5:04       ` Darren Hart
2013-11-22  6:18         ` jhuang0
  -- strict thread matches above, loose matches on Subject: below --
2013-11-22  7:23 [PATCH 0/2 v4] grub-efi: change to generate EFI image in target package jackie.huang
2013-11-22  7:23 ` [PATCH 1/2] " jackie.huang
2013-11-22 10:00 [PATCH 0/2 v5] " jackie.huang
2013-11-22 10:00 ` [PATCH 1/2] " jackie.huang
2013-11-22 18:52   ` Darren Hart

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox