1
0
Fork 0

sparse: Rename the file and header

The Android sparse image format is currently supported through a file
called aboot, which isn't really such a great name, since the sparse image
format is only used for transferring data with fastboot.

Rename the file and header to a file called "sparse", which also makes it
consistent with the header defining the image structures.

Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
utp
Maxime Ripard 2015-10-15 14:34:19 +02:00 committed by Tom Rini
parent 6fb77c48e4
commit 3d4ef38de2
5 changed files with 4 additions and 4 deletions

View File

@ -277,7 +277,7 @@ obj-y += stdio.o
# This option is not just y/n - it can have a numeric value
ifdef CONFIG_FASTBOOT_FLASH
obj-y += aboot.o
obj-y += image-sparse.o
ifdef CONFIG_FASTBOOT_FLASH_MMC_DEV
obj-y += fb_mmc.o
endif

View File

@ -9,8 +9,8 @@
#include <errno.h>
#include <fastboot.h>
#include <fb_mmc.h>
#include <image-sparse.h>
#include <part.h>
#include <aboot.h>
#include <sparse_format.h>
#include <mmc.h>

View File

@ -8,8 +8,8 @@
#include <config.h>
#include <common.h>
#include <aboot.h>
#include <fastboot.h>
#include <image-sparse.h>
#include <sparse_format.h>
#include <linux/mtd/mtd.h>

View File

@ -36,9 +36,9 @@
#include <config.h>
#include <common.h>
#include <aboot.h>
#include <div64.h>
#include <errno.h>
#include <image-sparse.h>
#include <malloc.h>
#include <part.h>
#include <sparse_format.h>