bootctl: Initial experimentation

This provides a basic prototype for boot control.

Some documentation is in boot/bootctl/README.rst
This commit is contained in:
Simon Glass
2025-03-14 07:47:28 +00:00
parent 8bae99245b
commit d9152ea75e
30 changed files with 3371 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
/* SPDX-License-Identifier: GPL-2.0+ */
/*
* Common definitions for bootctl tests
*
* Copyright 2025 Canonical Ltd
* Written by Simon Glass <simon.glass@canonical.com>
*/
#ifndef __bootctl_common_h
#define __bootctl_common_h
#define BOOTCTL_TEST(_name, _flags) UNIT_TEST(_name, _flags, bootctl)
#endif