Skip to content
Snippets Groups Projects
Select Git revision
  • ac3ac29158864b46430354eb1be550f0b59e63c4
  • experimental
  • master
  • v2021.1.2-ffs
  • v2021.1.1-ffs
  • nrb/gluon-master-cpe510
  • v2021.1-ffs
  • v2020.2.3-ffs
  • nrbffs/fastd-remove-delay
  • v2020.2.2-ffs
  • v2020.2.1-ffs
  • v2020.2-ffs
  • v2020.2.x
  • v2020.1.3-ffs
  • v2020.1.1-ffs
  • v2020.1-ffs
  • v2019.1.2-ffs
  • v2019.1.1-ffs
  • nrb/test-radv-filter
  • v2019.1-ffs
  • nrbffs/netgear-ex6120
  • v2021.1.2-ffs0.2
  • v2021.1.2-ffs0.1
  • v2021.1.1-ffs0.4
  • v2021.1.1-ffs0.3
  • v2021.1.1-ffs0.2
  • v2021.1.1-ffs0.1
  • v2021.1-ffs0.1
  • v2020.2.3-ffs0.3
  • v2020.2.3-ffs0.2
  • v2020.2.3-ffs0.1
  • v2020.2.2-ffs0.1
  • v2020.2.1-ffs0.1
  • v2020.2-ffs0.1
  • v2020.2
  • v2020.2.x-ffs0.1
  • v2020.1.3-ffs0.1
  • v2020.1.1-ffs0.1
  • v2020.1-ffs0.1
  • v2019.1.2-ffs0.1
  • v2019.1.1-ffs0.1
41 results

multidomain.rst

Blame
  • Forked from firmware / FFS Gluon
    Source project has a limited visibility.
    0016-netifd-update-to-latest-git-master.patch 6.12 KiB
    From: Matthias Schiffer <mschiffer@universe-factory.net>
    Date: Wed, 9 Mar 2016 06:46:44 +0100
    Subject: netifd: update to latest git master
    
    diff --git a/package/network/config/netifd/Makefile b/package/network/config/netifd/Makefile
    index 619024b..84a4592 100644
    --- a/package/network/config/netifd/Makefile
    +++ b/package/network/config/netifd/Makefile
    @@ -1,13 +1,13 @@
     include $(TOPDIR)/rules.mk
     
     PKG_NAME:=netifd
    -PKG_VERSION:=2015-12-16
    +PKG_VERSION:=2016-03-31
     PKG_RELEASE=$(PKG_SOURCE_VERSION)
     
     PKG_SOURCE_PROTO:=git
    -PKG_SOURCE_URL:=http://git.openwrt.org/project/netifd.git
    +PKG_SOURCE_URL=$(OPENWRT_GIT)/project/netifd.git
     PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
    -PKG_SOURCE_VERSION:=245527193e90906451be35c2b8e972b8712ea6ab
    +PKG_SOURCE_VERSION:=6fd6be6b7f3fc4883fdc464fcbcb2b5e8d8e8174
     PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
     PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org>
     # PKG_MIRROR_MD5SUM:=
    diff --git a/package/network/config/netifd/files/etc/init.d/network b/package/network/config/netifd/files/etc/init.d/network
    index 542fc08..bdadbbc 100755
    --- a/package/network/config/netifd/files/etc/init.d/network
    +++ b/package/network/config/netifd/files/etc/init.d/network
    @@ -21,7 +21,6 @@ start_service() {
     	procd_set_param watch network.interface
     	[ -e /proc/sys/kernel/core_pattern ] && {
     		procd_set_param limits core="unlimited"
    -		echo '/tmp/%e.%p.%s.%t.core' > /proc/sys/kernel/core_pattern
     	}
     	procd_close_instance
     }
    diff --git a/package/network/config/netifd/files/sbin/ifup b/package/network/config/netifd/files/sbin/ifup
    index af3aaa8..5515b91 100755
    --- a/package/network/config/netifd/files/sbin/ifup
    +++ b/package/network/config/netifd/files/sbin/ifup
    @@ -67,12 +67,10 @@ if [ -n "$setup_wifi" ] && grep -sq config /etc/config/wireless; then
     		fi
     	}
     
    -	local radio_devs
    -	local network="$1"
    +	network="$1"
     	config_load wireless
     	config_foreach find_related_radios wifi-iface
     
    -	local dev
     	for dev in $(echo "$radio_devs" | sort -u); do
     		/sbin/wifi up "$dev"
     	done
    diff --git a/package/network/config/netifd/patches/0001-Revert-device-Don-t-process-link-events-anymore-in-d.patch b/package/network/config/netifd/patches/0001-Revert-device-Don-t-process-link-events-anymore-in-d.patch
    new file mode 100644
    index 0000000..312964f
    --- /dev/null
    +++ b/package/network/config/netifd/patches/0001-Revert-device-Don-t-process-link-events-anymore-in-d.patch
    @@ -0,0 +1,121 @@
    +From e0f19fdae88f3ef505e22533915f8328f4793980 Mon Sep 17 00:00:00 2001
    +Message-Id: <e0f19fdae88f3ef505e22533915f8328f4793980.1462479663.git.mschiffer@universe-factory.net>
    +From: Matthias Schiffer <mschiffer@universe-factory.net>
    +Date: Thu, 5 May 2016 21:49:33 +0200
    +Subject: [PATCH] Revert "device: Don't process link events anymore in device
    + user specific callback handlers"
    +
    +This reverts commit 4902ba2999dec02e82066d70ab6096b852a33007.
    +---