1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 08:42:12 +02:00

cmd: fix lsblk command

Add missing includes.
Add CMD_LSBLK to sandbox_defconfig.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
Heinrich Schuchardt
2020-07-13 22:22:31 +02:00
parent a2f0b504f4
commit b961d552f9
2 changed files with 3 additions and 0 deletions

View File

@@ -5,6 +5,8 @@
*/
#include <common.h>
#include <blk.h>
#include <command.h>
#include <dm.h>
static int do_lsblk(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[])