Skip to content

Commit 999f8cc

Browse files
committed
Merge branch 'v5-dev'
Signed-off-by: Damien Le Moal <[email protected]>
2 parents db62b92 + efbbec6 commit 999f8cc

File tree

329 files changed

+14045
-116273
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

329 files changed

+14045
-116273
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
zbc_info
2929
zbc_inquiry
3030
zbc_report_zones
31-
zbc_reset_write_ptr
31+
zbc_reset_zone
3232
zbc_close_zone
3333
zbc_finish_zone
3434
zbc_open_zone
@@ -40,7 +40,7 @@ gzbc
4040

4141
test/programs/zbc_test_print_devinfo
4242
test/programs/zbc_test_report_zones
43-
test/programs/zbc_test_reset_write_ptr
43+
test/programs/zbc_test_reset_zone
4444
test/programs/zbc_test_close_zone
4545
test/programs/zbc_test_finish_zone
4646
test/programs/zbc_test_open_zone

Makefile.am

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,24 @@ pkgconf_DATA = libzbc.pc
1818
pkginclude_HEADERS =
1919
noinst_HEADERS =
2020
bin_PROGRAMS =
21-
lib_LTLIBRARIES =
21+
lib_LTLIBRARIES =
2222
noinst_PROGRAMS =
2323

2424
libzbc_ldadd = $(LDADD) libzbc.la
2525

2626
include include/Makemodule.am
2727
include lib/Makemodule.am
28+
include tools/zone_op/Makemodule.am
29+
2830
include tools/info/Makemodule.am
2931
include tools/report_zones/Makemodule.am
30-
include tools/reset_write_ptr/Makemodule.am
31-
include tools/read_zone/Makemodule.am
32-
include tools/write_zone/Makemodule.am
32+
include tools/reset_zone/Makemodule.am
3333
include tools/open_zone/Makemodule.am
3434
include tools/close_zone/Makemodule.am
3535
include tools/finish_zone/Makemodule.am
36+
include tools/read_zone/Makemodule.am
37+
include tools/write_zone/Makemodule.am
38+
3639
include tools/set_write_ptr/Makemodule.am
3740
include tools/set_zones/Makemodule.am
3841

@@ -43,7 +46,7 @@ endif
4346
if BUILD_TEST
4447
include test/programs/print_devinfo/Makemodule.am
4548
include test/programs/report_zones/Makemodule.am
46-
include test/programs/reset_write_ptr/Makemodule.am
49+
include test/programs/reset_zone/Makemodule.am
4750
include test/programs/open_zone/Makemodule.am
4851
include test/programs/close_zone/Makemodule.am
4952
include test/programs/finish_zone/Makemodule.am

README

Lines changed: 274 additions & 273 deletions
Large diffs are not rendered by default.

configure.ac

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
AC_INIT([libzbc], [4.3.4], [[email protected], [email protected]])
2+
AC_INIT([libzbc], [5.0.0], [[email protected], [email protected]])
33
AC_CONFIG_AUX_DIR([build-aux])
44
AC_CONFIG_MACRO_DIR([m4])
55
AC_CONFIG_HEADER([include/config.h])
@@ -41,15 +41,16 @@ AC_ARG_WITH([test],
4141
[AS_HELP_STRING([--with-test], [Build compatibility test suite [default=no]])],
4242
[WITH_TEST=1],
4343
[WITH_TEST=0])
44-
AM_CONDITIONAL([BUILD_TEST], [test "$WITH_TEST" -eq 1])
44+
AS_IF([test "$WITH_TEST" -eq 1],
45+
[
46+
AM_CONDITIONAL([BUILD_TEST], true)
47+
AC_DEFINE([HAVE_DEVTEST], [1], ["Enable API test mode"])
48+
])
4549

4650
AC_CONFIG_FILES([
4751
libzbc.pc
4852
Makefile
4953
])
5054

51-
# Build lkvs
52-
#AC_CONFIG_SUBDIRS([tools/lkvs])
53-
5455
AC_OUTPUT
5556

0 commit comments

Comments
 (0)