summaryrefslogtreecommitdiff
path: root/src/libostree/ostree-bootloader-uboot.h
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2013-09-15 18:07:34 -0400
committerColin Walters <walters@verbum.org>2013-09-15 18:08:06 -0400
commit95f07d486adcb6bb12d8da0016066d8d8db205d6 (patch)
treedaa82c941be51af075565664348f996e625fddde /src/libostree/ostree-bootloader-uboot.h
parent6f929ca5af114da00030bd83d8b100706d0eebef (diff)
downloadostree-95f07d486adcb6bb12d8da0016066d8d8db205d6.tar.gz
libostree: Move a lot more sysroot API here
OstreeBootloader is temporarily public API.
Diffstat (limited to 'src/libostree/ostree-bootloader-uboot.h')
-rw-r--r--src/libostree/ostree-bootloader-uboot.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/libostree/ostree-bootloader-uboot.h b/src/libostree/ostree-bootloader-uboot.h
new file mode 100644
index 00000000..4b196083
--- /dev/null
+++ b/src/libostree/ostree-bootloader-uboot.h
@@ -0,0 +1,41 @@
+/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
+ *
+ * Copyright (C) 2013 Collabora Ltd
+ *
+ * Based on ot-bootloader-syslinux.h by Colin Walters <walters@verbum.org>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published
+ * by the Free Software Foundation; either version 2 of the licence or (at
+ * your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General
+ * Public License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+ * Boston, MA 02111-1307, USA.
+ *
+ * Author: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
+ */
+
+#pragma once
+
+#include "ostree-bootloader.h"
+
+G_BEGIN_DECLS
+
+#define OSTREE_TYPE_BOOTLOADER_UBOOT (ostree_bootloader_uboot_get_type ())
+#define OSTREE_BOOTLOADER_UBOOT(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), OSTREE_TYPE_BOOTLOADER_UBOOT, OstreeBootloaderUboot))
+#define OSTREE_IS_BOOTLOADER_UBOOT(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), OSTREE_TYPE_BOOTLOADER_UBOOT))
+
+typedef struct _OstreeBootloaderUboot OstreeBootloaderUboot;
+
+GType ostree_bootloader_uboot_get_type (void) G_GNUC_CONST;
+
+OstreeBootloaderUboot * ostree_bootloader_uboot_new (OstreeSysroot *sysroot);
+
+G_END_DECLS