Browse Source

auc: remove left-over subtarget string

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
lilik-openwrt-22.03
Daniel Golle 6 years ago
parent
commit
d506fc2651
2 changed files with 3 additions and 4 deletions
  1. +1
    -1
      utils/auc/Makefile
  2. +2
    -3
      utils/auc/src/auc.c

+ 1
- 1
utils/auc/Makefile View File

@ -5,7 +5,7 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NAME:=auc PKG_NAME:=auc
PKG_VERSION:=0.1.1
PKG_VERSION:=0.1.2
PKG_RELEASE:=1 PKG_RELEASE:=1
PKG_LICENSE:=GPL-3.0 PKG_LICENSE:=GPL-3.0


+ 2
- 3
utils/auc/src/auc.c View File

@ -13,7 +13,7 @@
*/ */
#define _GNU_SOURCE #define _GNU_SOURCE
#define AUC_VERSION "0.1.1"
#define AUC_VERSION "0.1.2"
#include <fcntl.h> #include <fcntl.h>
#include <dlfcn.h> #include <dlfcn.h>
@ -61,7 +61,7 @@ static bool cur_resume;
static int output_fd = -1; static int output_fd = -1;
static int retry, imagebuilder, building, ibready; static int retry, imagebuilder, building, ibready;
static char *board_name = NULL; static char *board_name = NULL;
static char *target = NULL, *subtarget = NULL;
static char *target = NULL;
static char *distribution = NULL, *version = NULL; static char *distribution = NULL, *version = NULL;
static int uptodate; static int uptodate;
static char *filename = NULL; 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, "distro", distribution);
blobmsg_add_string(buf, "target", target); blobmsg_add_string(buf, "target", target);
blobmsg_add_string(buf, "subtarget", subtarget);
blobmsg_add_string(buf, "version", version); blobmsg_add_string(buf, "version", version);
} }


Loading…
Cancel
Save