config_distro_bootcmd.h: Enable CONFIG_CMD_PART
The recent changes to config_distro_bootcmd.h require CONFIG_CMD_PART to be defined, as the default bootcmd now uses the "part" command. This fixes sunxi boards not booting with v2015.04-rc1. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Acked-by: Stephen Warren <swarren@nvidia.com>
This commit is contained in:
parent
364ac5b583
commit
af21f2fb6f
|
@ -10,6 +10,10 @@
|
||||||
#ifndef _CONFIG_CMD_DISTRO_BOOTCMD_H
|
#ifndef _CONFIG_CMD_DISTRO_BOOTCMD_H
|
||||||
#define _CONFIG_CMD_DISTRO_BOOTCMD_H
|
#define _CONFIG_CMD_DISTRO_BOOTCMD_H
|
||||||
|
|
||||||
|
/* We need the part command */
|
||||||
|
#define CONFIG_PARTITION_UUIDS
|
||||||
|
#define CONFIG_CMD_PART
|
||||||
|
|
||||||
#define BOOTENV_SHARED_BLKDEV_BODY(devtypel) \
|
#define BOOTENV_SHARED_BLKDEV_BODY(devtypel) \
|
||||||
"if " #devtypel " dev ${devnum}; then " \
|
"if " #devtypel " dev ${devnum}; then " \
|
||||||
"setenv devtype " #devtypel "; " \
|
"setenv devtype " #devtypel "; " \
|
||||||
|
|
Loading…
Reference in New Issue