morpheus

suckless linux distro
git clone git://git.2f30.org/morpheus
Log | Files | Refs | Submodules | README | LICENSE

commit 759a1348202bc46c07dfc8cae2e54ebb7e747a3f
parent 33ec3100cd3763d2f0e061af0d9820bf89147e59
Author: sin <sin@2f30.org>
Date:   Tue,  4 Mar 2014 11:32:41 +0000

Remove kernel_headers package

We don't need this currently, the cross compiler we use has its own
set of kernel headers.

When we compile musl from source we can revisit this.

Diffstat:
Mpkgs/9base | 2+-
Mpkgs/busybox | 2+-
Mpkgs/kernel | 3++-
Dpkgs/kernel_headers | 6------
4 files changed, 4 insertions(+), 9 deletions(-)

diff --git a/pkgs/9base b/pkgs/9base @@ -1,6 +1,6 @@ git="git://git.suckless.org/9base" -build: crossmusl kernel_headers +build: crossmusl targets="mk sed awk" cd src/9base make clean diff --git a/pkgs/busybox b/pkgs/busybox @@ -1,7 +1,7 @@ v="1.22.1" url="http://www.busybox.net/downloads/busybox-$v.tar.bz2" -build: crossmusl kernel_headers +build: crossmusl cd src/busybox-$v cp $top/stuff/busybox.config .config make -j$nprocs CC=$CC busybox diff --git a/pkgs/kernel b/pkgs/kernel @@ -1,6 +1,7 @@ v="3.10.32" +url="$mirror/kernel.tar.gz" -build: crossmusl kernel_headers +build: crossmusl cd src/linux-$v cp "$top/stuff/kernel-config-$arch" .config if test "$arch" = "x86_64"; then diff --git a/pkgs/kernel_headers b/pkgs/kernel_headers @@ -1,6 +0,0 @@ -v="3.10.32" -url="$mirror/kernel.tar.gz" - -build: crossmusl - cd src/linux-$v - cp -a include/* "$root/include/"