Files
u-boot/test/boot/bootctl/bootctl_common.h
Simon Glass d9152ea75e bootctl: Initial experimentation
This provides a basic prototype for boot control.

Some documentation is in boot/bootctl/README.rst
2025-09-28 14:32:36 -06:00

15 lines
310 B
C

/* 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