diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-11-07 02:52:01 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-11-07 03:06:33 (EST) |
commit | 6e62f084c0d8395af4743d635297984280074321 (patch) | |
tree | 592b63c35f49077f8f90b0770f40e8e461b92e24 | |
parent | a0970533a04202326943a8bf6a26953a7d2a6629 (diff) |
linux-libc-dev-common: New package
-rwxr-xr-x | build | 6 | ||||
-rw-r--r-- | changelog | 1 | ||||
-rw-r--r-- | linux-libc-dev-common.pkg/control | 11 | ||||
-rw-r--r-- | linux-libc-dev.pkg/control | 4 |
4 files changed, 18 insertions, 4 deletions
@@ -53,11 +53,11 @@ install: build linux-image.data/etc/kernel/postrm.d; \ fi oh-autoinstall -T headers_install -- \ - INSTALL_HDR_PATH="$${PWD}/linux-libc-dev.data/usr" - find linux-libc-dev.data/usr/include \ + INSTALL_HDR_PATH="$${PWD}/linux-libc-dev-common.data/usr" + find linux-libc-dev-common.data/usr/include \ \( -name .install -o -name ..install.cmd \ -o -name .check -o -name ..check.cmd \) \ -a -exec rm -f '{}' ';' mkdir linux-libc-dev.data/usr/include/$(OPK_HOST_ARCH) - mv linux-libc-dev.data/usr/include/asm \ + mv linux-libc-dev-common.data/usr/include/asm \ linux-libc-dev.data/usr/include/$(OPK_HOST_ARCH)/asm @@ -15,6 +15,7 @@ linux-libre-4.19 (4.19.56+gnu-1) trunk * Add libncurses.6-dev and terminfo to Build-Depends for convenience when building and running upstream mconf (menuconfig). * Organize packages into sections. + - Split architecture-independent headers into new linux-libc-dev package. -- Patrick McDermott <patrick.mcdermott@libiquity.com> Fri, 28 Jun 2019 18:50:56 -0400 diff --git a/linux-libc-dev-common.pkg/control b/linux-libc-dev-common.pkg/control new file mode 100644 index 0000000..457fea8 --- /dev/null +++ b/linux-libc-dev-common.pkg/control @@ -0,0 +1,11 @@ +Architecture: all +Platform: all +Section: share +Depends: linux-common (= ${Source-Version}) +Description: Linux support headers for userspace development - arch-independent + This package provides headers that define interfaces for userspace libraries + and programs. These headers are used by BusyBox and the C library, for + example. + . + This package provides only the architecture-independent Linux header files. + For a complete set of Linux headers, install linux-libc-dev. diff --git a/linux-libc-dev.pkg/control b/linux-libc-dev.pkg/control index 7ffb119..ed84f5a 100644 --- a/linux-libc-dev.pkg/control +++ b/linux-libc-dev.pkg/control @@ -1,6 +1,8 @@ Architecture: any-linux-any Platform: all -Depends: linux-common (= ${Source-Version}) +Section: libdev +Depends: linux-common (= ${Source-Version}), + linux-libc-dev-common (= ${Source-Version}), Description: Linux support headers for userspace development This package provides headers that define interfaces for userspace libraries and programs. These headers are used by BusyBox and the C library, for |