commit | db4ec4269eea3a1beae59d7ecc68aea98b14a471 | [log] [tgz] |
---|---|---|
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | Fri Jul 24 08:29:55 2020 +0200 |
committer | Simon Glass <sjg@chromium.org> | Tue Jul 28 19:30:39 2020 -0600 |
tree | 20e449df04302ab7825daa9baebac6234f96e85c | |
parent | 9beacb6c026bc979e840f022098c36f175555539 [diff] |
cmd: host: return value of do_host_bind() When trying to bind to a non-existent file the following output is displayed: => host bind 0 non_existent Failed to access host backing file 'non_existent' exit not allowed from main input shell. The last line is quite unexpected and due to an incorrect return value. If do_host_bind() fails, return CMD_RET_FAILURE (= 1). Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>