mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
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>
This commit is contained in:
parent
6fb77c48e4
commit
3d4ef38de2
5 changed files with 4 additions and 4 deletions
|
@ -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>
|
Loading…
Reference in a new issue