parent
f912edf1c5
commit
8714c04f2e
@ -1,42 +0,0 @@ |
|||||||
#include <ctype.h> |
|
||||||
#include <stdint.h> |
|
||||||
#include <stdio.h> |
|
||||||
#include <stdlib.h> |
|
||||||
#include <string.h> |
|
||||||
|
|
||||||
#include <errno.h> |
|
||||||
|
|
||||||
#include <flash.h> |
|
||||||
#include <macros.h> |
|
||||||
#include <shell.h> |
|
||||||
|
|
||||||
#include <fs/part.h> |
|
||||||
|
|
||||||
static void do_part_create(const char *s); |
|
||||||
|
|
||||||
static struct cmd part_cmds[] = { |
|
||||||
{ "create", do_part_create }, |
|
||||||
{ NULL, NULL }, |
|
||||||
}; |
|
||||||
|
|
||||||
extern struct flash_dev *flash; |
|
||||||
|
|
||||||
static void do_part_create(const char *s) |
|
||||||
{ |
|
||||||
(void)s; |
|
||||||
|
|
||||||
if (!flash) { |
|
||||||
fprintf(stderr, "error: no flash device probed.\n"); |
|
||||||
return; |
|
||||||
} |
|
||||||
|
|
||||||
if (part_create(flash) != 0) { |
|
||||||
fprintf(stderr, "error: unable to create partition table.\n"); |
|
||||||
return; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
void do_part_cmd(const char *line) |
|
||||||
{ |
|
||||||
cmd_exec(part_cmds, line); |
|
||||||
} |
|
Loading…
Reference in new issue