Skip to content
Snippets Groups Projects
Commit 3d4ef38d authored by Maxime Ripard's avatar Maxime Ripard Committed by Tom Rini
Browse files

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: default avatarMaxime Ripard <maxime.ripard@free-electrons.com>
Reviewed-by: default avatarTom Rini <trini@konsulko.com>
parent 6fb77c48
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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>
......
......@@ -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>
......
......@@ -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>
......
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment