diff --git a/apidoc/ostree-sections.txt b/apidoc/ostree-sections.txt index 6f0cf4a826..07dbaf1f96 100644 --- a/apidoc/ostree-sections.txt +++ b/apidoc/ostree-sections.txt @@ -71,6 +71,16 @@ OstreeChecksumInputStreamPrivate ostree_checksum_input_stream_get_type +
+ostree-version +OSTREE_CHECK_VERSION +OSTREE_YEAR_VERSION +OSTREE_RELEASE_VERSION +OSTREE_VERSION +OSTREE_VERSION_S +OSTREE_VERSION_HEX +
+
ostree-core OSTREE_MAX_METADATA_SIZE diff --git a/src/libostree/ostree-repo.h b/src/libostree/ostree-repo.h index 482ede7a6d..1664d65df0 100644 --- a/src/libostree/ostree-repo.h +++ b/src/libostree/ostree-repo.h @@ -123,6 +123,10 @@ gboolean ostree_repo_remote_delete (OstreeRepo *self, /** * OstreeRepoRemoteChange: * The remote change operation. + * @OSTREE_REPO_REMOTE_CHANGE_ADD: Add a remote + * @OSTREE_REPO_REMOTE_CHANGE_ADD_IF_NOT_EXISTS: Like above, but do nothing if the remote exists + * @OSTREE_REPO_REMOTE_CHANGE_DELETE: Delete a remote + * @OSTREE_REPO_REMOTE_CHANGE_DELETE_IF_EXISTS: Delete a remote, do nothing if the remote does not exist */ typedef enum { OSTREE_REPO_REMOTE_CHANGE_ADD, diff --git a/src/libostree/ostree-sysroot-deploy.c b/src/libostree/ostree-sysroot-deploy.c index c5d15af569..ed8c8bcaa0 100644 --- a/src/libostree/ostree-sysroot-deploy.c +++ b/src/libostree/ostree-sysroot-deploy.c @@ -2128,6 +2128,7 @@ ostree_sysroot_deployment_set_kargs (OstreeSysroot *self, * @self: Sysroot * @deployment: A deployment * @is_mutable: Whether or not deployment's files can be changed + * @cancellable: Cancellable * @error: Error * * By default, deployment directories are not mutable. This function