From 1ae87e60b55356f9d7fc380c182ddbcd89f18bf0 Mon Sep 17 00:00:00 2001 From: Stefan Schlosser Date: Fri, 7 Oct 2016 11:15:25 +0000 Subject: [PATCH] FIX: [uboot] use correct path for bootpass SVN commit 22134@trunk --- common/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/main.c b/common/main.c index 77edb4e1ec..7958810b14 100644 --- a/common/main.c +++ b/common/main.c @@ -295,7 +295,7 @@ int login (void) puts("\n"); memset(stored, 0x0, max); - len = cmd_yaffs_mread_file("/data/boot/bootpass", stored); + len = cmd_yaffs_mread_file("/data/root/boot/bootpass", stored); if (len != 16) { /* no file or md5 hash found */ puts("Login succeeded\n\n");