Add contrib and non-free components to apt config

Needed for non-free firmware packages if we're using them
This commit is contained in:
Steve McIntyre 2017-06-19 01:18:11 +01:00 committed by Jeff Epler
parent bb1436bda3
commit f1702dd22c

View file

@ -195,6 +195,6 @@ def get_apt_handler(destdir, mirror, codename, architecture):
apt_handler.mirror = mirror
apt_handler.architecture = architecture
apt_handler.codename = codename
apt_handler.components = ['main']
apt_handler.components = ['main', 'contrib', 'non-free']
apt_handler.prepare_apt()
return apt_handler