From 76c29f75d9f8f53fa419c0b8e71613efac8880d6 Mon Sep 17 00:00:00 2001 From: nbd Date: Thu, 28 Jul 2011 20:17:40 +0000 Subject: [PATCH] swconfig: backport compatibility fix from r27820 git-svn-id: svn://svn.openwrt.org/openwrt/branches/backfire@27821 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/swconfig/Makefile | 4 ++-- package/swconfig/src/uci.c | 14 ++++++++++---- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/package/swconfig/Makefile b/package/swconfig/Makefile index c0a228a69..91939bb73 100644 --- a/package/swconfig/Makefile +++ b/package/swconfig/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=swconfig -PKG_RELEASE:=8 +PKG_RELEASE:=9 include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/kernel.mk @@ -16,7 +16,7 @@ include $(INCLUDE_DIR)/kernel.mk define Package/swconfig SECTION:=base CATEGORY:=Base system - DEPENDS:=@LINUX_2_6 @!TARGET_brcm47xx +libuci +libnl-tiny + DEPENDS:=@!TARGET_brcm47xx +libuci +libnl-tiny TITLE:=Switch configuration utility endef diff --git a/package/swconfig/src/uci.c b/package/swconfig/src/uci.c index ce544c3d5..1de689ce6 100644 --- a/package/swconfig/src/uci.c +++ b/package/swconfig/src/uci.c @@ -53,6 +53,12 @@ struct swlib_setting early_settings[] = { static struct swlib_setting *settings; static struct swlib_setting **head; +static bool swlib_match_name(struct switch_dev *dev, const char *name) +{ + return (strcmp(name, dev->dev_name) == 0 || + strcmp(name, dev->alias) == 0); +} + static int swlib_map_settings(struct switch_dev *dev, int type, int port_vlan, struct uci_section *s) { @@ -131,13 +137,13 @@ int swlib_apply_from_uci(struct switch_dev *dev, struct uci_package *p) if (o->type != UCI_TYPE_STRING) continue; - if (!strcmp(o->v.string, dev->dev_name)) + if (swlib_match_name(dev, o->v.string)) goto found; break; } - if (strcmp(e->name, dev->dev_name) != 0) + if (!swlib_match_name(dev, e->name)) continue; goto found; @@ -171,7 +177,7 @@ found: if (!strcmp(os->name, "device")) { devn = o->v.string; - if (strcmp(devn, dev->dev_name) != 0) + if (!swlib_match_name(dev, devn)) devn = NULL; } else if (!strcmp(os->name, "port")) { port = o->v.string; @@ -196,7 +202,7 @@ found: if (!strcmp(os->name, "device")) { devn = o->v.string; - if (strcmp(devn, dev->dev_name) != 0) + if (!swlib_match_name(dev, devn)) devn = NULL; } else if (!strcmp(os->name, "vlan")) { vlan = o->v.string; -- 2.35.1