blob: dd1bda300a6463d2c8a23c95854392293023b729 [file] [log] [blame]
Baruch Siach3324c962010-06-16 12:22:58 +02001/* Ported to busybox from mtd-utils.
2 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02003 * Licensed under GPLv2, see file LICENSE in this source tree.
Baruch Siach3324c962010-06-16 12:22:58 +02004 */
5
Baruch Siach3324c962010-06-16 12:22:58 +02006//config:config UBIATTACH
7//config: bool "ubiattach"
Reuben Dowle3e2834f2011-02-05 03:18:08 +01008//config: default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +01009//config: select PLATFORM_LINUX
Baruch Siach3324c962010-06-16 12:22:58 +020010//config: help
11//config: Attach MTD device to an UBI device.
12//config:
13//config:config UBIDETACH
14//config: bool "ubidetach"
Reuben Dowle3e2834f2011-02-05 03:18:08 +010015//config: default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +010016//config: select PLATFORM_LINUX
Baruch Siach3324c962010-06-16 12:22:58 +020017//config: help
18//config: Detach MTD device from an UBI device.
Reuben Dowle3e2834f2011-02-05 03:18:08 +010019//config:
20//config:config UBIMKVOL
21//config: bool "ubimkvol"
22//config: default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +010023//config: select PLATFORM_LINUX
Reuben Dowle3e2834f2011-02-05 03:18:08 +010024//config: help
25//config: Create a UBI volume.
26//config:
27//config:config UBIRMVOL
28//config: bool "ubirmvol"
29//config: default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +010030//config: select PLATFORM_LINUX
Reuben Dowle3e2834f2011-02-05 03:18:08 +010031//config: help
32//config: Delete a UBI volume.
33//config:
34//config:config UBIRSVOL
35//config: bool "ubirsvol"
36//config: default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +010037//config: select PLATFORM_LINUX
Reuben Dowle3e2834f2011-02-05 03:18:08 +010038//config: help
39//config: Resize a UBI volume.
Reuben Dowlea6108422011-04-26 04:27:48 +020040//config:
41//config:config UBIUPDATEVOL
42//config: bool "ubiupdatevol"
43//config: default y
44//config: select PLATFORM_LINUX
45//config: help
46//config: Update a UBI volume.
Reuben Dowle3e2834f2011-02-05 03:18:08 +010047
48//applet:IF_UBIATTACH(APPLET_ODDNAME(ubiattach, ubi_tools, BB_DIR_USR_SBIN, BB_SUID_DROP, ubiattach))
49//applet:IF_UBIDETACH(APPLET_ODDNAME(ubidetach, ubi_tools, BB_DIR_USR_SBIN, BB_SUID_DROP, ubidetach))
50//applet:IF_UBIMKVOL(APPLET_ODDNAME(ubimkvol, ubi_tools, BB_DIR_USR_SBIN, BB_SUID_DROP, ubimkvol))
51//applet:IF_UBIRMVOL(APPLET_ODDNAME(ubirmvol, ubi_tools, BB_DIR_USR_SBIN, BB_SUID_DROP, ubirmvol))
52//applet:IF_UBIRSVOL(APPLET_ODDNAME(ubirsvol, ubi_tools, BB_DIR_USR_SBIN, BB_SUID_DROP, ubirsvol))
Reuben Dowlea6108422011-04-26 04:27:48 +020053//applet:IF_UBIUPDATEVOL(APPLET_ODDNAME(ubiupdatevol, ubi_tools, BB_DIR_USR_SBIN, BB_SUID_DROP, ubiupdatevol))
Reuben Dowle3e2834f2011-02-05 03:18:08 +010054
Denys Vlasenkod1993f12011-04-26 04:32:05 +020055//kbuild:lib-$(CONFIG_UBIATTACH) += ubi_tools.o
56//kbuild:lib-$(CONFIG_UBIDETACH) += ubi_tools.o
57//kbuild:lib-$(CONFIG_UBIMKVOL) += ubi_tools.o
58//kbuild:lib-$(CONFIG_UBIRMVOL) += ubi_tools.o
59//kbuild:lib-$(CONFIG_UBIRSVOL) += ubi_tools.o
60//kbuild:lib-$(CONFIG_UBIUPDATEVOL) += ubi_tools.o
Baruch Siach3324c962010-06-16 12:22:58 +020061
62#include "libbb.h"
Denys Vlasenko7fe1e3f2012-03-11 18:04:14 +010063/* Some versions of kernel have broken headers, need this hack */
64#ifndef __packed
65# define __packed __attribute__((packed))
66#endif
Baruch Siach3324c962010-06-16 12:22:58 +020067#include <mtd/ubi-user.h>
68
Reuben Dowle3e2834f2011-02-05 03:18:08 +010069#define do_attach (ENABLE_UBIATTACH && applet_name[3] == 'a')
70#define do_detach (ENABLE_UBIDETACH && applet_name[3] == 'd')
71#define do_mkvol (ENABLE_UBIMKVOL && applet_name[3] == 'm')
72#define do_rmvol (ENABLE_UBIRMVOL && applet_name[4] == 'm')
73#define do_rsvol (ENABLE_UBIRSVOL && applet_name[4] == 's')
Reuben Dowlea6108422011-04-26 04:27:48 +020074#define do_update (ENABLE_UBIUPDATEVOL && applet_name[3] == 'u')
Baruch Siach3324c962010-06-16 12:22:58 +020075
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +020076static unsigned get_num_from_file(const char *path, unsigned max, const char *errmsg)
77{
78 char buf[sizeof(long long)*3];
79 unsigned long long num;
Denys Vlasenko0bfb9c22011-04-26 04:31:03 +020080
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +020081 if (open_read_close(path, buf, sizeof(buf)) < 0)
82 bb_perror_msg_and_die(errmsg, path);
83 /* It can be \n terminated, xatoull won't work well */
84 if (sscanf(buf, "%llu", &num) != 1 || num > max)
85 bb_error_msg_and_die(errmsg, path);
86 return num;
87}
88
89/* To prevent malloc(1G) accidents */
90#define MAX_SANE_ERASEBLOCK (16*1024*1024)
Baruch Siach3324c962010-06-16 12:22:58 +020091
Reuben Dowle3e2834f2011-02-05 03:18:08 +010092int ubi_tools_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
93int ubi_tools_main(int argc UNUSED_PARAM, char **argv)
Baruch Siach3324c962010-06-16 12:22:58 +020094{
Denys Vlasenkoe9b3fcc2013-06-30 02:47:45 +020095 static const struct suffix_mult size_suffixes[] = {
96 { "KiB", 1024 },
97 { "MiB", 1024*1024 },
98 { "GiB", 1024*1024*1024 },
99 { "", 0 }
100 };
101
Baruch Siach3324c962010-06-16 12:22:58 +0200102 unsigned opts;
103 char *ubi_ctrl;
Baruch Siach3324c962010-06-16 12:22:58 +0200104 int fd;
105 int mtd_num;
106 int dev_num = UBI_DEV_NUM_AUTO;
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100107 int vol_id = UBI_VOL_NUM_AUTO;
Micke Prag07fa09a2014-11-02 11:08:24 +0100108 int vid_hdr_offset = 0;
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200109 char *vol_name;
110 unsigned long long size_bytes = size_bytes; /* for compiler */
111 char *size_bytes_str;
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100112 int alignment = 1;
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200113 char *type;
114 union {
115 struct ubi_attach_req attach_req;
116 struct ubi_mkvol_req mkvol_req;
117 struct ubi_rsvol_req rsvol_req;
118 } req_structs;
119#define attach_req req_structs.attach_req
120#define mkvol_req req_structs.mkvol_req
121#define rsvol_req req_structs.rsvol_req
122 char path[sizeof("/sys/class/ubi/ubi%d_%d/usable_eb_size")
123 + 2 * sizeof(int)*3 + /*just in case:*/ 16];
124#define path_sys_class_ubi_ubi (path + sizeof("/sys/class/ubi/ubi")-1)
125
Paul B. Henson985345d2013-08-04 21:07:20 +0200126 strcpy(path, "/sys/class/ubi/ubi");
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200127 memset(&req_structs, 0, sizeof(req_structs));
Baruch Siach3324c962010-06-16 12:22:58 +0200128
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200129#define OPTION_m (1 << 0)
130#define OPTION_d (1 << 1)
131#define OPTION_n (1 << 2)
132#define OPTION_N (1 << 3)
133#define OPTION_s (1 << 4)
134#define OPTION_a (1 << 5)
135#define OPTION_t (1 << 6)
Denys Vlasenko186b98a2014-09-25 22:10:32 +0200136 if (do_mkvol) {
Micke Prag07fa09a2014-11-02 11:08:24 +0100137 opt_complementary = "-1:d+:n+:a+:O+";
138 opts = getopt32(argv, "md:n:N:s:a:t:O:",
Denys Vlasenko186b98a2014-09-25 22:10:32 +0200139 &dev_num, &vol_id,
Micke Prag07fa09a2014-11-02 11:08:24 +0100140 &vol_name, &size_bytes_str, &alignment, &type,
141 &vid_hdr_offset
Denys Vlasenko186b98a2014-09-25 22:10:32 +0200142 );
143 } else
144 if (do_update) {
145 opt_complementary = "-1";
146 opts = getopt32(argv, "s:at", &size_bytes_str);
147 opts *= OPTION_s;
148 } else {
149 opt_complementary = "-1:m+:d+:n+:a+";
150 opts = getopt32(argv, "m:d:n:N:s:a:t:",
151 &mtd_num, &dev_num, &vol_id,
152 &vol_name, &size_bytes_str, &alignment, &type
153 );
154 }
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200155
156 if (opts & OPTION_s)
Denys Vlasenkoe9b3fcc2013-06-30 02:47:45 +0200157 size_bytes = xatoull_sfx(size_bytes_str, size_suffixes);
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200158 argv += optind;
Denys Vlasenkof798ba92013-06-30 02:46:44 +0200159 ubi_ctrl = *argv++;
Baruch Siach3324c962010-06-16 12:22:58 +0200160
161 fd = xopen(ubi_ctrl, O_RDWR);
Denys Vlasenko8d3e2252010-08-31 12:42:06 +0200162 //xfstat(fd, &st, ubi_ctrl);
Baruch Siach3324c962010-06-16 12:22:58 +0200163 //if (!S_ISCHR(st.st_mode))
Denys Vlasenko8d3e2252010-08-31 12:42:06 +0200164 // bb_error_msg_and_die("%s: not a char device", ubi_ctrl);
Baruch Siach3324c962010-06-16 12:22:58 +0200165
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200166//usage:#define ubiattach_trivial_usage
Micke Prag07fa09a2014-11-02 11:08:24 +0100167//usage: "-m MTD_NUM [-d UBI_NUM] [-O VID_HDR_OFF] UBI_CTRL_DEV"
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200168//usage:#define ubiattach_full_usage "\n\n"
169//usage: "Attach MTD device to UBI\n"
170//usage: "\n -m MTD_NUM MTD device number to attach"
171//usage: "\n -d UBI_NUM UBI device number to assign"
Micke Prag07fa09a2014-11-02 11:08:24 +0100172//usage: "\n -O VID_HDR_OFF VID header offset"
Baruch Siach3324c962010-06-16 12:22:58 +0200173 if (do_attach) {
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200174 if (!(opts & OPTION_m))
Baruch Siach3324c962010-06-16 12:22:58 +0200175 bb_error_msg_and_die("%s device not specified", "MTD");
176
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200177 attach_req.mtd_num = mtd_num;
178 attach_req.ubi_num = dev_num;
Micke Prag07fa09a2014-11-02 11:08:24 +0100179 attach_req.vid_hdr_offset = vid_hdr_offset;
Baruch Siach3324c962010-06-16 12:22:58 +0200180
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200181 xioctl(fd, UBI_IOCATT, &attach_req);
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100182 } else
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200183
184//usage:#define ubidetach_trivial_usage
185//usage: "-d UBI_NUM UBI_CTRL_DEV"
186//usage:#define ubidetach_full_usage "\n\n"
187//usage: "Detach MTD device from UBI\n"
188//usage: "\n -d UBI_NUM UBI device number"
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100189 if (do_detach) {
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200190 if (!(opts & OPTION_d))
Baruch Siach3324c962010-06-16 12:22:58 +0200191 bb_error_msg_and_die("%s device not specified", "UBI");
192
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200193 /* FIXME? kernel expects int32_t* here: */
Baruch Siach3324c962010-06-16 12:22:58 +0200194 xioctl(fd, UBI_IOCDET, &dev_num);
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100195 } else
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200196
197//usage:#define ubimkvol_trivial_usage
198//usage: "UBI_DEVICE -N NAME [-s SIZE | -m]"
199//usage:#define ubimkvol_full_usage "\n\n"
200//usage: "Create UBI volume\n"
201//usage: "\n -a ALIGNMENT Volume alignment (default 1)"
202//usage: "\n -m Set volume size to maximum available"
203//usage: "\n -n VOLID Volume ID. If not specified,"
204//usage: "\n assigned automatically"
205//usage: "\n -N NAME Volume name"
206//usage: "\n -s SIZE Size in bytes"
207//usage: "\n -t TYPE Volume type (static|dynamic)"
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100208 if (do_mkvol) {
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200209 if (opts & OPTION_m) {
Paul B. Hensonf86404f2013-06-02 17:48:05 -0700210 unsigned leb_avail;
211 unsigned leb_size;
212 unsigned num;
Paul B. Hensonf86404f2013-06-02 17:48:05 -0700213 char *p;
Paul B. Hensonf86404f2013-06-02 17:48:05 -0700214
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200215 if (sscanf(ubi_ctrl, "/dev/ubi%u", &num) != 1)
216 bb_error_msg_and_die("wrong format of UBI device name");
217
218 p = path_sys_class_ubi_ubi + sprintf(path_sys_class_ubi_ubi, "%u/", num);
Paul B. Hensonf86404f2013-06-02 17:48:05 -0700219
220 strcpy(p, "avail_eraseblocks");
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200221 leb_avail = get_num_from_file(path, UINT_MAX, "Can't get available eraseblocks from '%s'");
Paul B. Hensonf86404f2013-06-02 17:48:05 -0700222
223 strcpy(p, "eraseblock_size");
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200224 leb_size = get_num_from_file(path, MAX_SANE_ERASEBLOCK, "Can't get eraseblock size from '%s'");
Paul B. Hensonf86404f2013-06-02 17:48:05 -0700225
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200226 size_bytes = leb_avail * (unsigned long long)leb_size;
227 //if (size_bytes <= 0)
228 // bb_error_msg_and_die("%s invalid maximum size calculated", "UBI");
Paul B. Hensonf86404f2013-06-02 17:48:05 -0700229 } else
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100230 if (!(opts & OPTION_s))
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200231 bb_error_msg_and_die("size not specified");
232
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100233 if (!(opts & OPTION_N))
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200234 bb_error_msg_and_die("name not specified");
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100235
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200236 mkvol_req.vol_id = vol_id;
237 mkvol_req.vol_type = UBI_DYNAMIC_VOLUME;
238 if ((opts & OPTION_t) && type[0] == 's')
239 mkvol_req.vol_type = UBI_STATIC_VOLUME;
240 mkvol_req.alignment = alignment;
241 mkvol_req.bytes = size_bytes; /* signed int64_t */
242 strncpy(mkvol_req.name, vol_name, UBI_MAX_VOLUME_NAME);
243 mkvol_req.name_len = strlen(vol_name);
244 if (mkvol_req.name_len > UBI_MAX_VOLUME_NAME)
245 bb_error_msg_and_die("volume name too long: '%s'", vol_name);
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100246
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200247 xioctl(fd, UBI_IOCMKVOL, &mkvol_req);
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100248 } else
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200249
250//usage:#define ubirmvol_trivial_usage
251//usage: "UBI_DEVICE -n VOLID"
252//usage:#define ubirmvol_full_usage "\n\n"
253//usage: "Remove UBI volume\n"
254//usage: "\n -n VOLID Volume ID"
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100255 if (do_rmvol) {
256 if (!(opts & OPTION_n))
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200257 bb_error_msg_and_die("volume id not specified");
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100258
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200259 /* FIXME? kernel expects int32_t* here: */
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100260 xioctl(fd, UBI_IOCRMVOL, &vol_id);
261 } else
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200262
263//usage:#define ubirsvol_trivial_usage
264//usage: "UBI_DEVICE -n VOLID -s SIZE"
265//usage:#define ubirsvol_full_usage "\n\n"
266//usage: "Resize UBI volume\n"
267//usage: "\n -n VOLID Volume ID"
268//usage: "\n -s SIZE Size in bytes"
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100269 if (do_rsvol) {
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100270 if (!(opts & OPTION_s))
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200271 bb_error_msg_and_die("size not specified");
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100272 if (!(opts & OPTION_n))
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200273 bb_error_msg_and_die("volume id not specified");
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100274
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200275 rsvol_req.bytes = size_bytes; /* signed int64_t */
276 rsvol_req.vol_id = vol_id;
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100277
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200278 xioctl(fd, UBI_IOCRSVOL, &rsvol_req);
Reuben Dowlea6108422011-04-26 04:27:48 +0200279 } else
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200280
281//usage:#define ubiupdatevol_trivial_usage
282//usage: "UBI_DEVICE [-t | [-s SIZE] IMG_FILE]"
283//usage:#define ubiupdatevol_full_usage "\n\n"
284//usage: "Update UBI volume\n"
285//usage: "\n -t Truncate to zero size"
286//usage: "\n -s SIZE Size in bytes to resize to"
Reuben Dowlea6108422011-04-26 04:27:48 +0200287 if (do_update) {
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200288 int64_t bytes64;
Reuben Dowlea6108422011-04-26 04:27:48 +0200289
290 if (opts & OPTION_t) {
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200291 /* truncate the volume by starting an update for size 0 */
292 bytes64 = 0;
293 /* this ioctl expects int64_t* parameter */
294 xioctl(fd, UBI_IOCVOLUP, &bytes64);
Reuben Dowlea6108422011-04-26 04:27:48 +0200295 }
296 else {
297 struct stat st;
Reuben Dowlea6108422011-04-26 04:27:48 +0200298 unsigned ubinum, volnum;
299 unsigned leb_size;
300 ssize_t len;
301 char *input_data;
302
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200303 /* Assume that device is in normal format. */
304 /* Removes need for scanning sysfs tree as full libubi does. */
Reuben Dowlea6108422011-04-26 04:27:48 +0200305 if (sscanf(ubi_ctrl, "/dev/ubi%u_%u", &ubinum, &volnum) != 2)
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200306 bb_error_msg_and_die("wrong format of UBI device name");
Reuben Dowlea6108422011-04-26 04:27:48 +0200307
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200308 sprintf(path_sys_class_ubi_ubi, "%u_%u/usable_eb_size", ubinum, volnum);
309 leb_size = get_num_from_file(path, MAX_SANE_ERASEBLOCK, "Can't get usable eraseblock size from '%s'");
Reuben Dowlea6108422011-04-26 04:27:48 +0200310
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200311 if (!(opts & OPTION_s)) {
312 if (!*argv)
Reuben Dowlea6108422011-04-26 04:27:48 +0200313 bb_show_usage();
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200314 xmove_fd(xopen(*argv, O_RDONLY), STDIN_FILENO);
Denys Vlasenko186b98a2014-09-25 22:10:32 +0200315 xfstat(STDIN_FILENO, &st, *argv);
316 size_bytes = st.st_size;
Reuben Dowlea6108422011-04-26 04:27:48 +0200317 }
318
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200319 bytes64 = size_bytes;
320 /* this ioctl expects signed int64_t* parameter */
321 xioctl(fd, UBI_IOCVOLUP, &bytes64);
Reuben Dowlea6108422011-04-26 04:27:48 +0200322
323 input_data = xmalloc(leb_size);
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200324 while ((len = full_read(STDIN_FILENO, input_data, leb_size)) > 0) {
Reuben Dowlea6108422011-04-26 04:27:48 +0200325 xwrite(fd, input_data, len);
326 }
327 if (len < 0)
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200328 bb_perror_msg_and_die("UBI volume update failed");
Reuben Dowlea6108422011-04-26 04:27:48 +0200329 }
Baruch Siach3324c962010-06-16 12:22:58 +0200330 }
331
332 if (ENABLE_FEATURE_CLEAN_UP)
333 close(fd);
334
335 return EXIT_SUCCESS;
336}