remove unnecessary package and add avs setup script

This commit is contained in:
Huang Xin 2022-06-30 20:08:21 -07:00
parent 7cfa02ca11
commit 7a910b47a8
2 changed files with 10 additions and 7 deletions

View File

@ -61,8 +61,6 @@ IMAGE_INSTALL_append = " \
c-ares \
cunit \
nghttp2 \
jemalloc \
portaudio \
opensc \
sqlite3 \
gstreamer1.0 \
@ -81,7 +79,6 @@ IMAGE_INSTALL_append = " \
json-c \
libev \
iptables \
strace \
useradd \
"

View File

@ -1,8 +1,14 @@
#!/bin/sh
hwclock -w
# start appmainprog
echo 2 > /proc/sys/kernel/randomize_va_space
# /usr/sbin/iptables-restore < /etc/iptables.rules
echo auostart appmainprog
hwclock -w
/usr/bin/appmainprog
/usr/sbin/iptables-restore < /etc/iptables.rules
echo auostart appmainprog
/usr/bin/appmainprog &
if [ -f /data/avs_setup.sh]
/data/avs_setup.sh > /dev/null &
fi