From: Stefan Brüns Date: Tue, 4 Oct 2016 19:46:35 +0000 (+0200) Subject: sandbox/fs: Set correct filetype for unknown filetype X-Git-Tag: v2016.11-rc2~10^2~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=2f159402d9ab0dc642759d9eab3b002cde33064d;p=u-boot sandbox/fs: Set correct filetype for unknown filetype The "hostfs ls" command prefixes each directory entry with either DIR, LNK or " " if it is a directory, symlink resp. regular file, or "???" for any other or unknown type. The latter only works if the type is set correctly, as the entry defaults to OS_FILET_REG and e.g. socket files show up as regular files. Signed-off-by: Stefan Brüns Acked-by: Simon Glass --- diff --git a/arch/sandbox/cpu/os.c b/arch/sandbox/cpu/os.c index 47622a599c..35ea00ce3c 100644 --- a/arch/sandbox/cpu/os.c +++ b/arch/sandbox/cpu/os.c @@ -366,6 +366,8 @@ int os_dirent_ls(const char *dirname, struct os_dirent_node **headp) case DT_LNK: next->type = OS_FILET_LNK; break; + default: + next->type = OS_FILET_UNKNOWN; } next->size = 0; snprintf(fname, len, "%s/%s", dirname, next->name);