All of lore.kernel.org
 help / color / mirror / Atom feed
From: Denys Dmytriyenko <denis@denix.org>
To: meta-arago@arago-project.org
Subject: [PATCH 03/26] linux-libc-headers: remove version 4.1, default to 4.4
Date: Thu, 31 Mar 2016 23:41:23 -0400	[thread overview]
Message-ID: <1459482106-27723-4-git-send-email-denis@denix.org> (raw)
In-Reply-To: <1459482106-27723-1-git-send-email-denis@denix.org>

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 .../linux-libc-headers/linux-libc-headers.inc      | 75 ----------------------
 .../linux-libc-headers/linux-libc-headers_4.1.bb   |  7 --
 2 files changed, 82 deletions(-)
 delete mode 100644 meta-arago-distro/recipes-kernel/linux-libc-headers/linux-libc-headers.inc
 delete mode 100644 meta-arago-distro/recipes-kernel/linux-libc-headers/linux-libc-headers_4.1.bb

diff --git a/meta-arago-distro/recipes-kernel/linux-libc-headers/linux-libc-headers.inc b/meta-arago-distro/recipes-kernel/linux-libc-headers/linux-libc-headers.inc
deleted file mode 100644
index 566bc1e..0000000
--- a/meta-arago-distro/recipes-kernel/linux-libc-headers/linux-libc-headers.inc
+++ /dev/null
@@ -1,75 +0,0 @@
-SUMMARY = "Sanitized set of kernel headers for the C library's use"
-SECTION = "devel"
-LICENSE = "GPLv2"
-
-#########################################################################
-####                        PLEASE READ 
-#########################################################################
-#
-# You're probably looking here thinking you need to create some new copy
-# of linux-libc-headers since you have your own custom kernel. To put 
-# this simply, you DO NOT.
-#
-# Why? These headers are used to build the libc. If you customise the 
-# headers you are customising the libc and the libc becomes machine
-# specific. Most people do not add custom libc extensions to the kernel
-# and have a machine specific libc.
-#
-# But you have some kernel headers you need for some driver? That is fine
-# but get them from STAGING_KERNEL_DIR where the kernel installs itself.
-# This will make the package using them machine specific but this is much
-# better than having a machine specific C library. This does mean your 
-# recipe needs a DEPENDS += "virtual/kernel" but again, that is fine and
-# makes total sense.
-#
-# There can also be a case where your kernel extremely old and you want
-# an older libc ABI for that old kernel. The headers installed by this
-# recipe should still be a standard mainline kernel, not your own custom 
-# one.
-#
-# -- RP
-
-LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
-
-python __anonymous () {
-    major = d.getVar("PV",True).split('.')[0]
-    if major == "3":
-        d.setVar("HEADER_FETCH_VER", "3.0")
-    elif major == "4":
-        d.setVar("HEADER_FETCH_VER", "4.x")
-    else:
-        d.setVar("HEADER_FETCH_VER", "2.6")
-}
-
-inherit kernel-arch
-
-KORG_ARCHIVE_COMPRESSION ?= "bz2"
-
-SRC_URI = "${KERNELORG_MIRROR}/linux/kernel/v${HEADER_FETCH_VER}/linux-${PV}.tar.${KORG_ARCHIVE_COMPRESSION}"
-
-S = "${WORKDIR}/linux-${PV}"
-
-do_configure() {
-	oe_runmake allnoconfig
-}
-
-do_compile () {
-}
-
-do_install() {
-	oe_runmake headers_install INSTALL_HDR_PATH=${D}${exec_prefix}
-	# Kernel should not be exporting this header
-	rm -f ${D}${exec_prefix}/include/scsi/scsi.h
-
-	# The ..install.cmd conflicts between various configure runs
-	find ${D}${includedir} -name ..install.cmd | xargs rm -f
-}
-
-BBCLASSEXTEND = "nativesdk"
-
-#DEPENDS = "cross-linkage"
-RDEPENDS_${PN}-dev = ""
-RRECOMMENDS_${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})"
-
-INHIBIT_DEFAULT_DEPS = "1"
-DEPENDS += "unifdef-native"
diff --git a/meta-arago-distro/recipes-kernel/linux-libc-headers/linux-libc-headers_4.1.bb b/meta-arago-distro/recipes-kernel/linux-libc-headers/linux-libc-headers_4.1.bb
deleted file mode 100644
index d816e5e..0000000
--- a/meta-arago-distro/recipes-kernel/linux-libc-headers/linux-libc-headers_4.1.bb
+++ /dev/null
@@ -1,7 +0,0 @@
-KORG_ARCHIVE_COMPRESSION = "xz"
-
-require linux-libc-headers.inc
-
-SRC_URI[md5sum] = "fe9dc0f6729f36400ea81aa41d614c37"
-SRC_URI[sha256sum] = "caf51f085aac1e1cea4d00dbbf3093ead07b551fc07b31b2a989c05f8ea72d9f"
-
-- 
2.2.0



  parent reply	other threads:[~2016-04-01  3:42 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-01  3:41 [PATCH 00/26] Initial batch of fixes for master/krogoth Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 01/26] recipes-qt: remove all traces of qt4, no longer in oe-core Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 02/26] gstreamer: remove outdated 0.10.x version, " Denys Dmytriyenko
2016-04-01  3:41 ` Denys Dmytriyenko [this message]
2016-04-01  3:41 ` [PATCH 04/26] linux: remove bbappends for old kernel versions, removed from meta-ti Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 05/26] wpa-gui-e: remove, as no longer supported and requiring qt4 Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 06/26] u-boot-fw-utils: remove old version Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 07/26] cryptodev-tests: remove, the change got upstreamed Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 08/26] udev: rename bbappends to eudev, add symlink for libudev.so.0 Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 09/26] gstreamer: overlay .inc files from fido and update 1.2.3 recipes Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 10/26] liboil: overlay locally for gstreamer-1.2.3 dependency Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 11/26] obexd: fix typo in license URL Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 12/26] cpuloadgen: fix cross-compilation by passing correct parameters Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 13/26] eventdump: " Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 14/26] serialcheck: " Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 15/26] omapconf: bump SRCREV to pick up gcc-5 fixes Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 16/26] ltp-ddt: fix make scripts failure due to new kernel task dependencies Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 17/26] python3: fix configure failure to find cross-version of readelf Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 18/26] packagegroup-arago-console: alsa-utils-alsaconf got renamed to alsa-utils-scripts Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 19/26] HACK: weston-init: overlay locally due to REQUIRED_DISTRO_FEATURES = "opengl" Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 20/26] HACK: dt: disable for now as breaking with gcc-5 Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 21/26] FIXME: external-linaro-toolchain-cross: target Linaro gcc version doesn't match cross version Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 22/26] branding-core: disable SGX for now, until drivers updated for 4.4 Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 23/26] external-linaro-toolchain.bbappend: drop unneeded fixes for broken 2015.05 Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 24/26] arago-prefs: update toolchain preferences, drop gstreamer 0.10 Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 25/26] toolchain*.inc: update toolchain preferences Denys Dmytriyenko
2016-04-01  3:41 ` [PATCH 26/26] arago.conf: disable bluez5, disable -fstack-protector, restore git-native ASSUME_PROVIDED Denys Dmytriyenko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1459482106-27723-4-git-send-email-denis@denix.org \
    --to=denis@denix.org \
    --cc=meta-arago@arago-project.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.