X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include%2Fubispl.h;h=ecfe0c93c1331dec74330b7fbad3b0a4c939ecfe;hb=a1f5f4ac20c0947afda93f9b906facfbee2708fe;hp=944653ed5ab4203299dbd31b9bcf0ea83695c7f9;hpb=4711e7f7af839b41a6d78490257a9e7975494dd3;p=platform%2Fkernel%2Fu-boot.git diff --git a/include/ubispl.h b/include/ubispl.h index 944653e..ecfe0c9 100644 --- a/include/ubispl.h +++ b/include/ubispl.h @@ -1,11 +1,12 @@ +/* SPDX-License-Identifier: GPL 2.0+ OR BSD-3-Clause */ /* * Copyright (c) Thomas Gleixner - * - * SPDX-License-Identifier: GPL 2.0+ BSD-3-Clause */ #ifndef __UBOOT_UBISPL_H #define __UBOOT_UBISPL_H +#define UBI_VOL_NAME_MAX 127 + /* * The following CONFIG options are relevant for UBISPL * @@ -75,6 +76,10 @@ struct ubispl_info { */ struct ubispl_load { int vol_id; +#ifdef CONFIG_SPL_UBI_LOAD_BY_VOLNAME + u32 name_len; + char name[UBI_VOL_NAME_MAX + 1]; +#endif void *load_addr; };