Signed-off-by: Joerg Seitter <adk(a)seitter.net>
---
docs/customize-rootfs.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/customize-rootfs.txt b/docs/customize-rootfs.txt
index 54846dba5..3d4f0bf7b 100644
--- a/docs/customize-rootfs.txt
+++ b/docs/customize-rootfs.txt
@@ -25,5 +25,5 @@ loss of customized configuration data.
Another option is to configure a post-build action. This is available
in +Global settings+. It must point to a script relative to the root
of your openadk working copy. It will be invoked as part of the
-+*-imageinstall+ step with $ADK_TOPDIR as first argument. You can use
++-imageinstall+ step with $ADK_TOPDIR as first argument. You can use
it e.g. to modify the +root_*+ filesystem before bundling it.
--
2.11.0
Hello,
I am using a RPI3 B+ and using openadk successfully with the linux os using 4.14.71 kernel from raspberry pi itself. Now I am trying to run “openvino R5” which is an intel library that is only available as a precompiled so file for raspbian 9. It works indeed on raspbian 9.
But when I try to run their example demo file on my system, I get the error:
# ./myriad_compile
mksh: ./myriad_compile: not executable: 32-bit ELF file
So now I want to debug that, but I’m out of ideas on how to proceed.
You can find the package here: https://drive.google.com/open?id=1QQL343Svovi0ZQ0YewyiMdtt-m6TyHOc <https://drive.google.com/open?id=1QQL343Svovi0ZQ0YewyiMdtt-m6TyHOc>
just unpack it in the “package” directory to try it out.
So if you have any hints, I would really appreciate it.
I’m using glibc 2.27, with gcc 7.3.0 compiler.
Best regards,
Tom,
I admit I have no experience with openadk at this point having only
found it a few hours ago, but as it seems to do what I want to do I
wish to work within it's toolchain boundaries if possible. My idea is
hopefully to eventually develop a pcc/musl toolchain of similar nature
to the gcc/musl and llvm/musl that can be used for cross-compiling as
well as just straight building.
I'm building from within Easy Linux and intend to move the build into a
container when I have shown the basics of it works and extend from
there. Easy only has root access at this point for developing so the
setting is needed.
The last few lines before the error below are for information only. It
builds sucessfully from the scripts up to this point of coreutils.
What I would like is some guidance please as to where ?I should
?add/?set the setting>
"set FORCE_UNSAFE_CONFIGURE=1"
shown below, if you could.
----------log---------
checking whether mkdir handles trailing slash... yes
checking whether mkdir handles trailing dot... yes
checking whether mkfifo rejects trailing slashes... yes
checking whether mknod can create fifo without root privileges...
configure: error: in
`/mnt/sda6/openadk/host_build_x86_64-oe-linux/w-coreutils-8.25-1-host/coreutils-8.25':
configure: error: you should not run configure as root (set
FORCE_UNSAFE_CONFIGURE=1 in environment to bypass this check)
See `config.log' for more details
make[5]: *** [/mnt/sda6/openadk/mk/host-bottom.mk:17:
/mnt/sda6/openadk/host_build_x86_64-oe-linux/w-coreutils-8.25-1-host/.host_configure_done]
Error 1
make[4]: *** [Makefile:54: coreutils-host-compile] Error 2
make[3]: *** [mk/build.mk:232: package/hostcompile] Error 2
make[2]: *** [/mnt/sda6/openadk/mk/build.mk:175: world] Error 2
----------/log---------
If you want the full build log to this point I can attach or link
through pastebin (script attached below if you haven't come across it),
don't forget the empty line at the bottom and set it as 755.
----------
#!/bin/sh
# no command line arguments - assume read from stdin
if [ -z "$1" ] || [ "$1" = - ] ; then
curl -F 'f:1=<-' ix.io
#file name argument: post to 0x0
elif [ -e "$1" ] ; then
curl -F"file=@\"$1\"" https://0x0.st
else
cat << EOF
usage: head -n 20 foo.txt | $0
$0 < foo.txt
text input from stdin will be pasted to http://ix.io
usage: pastebin $filename
posts "filename" to https://0x0.st and gives you a url to pass on,
this can be binary and up to 256MB, but has a short lifespan.
this script is provided courtesy of sabotage linux.
http://ix.io will give you more help if needed.
EOF
fi
----------------