diff options
author | Daniel Golle <daniel@makrotopia.org> | 2019-03-07 11:56:10 +0100 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2019-03-07 11:56:57 +0100 |
commit | d506fc26510a2714d57812e7b00b7cc89dd7675b (patch) | |
tree | eaee041fb38e6c338564f5dd92dbde43aaa8325b | |
parent | 7831fb63bd846ac8960ce389b79a38ecadb2139f (diff) |
auc: remove left-over subtarget string
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
-rw-r--r-- | utils/auc/Makefile | 2 | ||||
-rw-r--r-- | utils/auc/src/auc.c | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/utils/auc/Makefile b/utils/auc/Makefile index 43558e2cc..5773c81db 100644 --- a/utils/auc/Makefile +++ b/utils/auc/Makefile @@ -5,7 +5,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=auc -PKG_VERSION:=0.1.1 +PKG_VERSION:=0.1.2 PKG_RELEASE:=1 PKG_LICENSE:=GPL-3.0 diff --git a/utils/auc/src/auc.c b/utils/auc/src/auc.c index 60c082fbc..815e2f4f5 100644 --- a/utils/auc/src/auc.c +++ b/utils/auc/src/auc.c @@ -13,7 +13,7 @@ */ #define _GNU_SOURCE -#define AUC_VERSION "0.1.1" +#define AUC_VERSION "0.1.2" #include <fcntl.h> #include <dlfcn.h> @@ -61,7 +61,7 @@ static bool cur_resume; static int output_fd = -1; static int retry, imagebuilder, building, ibready; static char *board_name = NULL; -static char *target = NULL, *subtarget = NULL; +static char *target = NULL; static char *distribution = NULL, *version = NULL; static int uptodate; static char *filename = NULL; @@ -322,7 +322,6 @@ static void board_cb(struct ubus_request *req, int type, struct blob_attr *msg) blobmsg_add_string(buf, "distro", distribution); blobmsg_add_string(buf, "target", target); - blobmsg_add_string(buf, "subtarget", subtarget); blobmsg_add_string(buf, "version", version); } |