Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/8] nios2 fixes
@ 2015-09-19 22:43 Marek Vasut
  2015-09-19 22:43 ` [PATCH 1/8] insane: Add nios2 support Marek Vasut
                   ` (8 more replies)
  0 siblings, 9 replies; 21+ messages in thread
From: Marek Vasut @ 2015-09-19 22:43 UTC (permalink / raw)
  To: openembedded-core; +Cc: Marek Vasut, lftan, waltergoossens

This patchset fixes various minor issues found during the process
of getting Yocto working with the Altera NIOS2 soft-processor.

Marek Vasut (8):
  insane: Add nios2 support
  siteinfo: Add nios2-linux
  kernel-arch: Add nios2 to valid archs
  linux-yocto: depend on libgcc for nios2
  openssl: Add nios2 configuration
  libtool: Fix nios2 support
  pixman: Fix missing FE_DIVBYZERO on nios2
  libgpg-error: Add support for nios2

 meta/classes/insane.bbclass                        |   1 +
 meta/classes/kernel-arch.bbclass                   |   3 +-
 .../openssl/openssl/openssl_add_nios2.patch        |  33 ++
 .../recipes-connectivity/openssl/openssl_1.0.2d.bb |   1 +
 meta/recipes-devtools/libtool/libtool-2.4.6.inc    |   1 +
 ...1-libtool-Fix-support-for-NIOS2-processor.patch |  68 ++++
 ...0001-v3-test-add-a-check-for-FE_DIVBYZERO.patch |  65 ++++
 meta/recipes-graphics/xorg-lib/pixman_0.32.6.bb    |   1 +
 meta/recipes-kernel/linux/linux-yocto.inc          |   4 +
 .../0001-libgpg-error-Add-nios2-support.patch      |  46 +++
 .../libgpg-error/libgpg-error_1.19.bb              |   4 +-
 meta/site/nios2-linux                              | 395 +++++++++++++++++++++
 12 files changed, 620 insertions(+), 2 deletions(-)
 create mode 100644 meta/recipes-connectivity/openssl/openssl/openssl_add_nios2.patch
 create mode 100644 meta/recipes-devtools/libtool/libtool/0001-libtool-Fix-support-for-NIOS2-processor.patch
 create mode 100644 meta/recipes-graphics/xorg-lib/pixman/0001-v3-test-add-a-check-for-FE_DIVBYZERO.patch
 create mode 100644 meta/recipes-support/libgpg-error/libgpg-error/0001-libgpg-error-Add-nios2-support.patch
 create mode 100644 meta/site/nios2-linux

-- 
2.1.4



^ permalink raw reply	[flat|nested] 21+ messages in thread
* [PATCH 0/8] nios2 fixes
@ 2015-09-17 14:31 Marek Vasut
  2015-09-17 19:54 ` Burton, Ross
  2015-09-18  1:44 ` Khem Raj
  0 siblings, 2 replies; 21+ messages in thread
From: Marek Vasut @ 2015-09-17 14:31 UTC (permalink / raw)
  To: openembedded-core; +Cc: Marek Vasut, lftan, waltergoossens

This patchset fixes various minor issues found during the process
of getting Yocto working with the Altera NIOS2 soft-processor.

Marek Vasut (8):
  insane: Add nios2 support
  kernel-arch: Add nios2 to valid archs
  linux-yocto: depend on libgcc for nios2
  openssl: Add nios2 configuration
  siteinfo: Add nios2-linux
  libtool: Fix nios2 support
  pixman: Fix missing FE_DIVBYZERO on nios2
  libgpg-error: Add support for nios2

 meta/classes/insane.bbclass                        |   1 +
 meta/classes/kernel-arch.bbclass                   |   3 +-
 .../openssl/openssl/openssl_add_nios2.patch        |  32 ++
 .../recipes-connectivity/openssl/openssl_1.0.2d.bb |   1 +
 meta/recipes-devtools/libtool/libtool-2.4.6.inc    |   1 +
 ...1-libtool-Fix-support-for-NIOS2-processor.patch |  67 ++++
 ...0001-v3-test-add-a-check-for-FE_DIVBYZERO.patch |  65 ++++
 meta/recipes-graphics/xorg-lib/pixman_0.32.6.bb    |   1 +
 meta/recipes-kernel/linux/linux-yocto.inc          |   4 +
 .../0001-libgpg-error-Add-nios2-support.patch      |  45 +++
 .../libgpg-error/libgpg-error_1.19.bb              |   4 +-
 meta/site/nios2-linux                              | 395 +++++++++++++++++++++
 12 files changed, 617 insertions(+), 2 deletions(-)
 create mode 100644 meta/recipes-connectivity/openssl/openssl/openssl_add_nios2.patch
 create mode 100644 meta/recipes-devtools/libtool/libtool/0001-libtool-Fix-support-for-NIOS2-processor.patch
 create mode 100644 meta/recipes-graphics/xorg-lib/pixman/0001-v3-test-add-a-check-for-FE_DIVBYZERO.patch
 create mode 100644 meta/recipes-support/libgpg-error/libgpg-error/0001-libgpg-error-Add-nios2-support.patch
 create mode 100644 meta/site/nios2-linux

-- 
2.1.4



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

end of thread, other threads:[~2015-09-22  0:06 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-19 22:43 [PATCH 0/8] nios2 fixes Marek Vasut
2015-09-19 22:43 ` [PATCH 1/8] insane: Add nios2 support Marek Vasut
2015-09-19 22:43 ` [PATCH 2/8] siteinfo: Add nios2-linux Marek Vasut
2015-09-19 22:43 ` [PATCH 3/8] kernel-arch: Add nios2 to valid archs Marek Vasut
2015-09-19 22:43 ` [PATCH 4/8] linux-yocto: depend on libgcc for nios2 Marek Vasut
2015-09-19 22:43 ` [PATCH 5/8] openssl: Add nios2 configuration Marek Vasut
2015-09-21 10:35   ` Burton, Ross
2015-09-21 10:49     ` Marek Vasut
2015-09-21 12:38       ` Burton, Ross
2015-09-22  0:05         ` [PATCH] openssl: Add mapping for nios2 Marek Vasut
2015-09-22  0:06         ` [PATCH 5/8] openssl: Add nios2 configuration Marek Vasut
2015-09-19 22:43 ` [PATCH 6/8] libtool: Fix nios2 support Marek Vasut
2015-09-19 22:43 ` [PATCH 7/8] pixman: Fix missing FE_DIVBYZERO on nios2 Marek Vasut
2015-09-19 22:43 ` [PATCH 8/8] libgpg-error: Add support for nios2 Marek Vasut
2015-09-20 11:59 ` [PATCH 0/8] nios2 fixes Philip Balister
2015-09-21  1:07   ` Marek Vasut
  -- strict thread matches above, loose matches on Subject: below --
2015-09-17 14:31 Marek Vasut
2015-09-17 19:54 ` Burton, Ross
2015-09-19 21:38   ` Marek Vasut
2015-09-18  1:44 ` Khem Raj
2015-09-18  1:47   ` Marek Vasut

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