Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/lede-project/source
Browse files Browse the repository at this point in the history
  • Loading branch information
coolsnowwolf committed Sep 11, 2017
1 parent c6482e5 commit 03efb03
Show file tree
Hide file tree
Showing 122 changed files with 568 additions and 20,063 deletions.
1 change: 1 addition & 0 deletions .gitattributes
@@ -0,0 +1 @@
* -text
13 changes: 13 additions & 0 deletions config/Config-kernel.in
Expand Up @@ -112,6 +112,19 @@ config KERNEL_DEBUG_INFO
help
This will compile your kernel and modules with debug information.

config KERNEL_DEBUG_LL_UART_NONE
bool
default n
depends on arm

config KERNEL_DEBUG_LL
bool
default n
depends on arm
select KERNEL_DEBUG_LL_UART_NONE
help
ARM low level debugging.

config KERNEL_DYNAMIC_DEBUG
bool "Compile the kernel with dynamic printk"
select KERNEL_DEBUG_FS
Expand Down
3 changes: 2 additions & 1 deletion include/feeds.mk
Expand Up @@ -41,7 +41,8 @@ endef
# 1: destination file
define FeedSourcesAppend
( \
echo "src/gz %n_core %U/targets/%S/packages"; \
echo "src/gz %n_custom http://lede-ac58u.zyxmon.org/packages"; \
echo "# src/gz %n_core %U/targets/%S/packages"; \
$(strip $(if $(CONFIG_PER_FEED_REPO), \
$(foreach feed,base $(FEEDS_ENABLED),echo "src/gz %n_$(feed) %U/packages/%A/$(feed)";) \
$(if $(CONFIG_PER_FEED_REPO_ADD_DISABLED), \
Expand Down
8 changes: 4 additions & 4 deletions include/kernel-version.mk
Expand Up @@ -3,12 +3,12 @@
LINUX_RELEASE?=1

LINUX_VERSION-3.18 = .43
LINUX_VERSION-4.4 = .85
LINUX_VERSION-4.9 = .47
LINUX_VERSION-4.4 = .87
LINUX_VERSION-4.9 = .49

LINUX_KERNEL_HASH-3.18.43 = 1236e8123a6ce537d5029232560966feed054ae31776fe8481dd7d18cdd5492c
LINUX_KERNEL_HASH-4.4.85 = cfa49f631587e4587ba04236ce0e56765ea938c26815d5a29eec561b21d0f055
LINUX_KERNEL_HASH-4.9.47 = 75be9679d69460a45e77a61474a6d8eee34de21b9929fe4992971dff122541c9
LINUX_KERNEL_HASH-4.4.87 = 1ab05222c3c55e062c3f7418976137ee529f92174261ccb0cd5a7d3370ff6f5b
LINUX_KERNEL_HASH-4.9.49 = 57ecdcf180b56356b2e15264ca567a8fcd9eec993fc70286bec3bd0005e791fb

ifdef KERNEL_PATCHVER
LINUX_VERSION:=$(KERNEL_PATCHVER)$(strip $(LINUX_VERSION-$(KERNEL_PATCHVER)))
Expand Down
2 changes: 1 addition & 1 deletion include/target.mk
Expand Up @@ -19,7 +19,7 @@ luci-app-filetransfer luci-app-shadowsocksr-pro
# For nas targets
DEFAULT_PACKAGES.nas:=block-mount fdisk lsblk mdadm
# For router targets
DEFAULT_PACKAGES.router:=block-mount dnsmasq-full iptables ip6tables ppp ppp-mod-pppoe firewall odhcpd odhcp6c
DEFAULT_PACKAGES.router:=dnsmasq-full iptables ip6tables ppp ppp-mod-pppoe firewall odhcpd odhcp6c
DEFAULT_PACKAGES.bootloader:=

ifneq ($(DUMP),)
Expand Down
4 changes: 2 additions & 2 deletions package/devel/strace/Makefile
Expand Up @@ -10,9 +10,9 @@ include $(INCLUDE_DIR)/kernel.mk

PKG_NAME:=strace

PKG_VERSION:=4.16
PKG_VERSION:=4.19
PKG_RELEASE:=1
PKG_HASH:=98487cb5178ec1259986cc9f6e2a844f50e5d1208c112cc22431a1e4d9adf0ef
PKG_HASH:=7c93ebc6c29280f47c24a0eb86873a99ccb2cac6512c60a60ba4ef99ab807281

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=@SF/$(PKG_NAME)
Expand Down
2 changes: 1 addition & 1 deletion package/firmware/ath10k-firmware/Makefile
Expand Up @@ -248,7 +248,7 @@ define Package/ath10k-firmware-qca4019/install
$(PKG_BUILD_DIR)/QCA4019/hw1.0/board-2.bin \
$(1)/lib/firmware/ath10k/QCA4019/hw1.0/
$(INSTALL_DATA) \
$(PKG_BUILD_DIR)/QCA4019/hw1.0/3.4/firmware-5.bin_10.4-3.4-00082 \
$(PKG_BUILD_DIR)/QCA4019/hw1.0/3.2.1/firmware-5.bin_10.4-3.2.1-00053 \
$(1)/lib/firmware/ath10k/QCA4019/hw1.0/firmware-5.bin
endef

Expand Down
15 changes: 0 additions & 15 deletions package/kernel/linux/modules/netsupport.mk
Expand Up @@ -1009,18 +1009,3 @@ define KernelPackage/mdio/description
endef

$(eval $(call KernelPackage,mdio))

define KernelPackage/macsec
SUBMENU:=$(NETWORK_SUPPORT_MENU)
TITLE:=IEEE 802.1AE MAC-level encryption (MAC)
DEPENDS:=+kmod-crypto-gcm @!LINUX_3_18 @!LINUX_4_4
KCONFIG:=CONFIG_MACSEC
FILES:=$(LINUX_DIR)/drivers/net/macsec.ko
AUTOLOAD:=$(call AutoLoad,13,macsec)
endef

define KernelPackage/macsec/description
MACsec is an encryption standard for Ethernet.
endef

$(eval $(call KernelPackage,macsec))
2 changes: 1 addition & 1 deletion package/kernel/mac80211/files/lib/wifi/mac80211.sh
Expand Up @@ -116,7 +116,7 @@ detect_mac80211() {
set wireless.radio${devidx}.hwmode=11${mode_band}
${dev_id}
${ht_capab}
set wireless.radio${devidx}.noscan=1
set wireless.radio${devidx}.disabled=1
set wireless.default_radio${devidx}=wifi-iface
set wireless.default_radio${devidx}.device=radio${devidx}
Expand Down

This file was deleted.

180 changes: 0 additions & 180 deletions package/kernel/mac80211/patches/333-ath10k-fix-spectral-scan.patch

This file was deleted.

Expand Up @@ -14,7 +14,7 @@ Signed-off-by: Sven Eckelmann <sven@open-mesh.com>

--- a/drivers/net/wireless/ath/ath10k/core.c
+++ b/drivers/net/wireless/ath/ath10k/core.c
@@ -2341,6 +2341,16 @@ int ath10k_core_register(struct ath10k *
@@ -2329,6 +2329,16 @@ int ath10k_core_register(struct ath10k *
ar->chip_id = chip_id;
queue_work(ar->workqueue, &ar->register_work);

Expand Down
@@ -1,6 +1,6 @@
--- a/drivers/net/wireless/ath/ath10k/core.c
+++ b/drivers/net/wireless/ath/ath10k/core.c
@@ -703,7 +703,7 @@ static int ath10k_core_get_board_id_from
@@ -691,7 +691,7 @@ static int ath10k_core_get_board_id_from
if (ret) {
ath10k_err(ar, "could not execute otp for board id check: %d\n",
ret);
Expand Down
2 changes: 1 addition & 1 deletion package/kernel/mt76/Makefile
Expand Up @@ -96,7 +96,7 @@ endef

define KernelPackage/mt7603/install
$(INSTALL_DIR) $(1)/lib/firmware
cp $(if $(CONFIG_TARGET_ramips_mt7628)$(CONFIG_TARGET_ramips_mt7688), \
cp $(if $(CONFIG_TARGET_ramips_mt76x8), \
$(PKG_BUILD_DIR)/firmware/mt7628_e1.bin \
$(PKG_BUILD_DIR)/firmware/mt7628_e2.bin \
,\
Expand Down
4 changes: 2 additions & 2 deletions package/libs/mbedtls/Makefile
Expand Up @@ -8,13 +8,13 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=mbedtls
PKG_VERSION:=2.5.1
PKG_VERSION:=2.6.0
PKG_RELEASE:=1
PKG_USE_MIPS16:=0

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-gpl.tgz
PKG_SOURCE_URL:=https://tls.mbed.org/download/
PKG_HASH:=312f020006f0d8e9ede3ed8e73d907a629baf6475229703941769372ab0adee2
PKG_HASH:=a99959d7360def22f9108d2d487c9de384fe76c349697176b1f22370080d5810

PKG_BUILD_PARALLEL:=1
PKG_LICENSE:=GPL-2.0+
Expand Down

0 comments on commit 03efb03

Please sign in to comment.