nand-part: rename mbr to a more meaningful name

This commit is contained in:
Alejandro Mery 2012-08-06 23:56:02 +00:00
parent 3fc53401f3
commit c7ea2b6e08
4 changed files with 3 additions and 3 deletions

2
.gitignore vendored
View File

@ -4,6 +4,6 @@ fex2bin
bootinfo
fel
pio
mbr
nand-part
*.o
*.swp

View File

@ -3,7 +3,7 @@ CFLAGS = -g -O0 -Wall -Wextra
CFLAGS += -std=c99 -D_POSIX_C_SOURCE=200112L
TOOLS = fexc bin2fex fex2bin bootinfo fel pio
TOOLS += mbr
TOOLS += nand-part
MISC_TOOLS = phoenix_info

View File

@ -49,7 +49,7 @@
#include <string.h>
#include <errno.h>
#include <fcntl.h>
#include "mbr.h"
#include "nand-part.h"
#define MAX_NAME 16

View File