I'm currently installing packages on my OpenWrt-based device manually, which involves executing a series of opkg commands:
opkg update
opkg install ffmpeg
opkg install openssl-util
opkg install file
opkg install unzip
opkg install minicom
Is it possible to include these package installations as part of the OpenWrt build process, ensuring that these packages are automatically installed when I flash the firmware onto a device? If so, could you please provide guidance on how to integrate these package installations into the build process, making the deployment of these packages more seamless and less manual?
Currently, I'm building a custom OpenWrt image using the following command: make -j1 V=s FILES="/home/openwrt/files" BIN_DIR="/home/openwrt/my_custom" . I want to include specific files from /home/openwrt/files in the image, but I'm also interested in adding above mentioned packages to the image. Can you guide me on how to include both the files and packages in the custom OpenWrt image?
I've successfully built a custom OpenWrt image using the following command: make -j1 V=s PACKAGES="ffmpeg openssl-util file unzip minicom" FILES="/home/openwrt/files" BIN_DIR="/home/openwrt/my_custom" . Can you please guide me on how to verify that the packages (ffmpeg, openssl-util, file, unzip, minicom) have been added to the generated image?