2010-03-10 17:29:38 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
|
|
* Portions Copyright (C) 2010 Magnus Eriksson <packetlss@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#include "cutils/log.h"
|
2010-11-10 18:40:44 +00:00
|
|
|
#include "flashutils.h"
|
|
|
|
|
|
|
|
#if 0
|
2010-03-10 17:29:38 +00:00
|
|
|
|
|
|
|
#ifdef LOG_TAG
|
|
|
|
#undef LOG_TAG
|
|
|
|
#endif
|
|
|
|
|
2010-11-10 18:40:44 +00:00
|
|
|
|
2010-03-19 21:37:11 +00:00
|
|
|
#define LOG_TAG "erase_image"
|
2010-03-10 17:29:38 +00:00
|
|
|
|
2010-03-19 21:37:11 +00:00
|
|
|
static int die(const char *msg, ...) {
|
2010-03-10 17:29:38 +00:00
|
|
|
int err = errno;
|
|
|
|
va_list args;
|
|
|
|
va_start(args, msg);
|
|
|
|
char buf[1024];
|
|
|
|
vsnprintf(buf, sizeof(buf), msg, args);
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
if (err != 0) {
|
|
|
|
strlcat(buf, ": ", sizeof(buf));
|
|
|
|
strlcat(buf, strerror(err), sizeof(buf));
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, "%s\n", buf);
|
|
|
|
LOGE("%s\n", buf);
|
2010-03-19 21:37:11 +00:00
|
|
|
return 3;
|
2010-03-10 17:29:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-19 21:37:11 +00:00
|
|
|
int erase_image(char* partition_name) {
|
2010-03-10 17:29:38 +00:00
|
|
|
MtdWriteContext *out;
|
|
|
|
size_t erased;
|
|
|
|
size_t total_size;
|
|
|
|
size_t erase_size;
|
|
|
|
|
|
|
|
if (mtd_scan_partitions() <= 0) die("error scanning partitions");
|
2010-03-19 21:37:11 +00:00
|
|
|
const MtdPartition *partition = mtd_find_partition_by_name(partition_name);
|
|
|
|
if (partition == NULL) return die("can't find %s partition", partition_name);
|
2010-03-10 17:29:38 +00:00
|
|
|
|
|
|
|
out = mtd_write_partition(partition);
|
2010-03-19 21:37:11 +00:00
|
|
|
if (out == NULL) return die("could not estabilish write context for %s", partition_name);
|
2010-03-10 17:29:38 +00:00
|
|
|
|
|
|
|
// do the actual erase, -1 = full partition erase
|
|
|
|
erased = mtd_erase_blocks(out, -1);
|
|
|
|
|
|
|
|
// erased = bytes erased, if zero, something borked
|
2010-03-19 21:37:11 +00:00
|
|
|
if (!erased) return die("error erasing %s", partition_name);
|
2010-03-10 17:29:38 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2010-03-19 21:37:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Erase a mtd partition */
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
if (argc != 2) {
|
|
|
|
fprintf(stderr, "usage: %s <partition>\n", argv[0]);
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
return erase_image(argv[1]);
|
|
|
|
}
|
2010-11-10 18:40:44 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
if (argc != 2) {
|
|
|
|
fprintf(stderr, "usage: %s partition\n", argv[0]);
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
2011-05-26 18:14:15 +00:00
|
|
|
return erase_raw_partition(NULL, argv[1]);
|
2010-11-10 18:40:44 +00:00
|
|
|
}
|