linux4.10: removed, EOL 2017-05-20
This commit is contained in:
parent
6f233d9048
commit
0fe702712c
|
@ -1 +0,0 @@
|
||||||
linux4.10
|
|
|
@ -1 +0,0 @@
|
||||||
linux4.10
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,7 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
mod=$1
|
|
||||||
mkdir -p usr/lib/debug/${mod%/*}
|
|
||||||
$OBJCOPY --only-keep-debug --compress-debug-sections $mod usr/lib/debug/$mod
|
|
||||||
$OBJCOPY --add-gnu-debuglink=${DESTDIR}/usr/lib/debug/$mod $mod
|
|
||||||
/usr/bin/$STRIP --strip-debug $mod
|
|
||||||
gzip -9 $mod
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,22 +0,0 @@
|
||||||
--- linux-4.9.3/net/ceph/snapshot.c.orig
|
|
||||||
+++ linux-4.9.3/net/ceph/snapshot.c
|
|
||||||
@@ -18,8 +18,6 @@
|
|
||||||
* 02110-1301, USA.
|
|
||||||
*/
|
|
||||||
|
|
||||||
-#include <stddef.h>
|
|
||||||
-
|
|
||||||
#include <linux/types.h>
|
|
||||||
#include <linux/export.h>
|
|
||||||
#include <linux/ceph/libceph.h>
|
|
||||||
--- a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_shim.c
|
|
||||||
+++ b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_shim.c
|
|
||||||
@@ -39,8 +39,6 @@
|
|
||||||
|
|
||||||
#include "vchiq_util.h"
|
|
||||||
|
|
||||||
-#include <stddef.h>
|
|
||||||
-
|
|
||||||
#define vchiq_status_to_vchi(status) ((int32_t)status)
|
|
||||||
|
|
||||||
typedef struct {
|
|
|
@ -1,95 +0,0 @@
|
||||||
From e36d607d56dc5c0cbf2cb600e7686b559ea77b44 Mon Sep 17 00:00:00 2001
|
|
||||||
From: popcornmix <popcornmix@gmail.com>
|
|
||||||
Date: Tue, 18 Feb 2014 01:43:50 -0300
|
|
||||||
Subject: [PATCH] net/smsc95xx: Allow mac address to be set as a parameter
|
|
||||||
|
|
||||||
---
|
|
||||||
drivers/net/usb/smsc95xx.c | 56 ++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
1 file changed, 56 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/drivers/net/usb/smsc95xx.c b/drivers/net/usb/smsc95xx.c
|
|
||||||
index dc989a8..912be75 100644
|
|
||||||
--- a/drivers/net/usb/smsc95xx.c
|
|
||||||
+++ b/drivers/net/usb/smsc95xx.c
|
|
||||||
@@ -60,6 +60,7 @@
|
|
||||||
#define SUSPEND_SUSPEND3 (0x08)
|
|
||||||
#define SUSPEND_ALLMODES (SUSPEND_SUSPEND0 | SUSPEND_SUSPEND1 | \
|
|
||||||
SUSPEND_SUSPEND2 | SUSPEND_SUSPEND3)
|
|
||||||
+#define MAC_ADDR_LEN (6)
|
|
||||||
|
|
||||||
#define CARRIER_CHECK_DELAY (2 * HZ)
|
|
||||||
|
|
||||||
@@ -80,6 +81,10 @@ static bool turbo_mode = true;
|
|
||||||
module_param(turbo_mode, bool, 0644);
|
|
||||||
MODULE_PARM_DESC(turbo_mode, "Enable multiple frames per Rx transaction");
|
|
||||||
|
|
||||||
+static char *macaddr = ":";
|
|
||||||
+module_param(macaddr, charp, 0);
|
|
||||||
+MODULE_PARM_DESC(macaddr, "MAC address");
|
|
||||||
+
|
|
||||||
static int __must_check __smsc95xx_read_reg(struct usbnet *dev, u32 index,
|
|
||||||
u32 *data, int in_pm)
|
|
||||||
{
|
|
||||||
@@ -809,8 +814,59 @@ static int smsc95xx_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd)
|
|
||||||
return generic_mii_ioctl(&dev->mii, if_mii(rq), cmd, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
+/* Check the macaddr module parameter for a MAC address */
|
|
||||||
+static int smsc95xx_is_macaddr_param(struct usbnet *dev, u8 *dev_mac)
|
|
||||||
+{
|
|
||||||
+ int i, j, got_num, num;
|
|
||||||
+ u8 mtbl[MAC_ADDR_LEN];
|
|
||||||
+
|
|
||||||
+ if (macaddr[0] == ':')
|
|
||||||
+ return 0;
|
|
||||||
+
|
|
||||||
+ i = 0;
|
|
||||||
+ j = 0;
|
|
||||||
+ num = 0;
|
|
||||||
+ got_num = 0;
|
|
||||||
+ while (j < MAC_ADDR_LEN) {
|
|
||||||
+ if (macaddr[i] && macaddr[i] != ':') {
|
|
||||||
+ got_num++;
|
|
||||||
+ if ('0' <= macaddr[i] && macaddr[i] <= '9')
|
|
||||||
+ num = num * 16 + macaddr[i] - '0';
|
|
||||||
+ else if ('A' <= macaddr[i] && macaddr[i] <= 'F')
|
|
||||||
+ num = num * 16 + 10 + macaddr[i] - 'A';
|
|
||||||
+ else if ('a' <= macaddr[i] && macaddr[i] <= 'f')
|
|
||||||
+ num = num * 16 + 10 + macaddr[i] - 'a';
|
|
||||||
+ else
|
|
||||||
+ break;
|
|
||||||
+ i++;
|
|
||||||
+ } else if (got_num == 2) {
|
|
||||||
+ mtbl[j++] = (u8) num;
|
|
||||||
+ num = 0;
|
|
||||||
+ got_num = 0;
|
|
||||||
+ i++;
|
|
||||||
+ } else {
|
|
||||||
+ break;
|
|
||||||
+ }
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ if (j == MAC_ADDR_LEN) {
|
|
||||||
+ netif_dbg(dev, ifup, dev->net, "Overriding MAC address with: "
|
|
||||||
+ "%02x:%02x:%02x:%02x:%02x:%02x\n", mtbl[0], mtbl[1], mtbl[2],
|
|
||||||
+ mtbl[3], mtbl[4], mtbl[5]);
|
|
||||||
+ for (i = 0; i < MAC_ADDR_LEN; i++)
|
|
||||||
+ dev_mac[i] = mtbl[i];
|
|
||||||
+ return 1;
|
|
||||||
+ } else {
|
|
||||||
+ return 0;
|
|
||||||
+ }
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
static void smsc95xx_init_mac_address(struct usbnet *dev)
|
|
||||||
{
|
|
||||||
+ /* Check module parameters */
|
|
||||||
+ if (smsc95xx_is_macaddr_param(dev, dev->net->dev_addr))
|
|
||||||
+ return;
|
|
||||||
+
|
|
||||||
const u8 *mac_addr;
|
|
||||||
|
|
||||||
/* maybe the boot loader passed the MAC address in devicetree */
|
|
||||||
--
|
|
||||||
2.10.2
|
|
||||||
|
|
|
@ -1,281 +0,0 @@
|
||||||
# Template file for 'linux4.10'
|
|
||||||
pkgname=linux4.10
|
|
||||||
version=4.10.17
|
|
||||||
revision=1
|
|
||||||
patch_args="-Np1"
|
|
||||||
wrksrc="linux-${version}"
|
|
||||||
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
||||||
homepage="http://www.kernel.org"
|
|
||||||
license="GPL-2"
|
|
||||||
short_desc="The Linux kernel and modules (${version%.*} series)"
|
|
||||||
distfiles="https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-${version}.tar.xz"
|
|
||||||
checksum=1ae7056b5b6a3fb653b065503afeb514afc870e103b0f857d0d13a6d06fd66ee
|
|
||||||
|
|
||||||
nodebug=yes # -dbg package is generated below manually
|
|
||||||
nostrip=yes
|
|
||||||
noverifyrdeps=yes
|
|
||||||
noshlibprovides=yes
|
|
||||||
preserve=yes
|
|
||||||
|
|
||||||
only_for_archs="i686 i686-musl x86_64 x86_64-musl armv7l armv7l-musl aarch64 aarch64-musl"
|
|
||||||
hostmakedepends="bc perl kmod uboot-mkimage libressl-devel"
|
|
||||||
|
|
||||||
_kernver="${version}_${revision}"
|
|
||||||
triggers="kernel-hooks"
|
|
||||||
kernel_hooks_version="${_kernver}"
|
|
||||||
|
|
||||||
# These files could be modified when an external module is built.
|
|
||||||
mutable_files="
|
|
||||||
/usr/lib/modules/${_kernver}/modules.builtin.bin
|
|
||||||
/usr/lib/modules/${_kernver}/modules.softdep
|
|
||||||
/usr/lib/modules/${_kernver}/modules.dep
|
|
||||||
/usr/lib/modules/${_kernver}/modules.dep.bin
|
|
||||||
/usr/lib/modules/${_kernver}/modules.symbols
|
|
||||||
/usr/lib/modules/${_kernver}/modules.symbols.bin
|
|
||||||
/usr/lib/modules/${_kernver}/modules.alias
|
|
||||||
/usr/lib/modules/${_kernver}/modules.alias.bin
|
|
||||||
/usr/lib/modules/${_kernver}/modules.devname"
|
|
||||||
|
|
||||||
do_configure() {
|
|
||||||
# If there's a file called <arch>-dotconfig, use it to
|
|
||||||
# configure the kernel; otherwise use arch defaults and all stuff
|
|
||||||
# as modules (defconfig+allmodconfig).
|
|
||||||
local arch _args
|
|
||||||
|
|
||||||
case "$XBPS_TARGET_MACHINE" in
|
|
||||||
i686*) arch=i386;;
|
|
||||||
x86_64*) arch=x86_64;;
|
|
||||||
armv7*) arch=arm;;
|
|
||||||
aarch64*) arch=arm64;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ "$CROSS_BUILD" ]; then
|
|
||||||
_args="CROSS_COMPILE=${XBPS_CROSS_TRIPLET}-"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -f ${FILESDIR}/${arch}-dotconfig-custom ]; then
|
|
||||||
msg_normal "Detected a custom .config file for your arch, using it.\n"
|
|
||||||
cp -f ${FILESDIR}/${arch}-dotconfig-custom .config
|
|
||||||
make ${makejobs} ARCH=$arch ${_args} oldconfig
|
|
||||||
elif [ -f ${FILESDIR}/${arch}-dotconfig ]; then
|
|
||||||
msg_normal "Detected a .config file for your arch, using it.\n"
|
|
||||||
cp -f ${FILESDIR}/${arch}-dotconfig .config
|
|
||||||
make ${makejobs} ARCH=$arch ${_args} oldconfig
|
|
||||||
else
|
|
||||||
msg_normal "Defaulting to 'defconfig and allmodconfig'.\n"
|
|
||||||
make ${makejobs} ARCH=$arch ${_args} defconfig
|
|
||||||
make ${makejobs} ARCH=$arch ${_args} allmodconfig
|
|
||||||
fi
|
|
||||||
# Always use our revision to CONFIG_LOCALVERSION to match our pkg version.
|
|
||||||
sed -i -e "s|^\(CONFIG_LOCALVERSION=\).*|\1\"_${revision}\"|" .config
|
|
||||||
}
|
|
||||||
do_build() {
|
|
||||||
local arch _cross _args
|
|
||||||
|
|
||||||
case "$XBPS_TARGET_MACHINE" in
|
|
||||||
i686*) _args="bzImage modules"; arch=i386;;
|
|
||||||
x86_64*) _args="bzImage modules"; arch=x86_64;;
|
|
||||||
armv7*) _args="zImage modules dtbs"; arch=arm;;
|
|
||||||
aarch64*) _args="Image modules dtbs"; arch=arm64;;
|
|
||||||
esac
|
|
||||||
if [ "$CROSS_BUILD" ]; then
|
|
||||||
_cross="CROSS_COMPILE=${XBPS_CROSS_TRIPLET}-"
|
|
||||||
fi
|
|
||||||
if [ "${_patchver}" ]; then
|
|
||||||
_version="EXTRAVERSION=${_patchver}"
|
|
||||||
fi
|
|
||||||
export LDFLAGS=
|
|
||||||
make ARCH=$arch ${_version} ${_cross} ${makejobs} prepare
|
|
||||||
make ARCH=$arch ${_version} ${_cross} ${makejobs} ${_args}
|
|
||||||
}
|
|
||||||
do_install() {
|
|
||||||
local arch subarch _args hdrdest
|
|
||||||
|
|
||||||
case "$XBPS_TARGET_MACHINE" in
|
|
||||||
i686*) arch=x86; subarch=i386;;
|
|
||||||
x86_64*) arch=x86; subarch=x86_64;;
|
|
||||||
armv7*) arch=arm;;
|
|
||||||
aarch64*) arch=arm64;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Run depmod after compressing modules.
|
|
||||||
sed -i '2iexit 0' scripts/depmod.sh
|
|
||||||
|
|
||||||
# Install kernel, firmware and modules
|
|
||||||
make ${makejobs} INSTALL_MOD_PATH=${DESTDIR} modules_install
|
|
||||||
|
|
||||||
hdrdest=${DESTDIR}/usr/src/kernel-headers-${_kernver}
|
|
||||||
|
|
||||||
vinstall .config 644 boot config-${_kernver}
|
|
||||||
vinstall System.map 644 boot System.map-${_kernver}
|
|
||||||
|
|
||||||
case "$arch" in
|
|
||||||
x86)
|
|
||||||
vinstall arch/x86/boot/bzImage 644 boot vmlinuz-${_kernver}
|
|
||||||
;;
|
|
||||||
arm)
|
|
||||||
vinstall arch/arm/boot/zImage 644 boot
|
|
||||||
vmkdir boot/dtbs
|
|
||||||
cp arch/arm/boot/dts/*.dtb ${DESTDIR}/boot/dtbs
|
|
||||||
;;
|
|
||||||
arm64)
|
|
||||||
vinstall arch/arm64/boot/Image 644 boot vmlinux-${_kernver}
|
|
||||||
vmkdir boot/dtbs
|
|
||||||
cp arch/arm64/boot/dts/*/*.dtb ${DESTDIR}/boot/dtbs
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Switch to /usr.
|
|
||||||
vmkdir usr
|
|
||||||
mv ${DESTDIR}/lib ${DESTDIR}/usr
|
|
||||||
|
|
||||||
cd ${DESTDIR}/usr/lib/modules/${_kernver}
|
|
||||||
rm -f source build
|
|
||||||
ln -sf ../../../src/kernel-headers-${_kernver} build
|
|
||||||
|
|
||||||
cd ${wrksrc}
|
|
||||||
# Install required headers to build external modules
|
|
||||||
install -Dm644 Makefile ${hdrdest}/Makefile
|
|
||||||
install -Dm644 kernel/Makefile ${hdrdest}/kernel/Makefile
|
|
||||||
install -Dm644 .config ${hdrdest}/.config
|
|
||||||
mkdir -p ${hdrdest}/include
|
|
||||||
# Remove firmware stuff provided by the "linux-firmware" pkg.
|
|
||||||
rm -rf ${DESTDIR}/usr/lib/firmware
|
|
||||||
|
|
||||||
for i in acpi asm-generic config crypto drm generated linux math-emu \
|
|
||||||
media net pcmcia scsi sound trace uapi video xen; do
|
|
||||||
if [ -d include/$i ]; then
|
|
||||||
cp -a include/$i ${hdrdest}/include
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
cd ${wrksrc}
|
|
||||||
mkdir -p ${hdrdest}/arch/${arch}
|
|
||||||
cp -a arch/${arch}/include ${hdrdest}/arch/${arch}
|
|
||||||
|
|
||||||
# Copy files necessary for later builds, like nvidia and vmware
|
|
||||||
cp Module.symvers ${hdrdest}
|
|
||||||
cp -a scripts ${hdrdest}
|
|
||||||
|
|
||||||
mkdir -p ${hdrdest}/arch/${arch}/kernel
|
|
||||||
cp arch/${arch}/Makefile ${hdrdest}/arch/${arch}
|
|
||||||
if [ "$subarch" = "i386" ]; then
|
|
||||||
mkdir -p ${hdrdest}/arch/x86
|
|
||||||
cp arch/x86/Makefile_32.cpu ${hdrdest}/arch/x86
|
|
||||||
fi
|
|
||||||
if [ "$arch" = "x86" ]; then
|
|
||||||
mkdir -p ${hdrdest}/arch/x86/kernel
|
|
||||||
cp arch/x86/kernel/asm-offsets.s ${hdrdest}/arch/x86/kernel
|
|
||||||
fi
|
|
||||||
|
|
||||||
# add headers for lirc package
|
|
||||||
# pci
|
|
||||||
for i in bt8xx cx88 saa7134; do
|
|
||||||
mkdir -p ${hdrdest}/drivers/media/pci/${i}
|
|
||||||
cp -a drivers/media/pci/${i}/*.h ${hdrdest}/drivers/media/pci/${i}
|
|
||||||
done
|
|
||||||
# usb
|
|
||||||
for i in cpia2 em28xx pwc; do
|
|
||||||
mkdir -p ${hdrdest}/drivers/media/usb/${i}
|
|
||||||
cp -a drivers/media/usb/${i}/*.h ${hdrdest}/drivers/media/usb/${i}
|
|
||||||
done
|
|
||||||
# i2c
|
|
||||||
mkdir -p ${hdrdest}/drivers/media/i2c
|
|
||||||
cp drivers/media/i2c/*.h ${hdrdest}/drivers/media/i2c
|
|
||||||
for i in cx25840; do
|
|
||||||
mkdir -p ${hdrdest}/drivers/media/i2c/${i}
|
|
||||||
cp -a drivers/media/i2c/${i}/*.h ${hdrdest}/drivers/media/i2c/${i}
|
|
||||||
done
|
|
||||||
|
|
||||||
# Add docbook makefile
|
|
||||||
install -Dm644 Documentation/DocBook/Makefile \
|
|
||||||
${hdrdest}/Documentation/DocBook/Makefile
|
|
||||||
|
|
||||||
# Add md headers
|
|
||||||
mkdir -p ${hdrdest}/drivers/md
|
|
||||||
cp drivers/md/*.h ${hdrdest}/drivers/md
|
|
||||||
|
|
||||||
# Add inotify.h
|
|
||||||
mkdir -p ${hdrdest}/include/linux
|
|
||||||
cp include/linux/inotify.h ${hdrdest}/include/linux
|
|
||||||
|
|
||||||
# Add wireless headers
|
|
||||||
mkdir -p ${hdrdest}/net/mac80211/
|
|
||||||
cp net/mac80211/*.h ${hdrdest}/net/mac80211
|
|
||||||
|
|
||||||
# add dvb headers for external modules
|
|
||||||
mkdir -p ${hdrdest}/drivers/media/dvb-core
|
|
||||||
cp drivers/media/dvb-core/*.h ${hdrdest}/drivers/media/dvb-core/
|
|
||||||
mkdir -p ${hdrdest}/include/config/dvb/
|
|
||||||
cp include/config/dvb/*.h ${hdrdest}/include/config/dvb/
|
|
||||||
|
|
||||||
# add dvb headers for http://mcentral.de/hg/~mrec/em28xx-new
|
|
||||||
mkdir -p ${hdrdest}/drivers/media/dvb-frontends
|
|
||||||
cp drivers/media/dvb-frontends/lgdt330x.h \
|
|
||||||
${hdrdest}/drivers/media/dvb-frontends/
|
|
||||||
cp drivers/media/i2c/msp3400-driver.h ${hdrdest}/drivers/media/i2c/
|
|
||||||
|
|
||||||
# add dvb headers
|
|
||||||
mkdir -p ${hdrdest}/drivers/media/usb/dvb-usb
|
|
||||||
cp drivers/media/usb/dvb-usb/*.h ${hdrdest}/drivers/media/usb/dvb-usb/
|
|
||||||
mkdir -p ${hdrdest}/drivers/media/dvb-frontends
|
|
||||||
cp drivers/media/dvb-frontends/*.h ${hdrdest}/drivers/media/dvb-frontends/
|
|
||||||
mkdir -p ${hdrdest}/drivers/media/tuners
|
|
||||||
cp drivers/media/tuners/*.h ${hdrdest}/drivers/media/tuners/
|
|
||||||
|
|
||||||
# Add xfs and shmem for aufs building
|
|
||||||
mkdir -p ${hdrdest}/fs/xfs/libxfs
|
|
||||||
mkdir -p ${hdrdest}/mm
|
|
||||||
cp fs/xfs/libxfs/xfs_sb.h ${hdrdest}/fs/xfs/libxfs/xfs_sb.h
|
|
||||||
|
|
||||||
# Copy in Kconfig files
|
|
||||||
for i in $(find . -name "Kconfig*"); do
|
|
||||||
mkdir -p ${hdrdest}/$(echo $i | sed 's|/Kconfig.*||')
|
|
||||||
cp $i ${hdrdest}/$i
|
|
||||||
done
|
|
||||||
|
|
||||||
# Remove unneeded architectures
|
|
||||||
case "$arch" in
|
|
||||||
i386|x86_64) _args="arm*";;
|
|
||||||
arm|arm64) _args="x86*";;
|
|
||||||
esac
|
|
||||||
for arch in alpha avr32 blackfin cris frv h8300 \
|
|
||||||
ia64 m* p* s* um v850 xtensa ${_args}; do
|
|
||||||
rm -rf ${hdrdest}/arch/${arch}
|
|
||||||
done
|
|
||||||
|
|
||||||
# Extract debugging symbols
|
|
||||||
msg_normal "$pkgver: extracting debug info, please wait...\n"
|
|
||||||
install -Dm644 vmlinux ${DESTDIR}/usr/lib/debug/boot/vmlinux-${_kernver}
|
|
||||||
(
|
|
||||||
cd ${DESTDIR}
|
|
||||||
export DESTDIR
|
|
||||||
find ./ -name '*.ko' -print0 | \
|
|
||||||
xargs -0r -n1 -P ${XBPS_MAKEJOBS} ${FILESDIR}/mv-debug
|
|
||||||
)
|
|
||||||
# ... and run depmod again.
|
|
||||||
depmod -b ${DESTDIR}/usr -F System.map ${_kernver}
|
|
||||||
}
|
|
||||||
|
|
||||||
linux4.10-headers_package() {
|
|
||||||
preserve=yes
|
|
||||||
nostrip=yes
|
|
||||||
noverifyrdeps=yes
|
|
||||||
noshlibprovides=yes
|
|
||||||
short_desc+=" - source headers for 3rd party modules"
|
|
||||||
pkg_install() {
|
|
||||||
vmove usr/src
|
|
||||||
vmove usr/lib/modules/${_kernver}/build
|
|
||||||
}
|
|
||||||
}
|
|
||||||
linux4.10-dbg_package() {
|
|
||||||
preserve=yes
|
|
||||||
nostrip=yes
|
|
||||||
noverifyrdeps=yes
|
|
||||||
noshlibprovides=yes
|
|
||||||
repository=debug
|
|
||||||
short_desc+=" - debugging symbols"
|
|
||||||
pkg_install() {
|
|
||||||
vmove usr/lib/debug
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue