changeset 1663:8c8256e18ad2

Clean up some minor kernel version bit-rot.
author Rob Landley <rob@landley.net>
date Wed, 02 Jul 2014 20:04:18 -0500
parents 970b405bd6e6
children 35b8949e9d9c
files sources/baseconfig-linux sources/sections/linux-headers.sh
diffstat 2 files changed, 2 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/sources/baseconfig-linux	Mon Jun 23 06:59:56 2014 -0500
+++ b/sources/baseconfig-linux	Wed Jul 02 20:04:18 2014 -0500
@@ -1,4 +1,3 @@
-CONFIG_EXPERIMENTAL=y
 CONFIG_NO_HZ=y
 CONFIG_SWAP=y
 CONFIG_SYSVIPC=y
@@ -29,8 +28,6 @@
 CONFIG_INET=y
 
 CONFIG_NETDEVICES=y
-CONFIG_NET_ETHERNET=y
-CONFIG_NET_PCI=y
 CONFIG_8139CP=y
 
 CONFIG_HW_RANDOM=y
--- a/sources/sections/linux-headers.sh	Mon Jun 23 06:59:56 2014 -0500
+++ b/sources/sections/linux-headers.sh	Wed Jul 02 20:04:18 2014 -0500
@@ -18,7 +18,8 @@
 make -j $CPUS headers_install ARCH="${KARCH}" INSTALL_HDR_PATH="$STAGE_DIR" \
   $VERBOSITY &&
 # This makes some very old package builds happy.
-ln -s ../sys/user.h "$STAGE_DIR/include/asm/page.h"
+[ ! -e "$STAGE_DIR/include/asm/page.h" ] &&
+  ln -sf ../sys/user.h "$STAGE_DIR/include/asm/page.h"
 
 cleanup