cd30593428
The changes are: d0b4644 mmc-utils: add ability to enable/disable optional eMMC cache 64c2de8 mmc-utils: Add command to set the boot bus conditions 7891236 mmc-utils: add support to create gp partition 4afc8c8 mmc-utils: add check for max enhanced user area 50b6854 fix building errors on Android f4eb241 Fit usage to 80 cols c6cb053 mmc-utils: RPMB: add support for 4 rpmb operations 35c31fe mmc-utils: RPMB: add HMAC SHA256 support a8276f5 fix make handling Signed-off-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
20 lines
556 B
Makefile
20 lines
556 B
Makefile
################################################################################
|
|
#
|
|
# mmc-utils
|
|
#
|
|
################################################################################
|
|
|
|
MMC_UTILS_VERSION = d0b46442b50794217e53b2455c1344c548d9d088
|
|
MMC_UTILS_SITE = git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc-utils.git
|
|
MMC_UTILS_LICENSE = GPLv2
|
|
|
|
define MMC_UTILS_BUILD_CMDS
|
|
$(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS)
|
|
endef
|
|
|
|
define MMC_UTILS_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/mmc $(TARGET_DIR)/usr/bin/mmc
|
|
endef
|
|
|
|
$(eval $(generic-package))
|