Comment 2 for bug 1571781

Revision history for this message
Mario Limonciello (superm1) wrote :

Thanks for the report. It looks like it was detecting the package 'nvidia-340' for installation for you. This is in our CD image for mythbuntu (http://cdimage.ubuntu.com/mythbuntu/daily-live/current/xenial-desktop-amd64.list)

It is supposed to get installed directly from ubiquity's function to record_installed(). I wonder if something changed in ubiquity that's breaking this then..

        video_driver = progress.get('mythbuntu/video_driver')
        if video_driver != "Open Source Driver":
            #Install driver
            to_install.append(video_driver)

            #Build tvout/tvstandard
            out = progress.get('mythbuntu/tvout')
            standard = progress.get('mythbuntu/tvstandard')
            #Enabling xorg.conf stuff
            if 'nvidia' in video_driver:
                self.enable_nvidia(out,standard)
            else:
                self.enable_amd()

        #Mark new items
        install_misc.record_installed(to_install)