#include "buildincmd.h"
#include <algorithm>
#include <locale>
#include <regex>
#include "emmc_burn_loader.clst"
#include "emmc_burn_all.clst"
#include "fat_write.clst"
#include "nand_burn_loader.clst"
#include "qspi_burn_loader.clst"
#include "fspinand_burn_loader.clst"
#include "sd_burn_loader.clst"
#include "sd_burn_all.clst"
#include "spl_boot.clst"
#include "nvme_burn_all.clst"
Functions | |
static std::string | replace_str (std::string str, std::string key, std::string replace) |
Replace a key substring of a string str by a replacement replace | |
static std::string | str_to_upper (const std::string &str) |
Returns a copy of str with all applicable characters converted to uppercase. | |
Variables | |
static constexpr BuiltInScriptRawData | g_builtin_cmd [] |
Array containing raw information about all the built-in scripts of uuu. | |
BuiltInScriptMap | g_BuildScripts (g_builtin_cmd) |
A map of the built-in scripts' names to their BuiltInScript representations. | |
|
static |
Replace a key
substring of a string str
by a replacement replace
[in] | str | The string of which a copy with the replacements shall be created |
[in] | key | The string which shall be replaced |
[in] | replace | The string that shall replace occurrences of key |
|
static |
Returns a copy of str
with all applicable characters converted to uppercase.
[in] | str | The string for which an uppercase copy shall be created |
str
converted to uppercase BuiltInScriptMap g_BuildScripts(g_builtin_cmd) | ( | g_builtin_cmd | ) |
A map of the built-in scripts' names to their BuiltInScript representations.
|
staticconstexpr |
Array containing raw information about all the built-in scripts of uuu.