crontab 无法通过交叉编译工作
crontab is not working via cross-compiling
我将 iMX6S 与 Yocto 一起使用。而我的 OS 确实有 crontab/cronie。而且我没有构建那个 OS 图像,所以我不能修改它。所以我做了一个cronie的交叉编译版本。我得到一个名为 crontab 的可执行文件。我检查并得到:
ELF 32-bit LSB executable, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, for GNU/Linux 3.2.0, BuildID[sha1]=3d8a5ebf81249e88a8b93badbabf83c8fc1f2b9d, not stripped
我通过以下方式编辑它:$ crontab -e
@reboot /home/root/loop
*/2 * * * * /home/root/cvtVid2Img
但它不起作用。我错过了什么吗?
我现在该怎么办?
感谢大家的帮助。这就是我解决问题的方法:
1. 我用 crontab 包构建了一个 OS 映像。
2. 用crontab 搜索所有相关包。
3. 将其复制到我的旧 OS 图像。
希望对您有所帮助。
我将 iMX6S 与 Yocto 一起使用。而我的 OS 确实有 crontab/cronie。而且我没有构建那个 OS 图像,所以我不能修改它。所以我做了一个cronie的交叉编译版本。我得到一个名为 crontab 的可执行文件。我检查并得到:
ELF 32-bit LSB executable, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, for GNU/Linux 3.2.0, BuildID[sha1]=3d8a5ebf81249e88a8b93badbabf83c8fc1f2b9d, not stripped
我通过以下方式编辑它:$ crontab -e
@reboot /home/root/loop
*/2 * * * * /home/root/cvtVid2Img
但它不起作用。我错过了什么吗?
我现在该怎么办?
感谢大家的帮助。这就是我解决问题的方法: 1. 我用 crontab 包构建了一个 OS 映像。 2. 用crontab 搜索所有相关包。 3. 将其复制到我的旧 OS 图像。 希望对您有所帮助。