Searched refs:volume (Results 1 – 25 of 40) sorted by relevance
12
| /rk3399_rockchip-uboot/doc/ |
| H A D | README.ubi | 14 ubi info [l[ayout]] - Display volume and ubi layout information 15 ubi create[vol] volume [size] [type] - create volume name with size 16 ubi write[vol] address volume size - Write volume from address with size 17 ubi write.part address volume size [fullsize] 18 - Write part of a volume from address 19 ubi read[vol] address volume [size] - Read volume to address with size 20 ubi remove[vol] volume - Remove volume 22 volume: character name 77 ubi info Display volume and ubi layout information 78 ubi createvol Create UBI volume on UBI device [all …]
|
| H A D | README.ubispl | 16 The maximum number of logical eraseblocks which a static volume 30 The maximum volume ids which can be loaded. Used for sizing the 68 .vol_id = 0, /* kernel volume */
|
| /rk3399_rockchip-uboot/cmd/ |
| H A D | ubi.c | 165 static int ubi_create_vol(char *volume, int64_t size, int dynamic, int vol_id) in ubi_create_vol() argument 179 strcpy(req.name, volume); in ubi_create_vol() 180 req.name_len = strlen(volume); in ubi_create_vol() 190 dynamic ? "dynamic" : "static", volume, size); in ubi_create_vol() 195 static struct ubi_volume *ubi_find_volume(char *volume) in ubi_find_volume() argument 202 if (vol && !strcmp(vol->name, volume)) in ubi_find_volume() 206 printf("Volume %s not found!\n", volume); in ubi_find_volume() 210 static int ubi_remove_vol(char *volume) in ubi_remove_vol() argument 215 vol = ubi_find_volume(volume); in ubi_remove_vol() 258 ubi_err(ubi, "cannot remove volume %s, error %d", volume, err); in ubi_remove_vol() [all …]
|
| /rk3399_rockchip-uboot/include/ |
| H A D | ubi_uboot.h | 74 extern int ubi_volume_write(char *volume, void *buf, size_t size); 75 extern int ubi_volume_read(char *volume, char *buf, size_t size);
|
| /rk3399_rockchip-uboot/arch/arm/dts/ |
| H A D | rv1106-evb2.dts | 32 label = "volume up"; 39 label = "volume down";
|
| H A D | rk3562-evb.dts | 27 label = "volume up";
|
| H A D | rk3506-evb.dts | 27 label = "volume up";
|
| H A D | rk3528-evb.dts | 27 label = "volume up";
|
| H A D | rk3576-evb.dts | 26 label = "volume up";
|
| H A D | rk3588-evb.dts | 27 label = "volume up";
|
| H A D | rv1126b-evb.dts | 26 label = "volume up";
|
| H A D | rv1106-evb.dts | 27 label = "volume up";
|
| H A D | rv1126-evb.dts | 26 label = "volume up";
|
| H A D | rk3308-evb.dts | 28 label = "volume up"; 61 label = "volume down"; 68 label = "volume up";
|
| H A D | rk3368-evb.dts | 25 label = "volume up";
|
| H A D | rk3288-evb.dts | 24 label = "volume up";
|
| H A D | rv1126-bat-evb.dts | 31 label = "volume up";
|
| H A D | rk3036-sdk.dts | 47 volume-up {
|
| H A D | rk1808-evb.dts | 30 label = "volume up";
|
| H A D | rk3568-evb.dts | 27 label = "volume up";
|
| H A D | rk3576-tb.dts | 31 label = "volume up";
|
| H A D | rk3399-evb.dts | 31 label = "volume up"; 46 label = "volume up";
|
| H A D | rk3326-evb.dts | 26 label = "volume up"; 32 label = "volume down";
|
| H A D | px30-evb.dts | 26 label = "volume up"; 32 label = "volume down";
|
| /rk3399_rockchip-uboot/env/ |
| H A D | Kconfig | 333 bool "Environment in a UBI volume" 336 Define this if you have an UBI volume that you want to use for the 346 Define this to the name of the volume that you want to store the 351 Define this to the name of another volume to store a second copy of 502 string "UBI volume name" 505 Name of the volume that you want to store the environment in.
|
12