On Wed, Aug 22, 2018 at 2:56 PM, Ryan Harkin <[email protected]> wrote: > On Wed, 22 Aug 2018, 21:42 Andre McCurdy, <[email protected]> wrote: >> On Wed, Aug 22, 2018 at 1:10 PM, Ryan Harkin <[email protected]> >> wrote: >> > On Wed, 22 Aug 2018, 20:02 Martin Jansa, <[email protected]> wrote: >> >> >> >> Your 1st parameter is wrong, compare again with the example I gave you >> >> (don't include "brcm/" path in 1st param, because you want the symlink >> >> to >> >> point to just brcmfmac43430-sdio.AP6212.txt like you did in the version >> >> after cd). >> > >> > That doesn't work either. I tried it with the same result, but didn't >> > send a >> > log of it. That works for you? >> >> Martin's example is correct so maybe check your tests again for typos. >> It it still doesn't work then please do send a log. >> >> The link will point to whatever you define via the first parameter, so >> if you changed the first parameter it shouldn't be possible to get >> "the same result". >> >> $ mkdir foo >> $ ln -sf test_target foo/test1 >> $ ln -sf brcm/test_target foo/test2 >> $ ls -l foo >> >> lrwxrwxrwx 1 andre andre 11 Aug 22 13:35 test1 -> test_target >> lrwxrwxrwx 1 andre andre 16 Aug 22 13:35 test2 -> brcm/test_target > > Yes, that's essentially the same as what I'm getting. > > Now try "cat foo/test1" and what happens? > > There is no file called test_target in the foo directory. And neither is > there a file called brcm/test_target in the foo directory.
Correct. The above was just an example to show that you can * create symlinks * in the foo directory without cd'ing into the foo directory first. If you'd like the symlinks in the example to point to valid targets then you need to create the targets too, e.g. $ mkdir -p foo/brcm $ echo hello > foo/test_target $ echo hello2 > foo/brcm/test_target But note that the process of creating a symlink is always the same, regardless of whether the symlink points to a valid target or not (so you can run these extra commands to create the targets before or after you create the symlinks). -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
