1 /* 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 13 #include "app/fwu_app.h" 14 15 int cmd_update_image(fwu_app &app, const std::string &img_type_uuid, 16 const std::string &img_filename); 17 18 #endif /* CMD_UPDATE_IMAGE_H */ 19