All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8] nios2 fixes
@ 2015-09-17 14:31 Marek Vasut
  2015-09-17 14:31 ` [PATCH 1/8] insane: Add nios2 support Marek Vasut
                   ` (9 more replies)
  0 siblings, 10 replies; 24+ 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] 24+ messages in thread
* [PATCH 0/8] nios2 fixes
@ 2015-09-19 22:43 Marek Vasut
  2015-09-19 22:43 ` [PATCH 8/8] libgpg-error: Add support for nios2 Marek Vasut
  0 siblings, 1 reply; 24+ 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] 24+ messages in thread

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

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.