aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes/rootfs_deb.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/rootfs_deb.bbclass')
-rw-r--r--meta/classes/rootfs_deb.bbclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/rootfs_deb.bbclass b/meta/classes/rootfs_deb.bbclass
index 3989dc333b..969c5080ff 100644
--- a/meta/classes/rootfs_deb.bbclass
+++ b/meta/classes/rootfs_deb.bbclass
@@ -52,12 +52,12 @@ fakeroot rootfs_deb_do_rootfs () {
}
if [ ! -z "${LINGUAS_INSTALL}" ]; then
- apt-get install glibc-localedata-i18n
+ apt-get install glibc-localedata-i18n --force-yes --allow-unauthenticated </dev/null
if [ $? -ne 0 ]; then
exit $?
fi
for i in ${LINGUAS_INSTALL}; do
- apt-get install $i
+ apt-get install $i --force-yes --allow-unauthenticated </dev/null
if [ $? -ne 0 ]; then
exit $?
fi
@@ -66,7 +66,7 @@ fakeroot rootfs_deb_do_rootfs () {
if [ ! -z "${PACKAGE_INSTALL}" ]; then
for i in ${PACKAGE_INSTALL}; do
- apt-get install $i
+ apt-get install $i --force-yes --allow-unauthenticated </dev/null
if [ $? -eq 1 ]; then
exit 1
fi