Revert "image-fit: switch ENOLINK to ENOENT"
authorTom Rini <trini@konsulko.com>
Mon, 19 Sep 2016 14:43:12 +0000 (10:43 -0400)
committerTom Rini <trini@konsulko.com>
Mon, 19 Sep 2016 14:43:12 +0000 (10:43 -0400)
As while I want to support OpenBSD hosts, this change broke FIT images
as in the image checking code we care about ENOLINK and on further
review we need to think about what to change ENOLINK to so we can be
sure to handle the different cases here.

This reverts commit bac17b78daceeba1af2e1d8cd204ee460c71c93a.

Signed-off-by: Tom Rini <trini@konsulko.com>
common/image-fit.c

index 9ce68f1c21d4408611877fbe7fe88a64de7939c0..f833fe32cee566b662775b3eb1d9d227a6736391 100644 (file)
@@ -1566,7 +1566,7 @@ int fit_get_node_from_config(bootm_headers_t *images, const char *prop_name,
        noffset = fit_conf_get_prop_node(fit_hdr, cfg_noffset, prop_name);
        if (noffset < 0) {
                debug("*  %s: no '%s' in config\n", prop_name, prop_name);
-               return -ENOENT;
+               return -ENOLINK;
        }
 
        return noffset;