blob: b0fe6ae5e9df07ae5603cea3c4f15b985a2562a8 [file] [log] [blame]
Julian Hall351a0722023-01-12 11:58:42 +00001/*
2 * Copyright (c) 2023, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
8#ifndef CMD_UPDATE_IMAGE_H
9#define CMD_UPDATE_IMAGE_H
10
11#include <string>
12#include <service/fwu/app/fwu_app.h>
13
14int cmd_update_image(
15 fwu_app &app,
16 const std::string &img_type_uuid,
17 const std::string &img_filename);
18
19#endif /* CMD_UPDATE_IMAGE_H */