mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-22 17:35:55 +03:00
bb6eedfb25
See https://wiki.gnome.org/OSTree/DeploymentModel2 This is a major rework of the on-disk filesystem layout, and the boot process. OSTree now explicitly supports upgrading kernels, and these upgrades are also atomic. The core concept of the new model is the "deployment list", which is an ordered list of bootable operating system trees. The deployment list is reflected in the bootloader configuration; which has a kernel argument that tells the initramfs (dracut) which operating system root to use. Invidiual notable changes that come along with this: 1) Operating systems should now come with their etc in usr/etc; OSTree will perform a 3-way merge at deployment time, and place etc in the actual root. This avoids the need for a bind mount, and is just a lot cleaner. 2) OSTree no longer bind mounts /root, /home, and /tmp. It is expected that the the OS/ has these as symbolic links into /var. At the moment, OSTree only supports managing syslinux; other bootloader backends will follow.
121 lines
3.7 KiB
Plaintext
121 lines
3.7 KiB
Plaintext
# Makefile for C source code
|
|
#
|
|
# Copyright (C) 2011 Colin Walters <walters@verbum.org>
|
|
#
|
|
# This library 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 License, 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.
|
|
|
|
if !TRIGGERS_ONLY
|
|
bin_PROGRAMS += ostree
|
|
endif
|
|
|
|
ostree_SOURCES = src/ostree/main.c \
|
|
src/ostree/ostree-curl-fetcher.h \
|
|
src/ostree/ostree-curl-fetcher.c \
|
|
src/ostree/ostree-prune.h \
|
|
src/ostree/ostree-prune.c \
|
|
src/ostree/ot-builtin-admin.c \
|
|
src/ostree/ot-builtins.h \
|
|
src/ostree/ot-builtin-cat.c \
|
|
src/ostree/ot-builtin-config.c \
|
|
src/ostree/ot-builtin-checkout.c \
|
|
src/ostree/ot-builtin-checksum.c \
|
|
src/ostree/ot-builtin-commit.c \
|
|
src/ostree/ot-builtin-diff.c \
|
|
src/ostree/ot-builtin-fsck.c \
|
|
src/ostree/ot-builtin-init.c \
|
|
src/ostree/ot-builtin-pull-local.c \
|
|
src/ostree/ot-builtin-log.c \
|
|
src/ostree/ot-builtin-ls.c \
|
|
src/ostree/ot-builtin-prune.c \
|
|
src/ostree/ot-builtin-refs.c \
|
|
src/ostree/ot-builtin-remote.c \
|
|
src/ostree/ot-builtin-rev-parse.c \
|
|
src/ostree/ot-builtin-show.c \
|
|
src/ostree/ot-builtin-trivial-httpd.c \
|
|
src/ostree/ot-builtin-write-refs.c \
|
|
src/ostree/ot-main.h \
|
|
src/ostree/ot-main.c \
|
|
$(NULL)
|
|
|
|
# Admin subcommand
|
|
ostree_SOURCES += \
|
|
src/ostree/ot-admin-builtin-init-fs.c \
|
|
src/ostree/ot-admin-builtin-diff.c \
|
|
src/ostree/ot-admin-builtin-deploy.c \
|
|
src/ostree/ot-admin-builtin-prune.c \
|
|
src/ostree/ot-admin-builtin-os-init.c \
|
|
src/ostree/ot-admin-builtin-install.c \
|
|
src/ostree/ot-admin-builtin-status.c \
|
|
src/ostree/ot-admin-builtin-run-triggers.c \
|
|
src/ostree/ot-admin-builtin-upgrade.c \
|
|
src/ostree/ot-admin-builtins.h \
|
|
src/ostree/ot-admin-functions.h \
|
|
src/ostree/ot-admin-functions.c \
|
|
src/ostree/ot-admin-deploy.h \
|
|
src/ostree/ot-admin-deploy.c \
|
|
src/ostree/ot-bootloader.h \
|
|
src/ostree/ot-bootloader.c \
|
|
src/ostree/ot-bootloader-syslinux.h \
|
|
src/ostree/ot-bootloader-syslinux.c \
|
|
src/ostree/ot-config-parser.h \
|
|
src/ostree/ot-config-parser.c \
|
|
src/ostree/ot-deployment.h \
|
|
src/ostree/ot-deployment.c \
|
|
src/ostree/ot-ordered-hash.h \
|
|
src/ostree/ot-ordered-hash.c \
|
|
$(NULL)
|
|
|
|
ostree_bin_shared_cflags = $(AM_CFLAGS) -I$(srcdir)/src/libgsystem -I$(srcdir)/src/libotutil -I$(srcdir)/src/libostree -I$(srcdir)/src/ostree -DLOCALEDIR=\"$(datadir)/locale\"
|
|
ostree_bin_shared_ldadd = libotutil.la libostree.la
|
|
|
|
ostree_CFLAGS = $(ostree_bin_shared_cflags) $(OT_INTERNAL_GIO_UNIX_CFLAGS)
|
|
ostree_LDADD = $(ostree_bin_shared_ldadd) $(OT_INTERNAL_GIO_UNIX_LIBS)
|
|
|
|
if USE_LIBSOUP
|
|
ostree_SOURCES += src/ostree/ostree-fetcher.h \
|
|
src/ostree/ostree-fetcher.c \
|
|
src/ostree/ostree-pull.c \
|
|
$(NULL)
|
|
|
|
ostree_CFLAGS += $(OT_INTERNAL_SOUP_CFLAGS)
|
|
ostree_LDADD += $(OT_INTERNAL_SOUP_LIBS)
|
|
endif
|
|
|
|
MANPAGES += doc/ostree.1
|
|
|
|
if ENABLE_GRUB2_HOOK
|
|
|
|
grub2dir = $(sysconfdir)/grub.d
|
|
grub2_SCRIPTS = src/ostree/grub2/15_ostree
|
|
|
|
endif
|
|
|
|
EXTRA_DIST += src/ostree/grub2/15_ostree
|
|
|
|
if ENABLE_KERNEL_UPDATES
|
|
|
|
kernelpostinstdir = $(sysconfdir)/kernel/postinst.d
|
|
kernelpostinst_SCRIPTS = src/ostree/kernel/15_ostree_update
|
|
|
|
kernelprermdir = $(sysconfdir)/kernel/prerm.d
|
|
kernelprerm_SCRIPTS = src/ostree/kernel/15_ostree_remove
|
|
|
|
endif
|
|
|
|
EXTRA_DIST += src/ostree/kernel/15_ostree_update \
|
|
src/ostree/kernel/15_ostree_remove \
|
|
$(NULL)
|