Skip to content

Commit

Permalink
run bump (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
jr1221 authored Nov 12, 2024
1 parent 801e39d commit 8f810fb
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN apt-get update && apt-get install -y \
# add all buildroot files there
WORKDIR /home/odysseus/build

RUN git clone https://gitlab.com/buildroot.org/buildroot.git && cd ./buildroot && git checkout 2024.08
RUN git clone https://gitlab.com/buildroot.org/buildroot.git && cd ./buildroot && git checkout 2024.08.1


WORKDIR /home/odysseus/outputs/
Expand Down
10 changes: 10 additions & 0 deletions odysseus_tree/package/nermosquitto/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,16 @@ config BR2_PACKAGE_NERMOSQUITTO_BROKER # ***
help
Build and install the mosquitto broker onto target.

config BR2_PACKAGE_NERMOSQUITTO_BROKER_DYNAMIC_SECURITY_PLUGIN
bool "dynamic security plugin"
depends on BR2_PACKAGE_NERMOSQUITTO_BROKER
select BR2_PACKAGE_CJSON
select BR2_PACKAGE_OPENSSL
help
Build and install the dynamic security plugin for
mosquitto broker onto target.


config BR2_PACKAGE_NERMOSQUITTO_PLUGIN_LIST
string "list of plugins"
help
Expand Down
6 changes: 5 additions & 1 deletion odysseus_tree/package/nermosquitto/nermosquitto.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# all olther changes suffixed with # ***
################################################################################

NERMOSQUITTO_VERSION = 2.0.18
NERMOSQUITTO_VERSION = 2.0.20
NERMOSQUITTO_SITE = https://mosquitto.org/files/source
NERMOSQUITTO_SOURCE = mosquitto-$(NERMOSQUITTO_VERSION).tar.gz # ***
NERMOSQUITTO_LICENSE = EPL-2.0 or EDLv1.0
Expand Down Expand Up @@ -96,6 +96,10 @@ ifeq ($(BR2_PACKAGE_NERMOSQUITTO_BROKER),y)
NERMOSQUITTO_MAKE_DIRS += src
endif

ifeq ($(BR2_PACKAGE_MOSQUITTO_BROKER_DYNAMIC_SECURITY_PLUGIN),y)
MOSQUITTO_MAKE_DIRS += plugins/dynamic-security
endif

define NERMOSQUITTO_BUILD_CMDS
$(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) DIRS="$(NERMOSQUITTO_MAKE_DIRS)" \
$(NERMOSQUITTO_MAKE_OPTS)
Expand Down

0 comments on commit 8f810fb

Please sign in to comment.