[openwrt/openwrt] base-files: drop default setup for vconfig
LEDE Commits
lede-commits at lists.infradead.org
Wed Sep 16 11:43:29 EDT 2020
adrian pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/cb9bb908de1772d52bec73e6efffb0b803c8e41e
commit cb9bb908de1772d52bec73e6efffb0b803c8e41e
Author: Adrian Schmutzler <freifunk at adrianschmutzler.de>
AuthorDate: Thu Sep 10 17:24:52 2020 +0200
base-files: drop default setup for vconfig
vconfig has been disabled by default since 2015 [1] and there are
no remaining uses in entire OpenWrt trunk. However, we still set up
a specific name_type for it during boot.
While this setup is properly implemented to be only triggered when
vconfig is present, it still seems anachronistic and unnecessary
to set up a standard for a tool that is not used anymore.
Therefore, this removes the set_name_type initialization and leaves
it for those people actually using the tool to configure it as needed.
[1] 899a23227e55 ("busybox: improve applets & deprecate ifconfig, route")
Signed-off-by: Adrian Schmutzler <freifunk at adrianschmutzler.de>
---
package/base-files/Makefile | 2 +-
package/base-files/files/etc/init.d/boot | 1 -
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/package/base-files/Makefile b/package/base-files/Makefile
index 73455174db..db9be216e6 100644
--- a/package/base-files/Makefile
+++ b/package/base-files/Makefile
@@ -12,7 +12,7 @@ include $(INCLUDE_DIR)/version.mk
include $(INCLUDE_DIR)/feeds.mk
PKG_NAME:=base-files
-PKG_RELEASE:=229
+PKG_RELEASE:=230
PKG_FLAGS:=nonshared
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
diff --git a/package/base-files/files/etc/init.d/boot b/package/base-files/files/etc/init.d/boot
index 958a67599e..b36323a97e 100755
--- a/package/base-files/files/etc/init.d/boot
+++ b/package/base-files/files/etc/init.d/boot
@@ -20,7 +20,6 @@ uci_apply_defaults() {
boot() {
[ -f /proc/mounts ] || /sbin/mount_root
[ -f /proc/jffs2_bbc ] && echo "S" > /proc/jffs2_bbc
- [ -f /proc/net/vlan/config ] && vconfig set_name_type DEV_PLUS_VID_NO_PAD
mkdir -p /var/run
mkdir -p /var/log
More information about the lede-commits
mailing list