]> Git Repo - u-boot.git/blame - cmd/ubi.c
cmd: pxe: Fix checkpatch WARNING/CHECK
[u-boot.git] / cmd / ubi.c
CommitLineData
694a0b3f
KP
1/*
2 * Unsorted Block Image commands
3 *
4 * Copyright (C) 2008 Samsung Electronics
5 * Kyungmin Park <[email protected]>
6 *
2d579e50 7 * Copyright 2008-2009 Stefan Roese <[email protected]>, DENX Software Engineering
694a0b3f
KP
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
14#include <common.h>
15#include <command.h>
c7694dd4 16#include <env.h>
694a0b3f 17#include <exports.h>
6e295186 18#include <memalign.h>
c58fb2cd 19#include <mtd.h>
694a0b3f
KP
20#include <nand.h>
21#include <onenand_uboot.h>
22#include <linux/mtd/mtd.h>
23#include <linux/mtd/partitions.h>
ff94bc40 24#include <linux/err.h>
694a0b3f 25#include <ubi_uboot.h>
1221ce45 26#include <linux/errno.h>
694a0b3f
KP
27#include <jffs2/load_kernel.h>
28
147162da
JH
29#undef ubi_msg
30#define ubi_msg(fmt, ...) printf("UBI: " fmt "\n", ##__VA_ARGS__)
31
694a0b3f
KP
32/* Private own data */
33static struct ubi_device *ubi;
694a0b3f 34
2f15cfd1 35#ifdef CONFIG_CMD_UBIFS
10c20440 36#include <ubifs_uboot.h>
2f15cfd1
SR
37#endif
38
694a0b3f
KP
39static void display_volume_info(struct ubi_device *ubi)
40{
41 int i;
42
43 for (i = 0; i < (ubi->vtbl_slots + 1); i++) {
44 if (!ubi->volumes[i])
45 continue; /* Empty record */
46 ubi_dump_vol_info(ubi->volumes[i]);
47 }
48}
49
50static void display_ubi_info(struct ubi_device *ubi)
51{
52 ubi_msg("MTD device name: \"%s\"", ubi->mtd->name);
53 ubi_msg("MTD device size: %llu MiB", ubi->flash_size >> 20);
54 ubi_msg("physical eraseblock size: %d bytes (%d KiB)",
55 ubi->peb_size, ubi->peb_size >> 10);
56 ubi_msg("logical eraseblock size: %d bytes", ubi->leb_size);
57 ubi_msg("number of good PEBs: %d", ubi->good_peb_count);
58 ubi_msg("number of bad PEBs: %d", ubi->bad_peb_count);
59 ubi_msg("smallest flash I/O unit: %d", ubi->min_io_size);
60 ubi_msg("VID header offset: %d (aligned %d)",
61 ubi->vid_hdr_offset, ubi->vid_hdr_aloffset);
62 ubi_msg("data offset: %d", ubi->leb_start);
63 ubi_msg("max. allowed volumes: %d", ubi->vtbl_slots);
64 ubi_msg("wear-leveling threshold: %d", CONFIG_MTD_UBI_WL_THRESHOLD);
65 ubi_msg("number of internal volumes: %d", UBI_INT_VOL_COUNT);
66 ubi_msg("number of user volumes: %d",
67 ubi->vol_count - UBI_INT_VOL_COUNT);
68 ubi_msg("available PEBs: %d", ubi->avail_pebs);
69 ubi_msg("total number of reserved PEBs: %d", ubi->rsvd_pebs);
70 ubi_msg("number of PEBs reserved for bad PEB handling: %d",
71 ubi->beb_rsvd_pebs);
72 ubi_msg("max/mean erase counter: %d/%d", ubi->max_ec, ubi->mean_ec);
73}
74
75static int ubi_info(int layout)
76{
77 if (layout)
78 display_volume_info(ubi);
79 else
80 display_ubi_info(ubi);
81
82 return 0;
83}
84
f9f4d809
HS
85static int ubi_check_volumename(const struct ubi_volume *vol, char *name)
86{
87 return strcmp(vol->name, name);
88}
89
90static int ubi_check(char *name)
91{
92 int i;
93
94 for (i = 0; i < (ubi->vtbl_slots + 1); i++) {
95 if (!ubi->volumes[i])
96 continue; /* Empty record */
97
98 if (!ubi_check_volumename(ubi->volumes[i], name))
99 return 0;
100 }
101
6d0f4526 102 return 1;
f9f4d809
HS
103}
104
694a0b3f
KP
105static int verify_mkvol_req(const struct ubi_device *ubi,
106 const struct ubi_mkvol_req *req)
107{
7f5d8a4d 108 int n, err = EINVAL;
694a0b3f
KP
109
110 if (req->bytes < 0 || req->alignment < 0 || req->vol_type < 0 ||
111 req->name_len < 0)
112 goto bad;
113
114 if ((req->vol_id < 0 || req->vol_id >= ubi->vtbl_slots) &&
115 req->vol_id != UBI_VOL_NUM_AUTO)
116 goto bad;
117
118 if (req->alignment == 0)
119 goto bad;
120
7f5d8a4d
SR
121 if (req->bytes == 0) {
122 printf("No space left in UBI device!\n");
123 err = ENOMEM;
694a0b3f 124 goto bad;
7f5d8a4d 125 }
694a0b3f
KP
126
127 if (req->vol_type != UBI_DYNAMIC_VOLUME &&
128 req->vol_type != UBI_STATIC_VOLUME)
129 goto bad;
130
131 if (req->alignment > ubi->leb_size)
132 goto bad;
133
134 n = req->alignment % ubi->min_io_size;
135 if (req->alignment != 1 && n)
136 goto bad;
137
138 if (req->name_len > UBI_VOL_NAME_MAX) {
7f5d8a4d
SR
139 printf("Name too long!\n");
140 err = ENAMETOOLONG;
694a0b3f
KP
141 goto bad;
142 }
143
144 return 0;
145bad:
694a0b3f
KP
146 return err;
147}
148
386f20ca
QS
149static int ubi_create_vol(char *volume, int64_t size, int dynamic, int vol_id,
150 bool skipcheck)
694a0b3f
KP
151{
152 struct ubi_mkvol_req req;
153 int err;
154
155 if (dynamic)
156 req.vol_type = UBI_DYNAMIC_VOLUME;
157 else
158 req.vol_type = UBI_STATIC_VOLUME;
159
00612422 160 req.vol_id = vol_id;
694a0b3f
KP
161 req.alignment = 1;
162 req.bytes = size;
163
164 strcpy(req.name, volume);
165 req.name_len = strlen(volume);
166 req.name[req.name_len] = '\0';
386f20ca
QS
167 req.flags = 0;
168 if (skipcheck)
169 req.flags |= UBI_VOL_SKIP_CRC_CHECK_FLG;
170
694a0b3f
KP
171 /* It's duplicated at drivers/mtd/ubi/cdev.c */
172 err = verify_mkvol_req(ubi, &req);
173 if (err) {
174 printf("verify_mkvol_req failed %d\n", err);
175 return err;
176 }
dd7185f1 177 printf("Creating %s volume %s of size %lld\n",
694a0b3f
KP
178 dynamic ? "dynamic" : "static", volume, size);
179 /* Call real ubi create volume */
180 return ubi_create_volume(ubi, &req);
181}
182
7f5d8a4d 183static struct ubi_volume *ubi_find_volume(char *volume)
694a0b3f 184{
3b653fdb 185 struct ubi_volume *vol = NULL;
7f5d8a4d 186 int i;
694a0b3f
KP
187
188 for (i = 0; i < ubi->vtbl_slots; i++) {
189 vol = ubi->volumes[i];
7f5d8a4d
SR
190 if (vol && !strcmp(vol->name, volume))
191 return vol;
694a0b3f 192 }
7f5d8a4d
SR
193
194 printf("Volume %s not found!\n", volume);
195 return NULL;
196}
197
198static int ubi_remove_vol(char *volume)
199{
200 int err, reserved_pebs, i;
201 struct ubi_volume *vol;
202
203 vol = ubi_find_volume(volume);
204 if (vol == NULL)
205 return ENODEV;
206
207 printf("Remove UBI volume %s (id %d)\n", vol->name, vol->vol_id);
694a0b3f
KP
208
209 if (ubi->ro_mode) {
210 printf("It's read-only mode\n");
7f5d8a4d 211 err = EROFS;
694a0b3f
KP
212 goto out_err;
213 }
214
7f5d8a4d 215 err = ubi_change_vtbl_record(ubi, vol->vol_id, NULL);
694a0b3f
KP
216 if (err) {
217 printf("Error changing Vol tabel record err=%x\n", err);
218 goto out_err;
219 }
220 reserved_pebs = vol->reserved_pebs;
221 for (i = 0; i < vol->reserved_pebs; i++) {
222 err = ubi_eba_unmap_leb(ubi, vol, i);
223 if (err)
224 goto out_err;
225 }
226
227 kfree(vol->eba_tbl);
7f5d8a4d
SR
228 ubi->volumes[vol->vol_id]->eba_tbl = NULL;
229 ubi->volumes[vol->vol_id] = NULL;
694a0b3f
KP
230
231 ubi->rsvd_pebs -= reserved_pebs;
232 ubi->avail_pebs += reserved_pebs;
233 i = ubi->beb_rsvd_level - ubi->beb_rsvd_pebs;
234 if (i > 0) {
235 i = ubi->avail_pebs >= i ? i : ubi->avail_pebs;
236 ubi->avail_pebs -= i;
237 ubi->rsvd_pebs += i;
238 ubi->beb_rsvd_pebs += i;
239 if (i > 0)
240 ubi_msg("reserve more %d PEBs", i);
241 }
242 ubi->vol_count -= 1;
243
244 return 0;
245out_err:
0195a7bb 246 ubi_err(ubi, "cannot remove volume %s, error %d", volume, err);
7f5d8a4d
SR
247 if (err < 0)
248 err = -err;
694a0b3f
KP
249 return err;
250}
251
0e350f81 252static int ubi_volume_continue_write(char *volume, void *buf, size_t size)
694a0b3f 253{
7f5d8a4d 254 int err = 1;
694a0b3f
KP
255 struct ubi_volume *vol;
256
7f5d8a4d
SR
257 vol = ubi_find_volume(volume);
258 if (vol == NULL)
259 return ENODEV;
260
694a0b3f
KP
261 err = ubi_more_update_data(ubi, vol, buf, size);
262 if (err < 0) {
7f5d8a4d
SR
263 printf("Couldnt or partially wrote data\n");
264 return -err;
694a0b3f
KP
265 }
266
267 if (err) {
268 size = err;
269
270 err = ubi_check_volume(ubi, vol->vol_id);
7f5d8a4d
SR
271 if (err < 0)
272 return -err;
694a0b3f
KP
273
274 if (err) {
0195a7bb
HS
275 ubi_warn(ubi, "volume %d on UBI device %d is corrupt",
276 vol->vol_id, ubi->ubi_num);
694a0b3f
KP
277 vol->corrupted = 1;
278 }
279
280 vol->checked = 1;
281 ubi_gluebi_updated(vol);
282 }
283
284 return 0;
285}
286
cc734f5a
PB
287int ubi_volume_begin_write(char *volume, void *buf, size_t size,
288 size_t full_size)
289{
290 int err = 1;
291 int rsvd_bytes = 0;
292 struct ubi_volume *vol;
293
294 vol = ubi_find_volume(volume);
295 if (vol == NULL)
296 return ENODEV;
297
298 rsvd_bytes = vol->reserved_pebs * (ubi->leb_size - vol->data_pad);
18f41f2f 299 if (size > rsvd_bytes) {
cc734f5a
PB
300 printf("size > volume size! Aborting!\n");
301 return EINVAL;
302 }
303
304 err = ubi_start_update(ubi, vol, full_size);
305 if (err < 0) {
306 printf("Cannot start volume update\n");
307 return -err;
308 }
309
310 return ubi_volume_continue_write(volume, buf, size);
311}
312
313int ubi_volume_write(char *volume, void *buf, size_t size)
314{
315 return ubi_volume_begin_write(volume, buf, size, size);
316}
317
71829067 318int ubi_volume_read(char *volume, char *buf, size_t size)
694a0b3f 319{
7f5d8a4d 320 int err, lnum, off, len, tbuf_size;
694a0b3f
KP
321 void *tbuf;
322 unsigned long long tmp;
7f5d8a4d 323 struct ubi_volume *vol;
694a0b3f 324 loff_t offp = 0;
985fa93e 325 size_t len_read;
694a0b3f 326
7f5d8a4d
SR
327 vol = ubi_find_volume(volume);
328 if (vol == NULL)
329 return ENODEV;
694a0b3f 330
694a0b3f
KP
331 if (vol->updating) {
332 printf("updating");
7f5d8a4d 333 return EBUSY;
694a0b3f
KP
334 }
335 if (vol->upd_marker) {
336 printf("damaged volume, update marker is set");
7f5d8a4d 337 return EBADF;
694a0b3f
KP
338 }
339 if (offp == vol->used_bytes)
340 return 0;
341
342 if (size == 0) {
7f5d8a4d 343 printf("No size specified -> Using max size (%lld)\n", vol->used_bytes);
694a0b3f
KP
344 size = vol->used_bytes;
345 }
346
13415337 347 printf("Read %zu bytes from volume %s to %p\n", size, volume, buf);
68c7025d 348
694a0b3f
KP
349 if (vol->corrupted)
350 printf("read from corrupted volume %d", vol->vol_id);
351 if (offp + size > vol->used_bytes)
2984fd16 352 size = vol->used_bytes - offp;
694a0b3f
KP
353
354 tbuf_size = vol->usable_leb_size;
355 if (size < tbuf_size)
356 tbuf_size = ALIGN(size, ubi->min_io_size);
4519668b 357 tbuf = malloc_cache_aligned(tbuf_size);
694a0b3f
KP
358 if (!tbuf) {
359 printf("NO MEM\n");
7f5d8a4d 360 return ENOMEM;
694a0b3f
KP
361 }
362 len = size > tbuf_size ? tbuf_size : size;
363
364 tmp = offp;
365 off = do_div(tmp, vol->usable_leb_size);
366 lnum = tmp;
985fa93e 367 len_read = size;
694a0b3f
KP
368 do {
369 if (off + len >= vol->usable_leb_size)
370 len = vol->usable_leb_size - off;
371
372 err = ubi_eba_read_leb(ubi, vol, lnum, tbuf, off, len, 0);
373 if (err) {
374 printf("read err %x\n", err);
7f5d8a4d 375 err = -err;
694a0b3f
KP
376 break;
377 }
378 off += len;
379 if (off == vol->usable_leb_size) {
380 lnum += 1;
381 off -= vol->usable_leb_size;
382 }
383
384 size -= len;
385 offp += len;
386
694a0b3f 387 memcpy(buf, tbuf, len);
694a0b3f
KP
388
389 buf += len;
390 len = size > tbuf_size ? tbuf_size : size;
391 } while (size);
392
985fa93e
HD
393 if (!size)
394 env_set_hex("filesize", len_read);
395
694a0b3f 396 free(tbuf);
7f5d8a4d 397 return err;
694a0b3f
KP
398}
399
c58fb2cd 400static int ubi_dev_scan(struct mtd_info *info, const char *vid_header_offset)
694a0b3f 401{
25c8f400 402 char ubi_mtd_param_buffer[80];
694a0b3f
KP
403 int err;
404
c58fb2cd
MR
405 if (!vid_header_offset)
406 sprintf(ubi_mtd_param_buffer, "%s", info->name);
407 else
408 sprintf(ubi_mtd_param_buffer, "%s,%s", info->name,
409 vid_header_offset);
694a0b3f 410
25c8f400 411 err = ubi_mtd_param_parse(ubi_mtd_param_buffer, NULL);
c58fb2cd 412 if (err)
7f5d8a4d 413 return -err;
694a0b3f
KP
414
415 err = ubi_init();
c58fb2cd 416 if (err)
7f5d8a4d 417 return -err;
2ee951ba 418
694a0b3f
KP
419 return 0;
420}
421
e6661cf7
SR
422static int ubi_set_skip_check(char *volume, bool skip_check)
423{
424 struct ubi_vtbl_record vtbl_rec;
425 struct ubi_volume *vol;
426
427 vol = ubi_find_volume(volume);
428 if (!vol)
429 return ENODEV;
430
431 printf("%sing skip_check on volume %s\n",
432 skip_check ? "Sett" : "Clear", volume);
433
434 vtbl_rec = ubi->vtbl[vol->vol_id];
435 if (skip_check) {
436 vtbl_rec.flags |= UBI_VTBL_SKIP_CRC_CHECK_FLG;
437 vol->skip_check = 1;
438 } else {
439 vtbl_rec.flags &= ~UBI_VTBL_SKIP_CRC_CHECK_FLG;
440 vol->skip_check = 0;
441 }
442
443 return ubi_change_vtbl_record(ubi, vol->vol_id, &vtbl_rec);
444}
445
d821e5ed 446static int ubi_detach(void)
694a0b3f 447{
71829067
JH
448#ifdef CONFIG_CMD_UBIFS
449 /*
450 * Automatically unmount UBIFS partition when user
451 * changes the UBI device. Otherwise the following
452 * UBIFS commands will crash.
453 */
454 if (ubifs_is_mounted())
455 cmd_ubifs_umount();
456#endif
457
71829067
JH
458 /*
459 * Call ubi_exit() before re-initializing the UBI subsystem
460 */
c58fb2cd 461 if (ubi)
71829067 462 ubi_exit();
71829067 463
c58fb2cd
MR
464 ubi = NULL;
465
cddfc97d
HS
466 return 0;
467}
468
469int ubi_part(char *part_name, const char *vid_header_offset)
470{
c58fb2cd 471 struct mtd_info *mtd;
cddfc97d 472 int err = 0;
cddfc97d
HS
473
474 ubi_detach();
c58fb2cd
MR
475
476 mtd_probe_devices();
477 mtd = get_mtd_device_nm(part_name);
478 if (IS_ERR(mtd)) {
71829067
JH
479 printf("Partition %s not found!\n", part_name);
480 return 1;
481 }
c58fb2cd 482 put_mtd_device(mtd);
71829067 483
c58fb2cd 484 err = ubi_dev_scan(mtd, vid_header_offset);
71829067
JH
485 if (err) {
486 printf("UBI init error %d\n", err);
4a94e53b 487 printf("Please check, if the correct MTD partition is used (size big enough?)\n");
71829067
JH
488 return err;
489 }
490
491 ubi = ubi_devices[0];
492
493 return 0;
494}
495
496static int do_ubi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
497{
dd7185f1 498 int64_t size = 0;
71829067 499 ulong addr = 0;
386f20ca 500 bool skipcheck = false;
71829067
JH
501
502 if (argc < 2)
503 return CMD_RET_USAGE;
504
76428561 505 if (strcmp(argv[1], "detach") == 0)
cddfc97d 506 return ubi_detach();
cddfc97d 507
694a0b3f 508 if (strcmp(argv[1], "part") == 0) {
25c8f400 509 const char *vid_header_offset = NULL;
2d579e50 510
694a0b3f
KP
511 /* Print current partition */
512 if (argc == 2) {
c58fb2cd
MR
513 if (!ubi) {
514 printf("Error, no UBI device selected!\n");
694a0b3f
KP
515 return 1;
516 }
517
c58fb2cd
MR
518 printf("Device %d: %s, MTD partition %s\n",
519 ubi->ubi_num, ubi->ubi_name, ubi->mtd->name);
694a0b3f
KP
520 return 0;
521 }
522
47e26b1b 523 if (argc < 3)
4c12eeb8 524 return CMD_RET_USAGE;
694a0b3f 525
25c8f400
SK
526 if (argc > 3)
527 vid_header_offset = argv[3];
694a0b3f 528
71829067 529 return ubi_part(argv[2], vid_header_offset);
694a0b3f
KP
530 }
531
c58fb2cd
MR
532 if ((strcmp(argv[1], "part") != 0) && !ubi) {
533 printf("Error, no UBI device selected!\n");
694a0b3f
KP
534 return 1;
535 }
536
537 if (strcmp(argv[1], "info") == 0) {
538 int layout = 0;
539 if (argc > 2 && !strncmp(argv[2], "l", 1))
540 layout = 1;
541 return ubi_info(layout);
542 }
543
f9f4d809
HS
544 if (strcmp(argv[1], "check") == 0) {
545 if (argc > 2)
546 return ubi_check(argv[2]);
547
548 printf("Error, no volume name passed\n");
549 return 1;
550 }
551
694a0b3f
KP
552 if (strncmp(argv[1], "create", 6) == 0) {
553 int dynamic = 1; /* default: dynamic volume */
00612422 554 int id = UBI_VOL_NUM_AUTO;
694a0b3f
KP
555
556 /* Use maximum available size */
557 size = 0;
558
386f20ca
QS
559 /* E.g., create volume with "skipcheck" bit set */
560 if (argc == 7) {
561 skipcheck = strncmp(argv[6], "--skipcheck", 11) == 0;
562 argc--;
563 }
564
00612422
LM
565 /* E.g., create volume size type vol_id */
566 if (argc == 6) {
567 id = simple_strtoull(argv[5], NULL, 16);
568 argc--;
569 }
570
694a0b3f
KP
571 /* E.g., create volume size type */
572 if (argc == 5) {
573 if (strncmp(argv[4], "s", 1) == 0)
574 dynamic = 0;
575 else if (strncmp(argv[4], "d", 1) != 0) {
576 printf("Incorrect type\n");
577 return 1;
578 }
579 argc--;
580 }
581 /* E.g., create volume size */
582 if (argc == 4) {
f59f07ec
LM
583 if (argv[3][0] != '-')
584 size = simple_strtoull(argv[3], NULL, 16);
694a0b3f
KP
585 argc--;
586 }
587 /* Use maximum available size */
7f5d8a4d 588 if (!size) {
dd7185f1
PB
589 size = (int64_t)ubi->avail_pebs * ubi->leb_size;
590 printf("No size specified -> Using max size (%lld)\n", size);
7f5d8a4d 591 }
694a0b3f 592 /* E.g., create volume */
386f20ca
QS
593 if (argc == 3) {
594 return ubi_create_vol(argv[2], size, dynamic, id,
595 skipcheck);
596 }
694a0b3f
KP
597 }
598
599 if (strncmp(argv[1], "remove", 6) == 0) {
600 /* E.g., remove volume */
601 if (argc == 3)
602 return ubi_remove_vol(argv[2]);
603 }
604
e6661cf7
SR
605 if (strncmp(argv[1], "skipcheck", 9) == 0) {
606 /* E.g., change skip_check flag */
607 if (argc == 4) {
608 skipcheck = strncmp(argv[3], "on", 2) == 0;
609 return ubi_set_skip_check(argv[2], skipcheck);
610 }
611 }
612
694a0b3f 613 if (strncmp(argv[1], "write", 5) == 0) {
71829067
JH
614 int ret;
615
694a0b3f
KP
616 if (argc < 5) {
617 printf("Please see usage\n");
618 return 1;
619 }
620
621 addr = simple_strtoul(argv[2], NULL, 16);
a5c40670 622 size = simple_strtoul(argv[4], NULL, 16);
694a0b3f 623
cc734f5a
PB
624 if (strlen(argv[1]) == 10 &&
625 strncmp(argv[1] + 5, ".part", 5) == 0) {
626 if (argc < 6) {
627 ret = ubi_volume_continue_write(argv[3],
628 (void *)addr, size);
629 } else {
630 size_t full_size;
631 full_size = simple_strtoul(argv[5], NULL, 16);
632 ret = ubi_volume_begin_write(argv[3],
633 (void *)addr, size, full_size);
634 }
635 } else {
636 ret = ubi_volume_write(argv[3], (void *)addr, size);
637 }
71829067 638 if (!ret) {
dd7185f1 639 printf("%lld bytes written to volume %s\n", size,
71829067
JH
640 argv[3]);
641 }
642
643 return ret;
694a0b3f
KP
644 }
645
646 if (strncmp(argv[1], "read", 4) == 0) {
647 size = 0;
648
649 /* E.g., read volume size */
650 if (argc == 5) {
a5c40670 651 size = simple_strtoul(argv[4], NULL, 16);
694a0b3f
KP
652 argc--;
653 }
654
655 /* E.g., read volume */
656 if (argc == 4) {
657 addr = simple_strtoul(argv[2], NULL, 16);
658 argc--;
659 }
660
71829067 661 if (argc == 3) {
694a0b3f 662 return ubi_volume_read(argv[3], (char *)addr, size);
71829067 663 }
694a0b3f
KP
664 }
665
666 printf("Please see usage\n");
7f5d8a4d 667 return 1;
694a0b3f
KP
668}
669
388a29d0 670U_BOOT_CMD(
386f20ca 671 ubi, 7, 1, do_ubi,
2fb2604d 672 "ubi commands",
cddfc97d
HS
673 "detach"
674 " - detach ubi from a mtd partition\n"
675 "ubi part [part] [offset]\n"
25c8f400
SK
676 " - Show or set current partition (with optional VID"
677 " header offset)\n"
694a0b3f
KP
678 "ubi info [l[ayout]]"
679 " - Display volume and ubi layout information\n"
f9f4d809
HS
680 "ubi check volumename"
681 " - check if volumename exists\n"
386f20ca 682 "ubi create[vol] volume [size] [type] [id] [--skipcheck]\n"
f59f07ec
LM
683 " - create volume name with size ('-' for maximum"
684 " available size)\n"
694a0b3f
KP
685 "ubi write[vol] address volume size"
686 " - Write volume from address with size\n"
cc734f5a
PB
687 "ubi write.part address volume size [fullsize]\n"
688 " - Write part of a volume from address\n"
694a0b3f
KP
689 "ubi read[vol] address volume [size]"
690 " - Read volume to address with size\n"
691 "ubi remove[vol] volume"
692 " - Remove volume\n"
e6661cf7 693 "ubi skipcheck volume on/off - Set or clear skip_check flag in volume header\n"
694a0b3f 694 "[Legends]\n"
f6ca3b70
AW
695 " volume: character name\n"
696 " size: specified in bytes\n"
a89c33db 697 " type: s[tatic] or d[ynamic] (default=dynamic)"
694a0b3f 698);
This page took 0.385829 seconds and 4 git commands to generate.