summaryrefslogtreecommitdiff
path: root/plugins/bootimg
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2020-04-04 21:57:54 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2020-04-04 21:57:54 (GMT)
commit286ba13e0a5e908f9ebe67286bb6006adb4102fc (patch)
tree06d1ef353ae623c579a8fff5a74d22ecc0b9b862 /plugins/bootimg
parentc1cac2ce69f01deb99c5c91a803dfa04af90ef14 (diff)
Simplified the plugin interface.
Diffstat (limited to 'plugins/bootimg')
-rw-r--r--plugins/bootimg/Makefile.am4
-rw-r--r--plugins/bootimg/core.c5
2 files changed, 5 insertions, 4 deletions
diff --git a/plugins/bootimg/Makefile.am b/plugins/bootimg/Makefile.am
index 8329665..e37a6ab 100644
--- a/plugins/bootimg/Makefile.am
+++ b/plugins/bootimg/Makefile.am
@@ -34,8 +34,8 @@ libbootimg_la_SOURCES = \
libbootimg_la_LIBADD = \
$(PYTHON3_LIBADD)
-libbootimg_la_LDFLAGS = \
- -L$(top_srcdir)/src/.libs -lchrysacore \
+libbootimg_la_LDFLAGS = \
+ -L$(top_srcdir)/src/.libs -lchrysacore \
$(PYTHON3_LDFLAGS)
diff --git a/plugins/bootimg/core.c b/plugins/bootimg/core.c
index fdf1c95..9c4bc45 100644
--- a/plugins/bootimg/core.c
+++ b/plugins/bootimg/core.c
@@ -26,7 +26,7 @@
#include <config.h>
#include <core/global.h>
-#include <plugins/plugin-def.h>
+#include <plugins/self.h>
#include "format.h"
@@ -43,7 +43,8 @@
-DEFINE_CHRYSALIDE_PLUGIN("GBootImgPlugin", "bootimg", "Add support for the BOOT.img format", "0.1.0",
+DEFINE_CHRYSALIDE_PLUGIN("BootImg", "Support for the BOOT.img format",
+ PACKAGE_VERSION, CHRYSALIDE_WEBSITE("doc/formats"),
PG_REQ, AL(PGA_PLUGIN_INIT, PGA_CONTENT_EXPLORER));