69 lines
2.1 KiB
C
69 lines
2.1 KiB
C
/*
|
|
* Copyright (C) 2015 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.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "ostree-deployment.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
/**
|
|
* OstreeDeployment:
|
|
* @parent_instance:
|
|
* @index: Global offset
|
|
* @osname:
|
|
* @csum: OSTree checksum of tree
|
|
* @deployserial: How many times this particular csum appears in deployment list
|
|
* @bootcsum: Checksum of kernel+initramfs
|
|
* @bootserial: An integer assigned to this tree per its ${bootcsum}
|
|
* @bootconfig: Bootloader configuration
|
|
* @origin: How to construct an upgraded version of this tree
|
|
* @unlocked: The unlocked state
|
|
* @staged: TRUE iff this deployment is staged
|
|
* @overlay_initrds: Checksums of staged additional initrds for this deployment
|
|
* @overlay_initrds_id: Unique ID generated from initrd checksums; used to compare deployments
|
|
*/
|
|
struct _OstreeDeployment
|
|
{
|
|
GObject parent_instance;
|
|
|
|
int index;
|
|
char *osname;
|
|
char *csum;
|
|
int deployserial;
|
|
char *bootcsum;
|
|
int bootserial;
|
|
OstreeBootconfigParser *bootconfig;
|
|
GKeyFile *origin;
|
|
OstreeDeploymentUnlockedState unlocked;
|
|
gboolean staged;
|
|
char **overlay_initrds;
|
|
char *overlay_initrds_id;
|
|
};
|
|
|
|
void _ostree_deployment_set_bootcsum (OstreeDeployment *self, const char *bootcsum);
|
|
|
|
void _ostree_deployment_set_overlay_initrds (OstreeDeployment *self,
|
|
char **overlay_initrds);
|
|
|
|
char** _ostree_deployment_get_overlay_initrds (OstreeDeployment *self);
|
|
|
|
G_END_DECLS
|