summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gbs.conf2
-rw-r--r--ChangeLog7
-rw-r--r--INSTALL2
-rw-r--r--README4
-rw-r--r--include/usbg/usbg.h6
-rw-r--r--tests/test.c2
-rwxr-xr-xtests/test.sh2
7 files changed, 11 insertions, 14 deletions
diff --git a/.gbs.conf b/.gbs.conf
index 2290232..99e7cc8 100644
--- a/.gbs.conf
+++ b/.gbs.conf
@@ -1,3 +1,3 @@
[general]
upstream_branch = upstream
-upstream_tag = v${upstreamversion}
+upstream_tag = upstream/${upstreamversion}
diff --git a/ChangeLog b/ChangeLog
index 295762b..63ba0f3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,2 @@
-Mon, 20 Jan 2014 Matt Porter <mporter@linaro.org> 0.1.0
-- Rename from libgadget->libusbg
-- Update examples to use standard configfs mount point
-Wed, 04 Sep 2013 Matt Porter <mporter@linaro.org> 0.0.1
-- Initial release
+Tue, 22 Dec 2015 Krzysztof Opasiak <k.opasiak@samsung.com> 0.0.1
+ - Initial fork from libusbg
diff --git a/INSTALL b/INSTALL
index 786ecee..0d9d67f 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,4 +1,4 @@
-Installing libusbg:
+Installing libusbgx:
$ autoreconf -i
$ ./configure
diff --git a/README b/README
index fba9959..08622a3 100644
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
-libusbg
+libusbg-neXt (libusbgx)
-------
-libusbg is a C library encapsulating the kernel USB gadget-configfs
+libusbgx is a C library encapsulating the kernel USB gadget-configfs
userspace API functionality.
It provides routines for creating and parsing USB gadget devices using
diff --git a/include/usbg/usbg.h b/include/usbg/usbg.h
index 374101e..bcf221d 100644
--- a/include/usbg/usbg.h
+++ b/include/usbg/usbg.h
@@ -35,7 +35,7 @@ extern "C" {
*/
/**
- * @addtogroup libusbg
+ * @addtogroup libusbgx
* Public API for USB gadget-configfs library
* @{
*/
@@ -354,7 +354,7 @@ extern const char *usbg_strerror(usbg_error e);
/* Library init and cleanup */
/**
- * @brief Initialize the libusbg library state
+ * @brief Initialize the libusbgx library state
* @param configfs_path Path to the mounted configfs filesystem
* @param state Pointer to be filled with pointer to usbg_state
* @return 0 on success, usbg_error on error
@@ -362,7 +362,7 @@ extern const char *usbg_strerror(usbg_error e);
extern int usbg_init(const char *configfs_path, usbg_state **state);
/**
- * @brief Clean up the libusbg library state
+ * @brief Clean up the libusbgx library state
* @param s Pointer to state
*/
extern void usbg_cleanup(usbg_state *s);
diff --git a/tests/test.c b/tests/test.c
index 708e257..bd17af9 100644
--- a/tests/test.c
+++ b/tests/test.c
@@ -2628,7 +2628,7 @@ static int apply_test_config(FILE *input)
static void print_help()
{
fprintf(stderr,
- "libusbg test suit:\n"
+ "libusbgx test suit:\n"
" --generate-config - generates config to stdout and exit\n"
" --use-config - runs test suit using config from stdin\n"
" -h --help - print this message\n"
diff --git a/tests/test.sh b/tests/test.sh
index f4705ee..45b8e3e 100755
--- a/tests/test.sh
+++ b/tests/test.sh
@@ -14,7 +14,7 @@ then
fi
function usage {
- echo "libusbg test suit"
+ echo "libusbgx test suit"
echo "Usage: ./test.sh [option]"
echo "Options:"
echo " --generate-config filename - generates config to given file and exit"