ACK: LP#1571156: vbox: resync with 5.0.18-dfsg-2build1 V2
Brad Figg
brad.figg at canonical.com
Fri Apr 22 16:11:53 UTC 2016
On Fri, Apr 22, 2016 at 05:07:58PM +0100, Andy Whitcroft wrote:
> We have had a major update to virtualbox, update the kernel components
> to match. Pull request below. This is fairly substantial looking but
> I am assured by our upstream we need it.
>
> Proposing for SRU to xenial.
>
> -apw
>
> The following changes since commit 440128a3858ff1513c29e1429445d483985f3bd9:
>
> UBUNTU: Ubuntu-4.4.0-21.37 (2016-04-18 12:18:48 -0600)
>
> are available in the git repository at:
>
> git://git.launchpad.net/~apw/ubuntu/+source/linux/+git/pull lp1571156
>
> for you to fetch changes up to 53d977ab76c9ed671f6905ea9fa41797794655f3:
>
> UBUNTU: ubuntu: vbox -- update to 5.0.18-dfsg-2build1 (2016-04-22 16:45:17 +0100)
>
> ----------------------------------------------------------------
> Andy Whitcroft (1):
> UBUNTU: ubuntu: vbox -- update to 5.0.18-dfsg-2build1
>
> ubuntu/vbox/BOM | 4 +-
> ubuntu/vbox/dkms.conf | 2 +-
> ubuntu/vbox/include/VBox/HGSMI/HGSMI.h | 264 +++
> ubuntu/vbox/include/VBox/HGSMI/HGSMIChSetup.h | 77 +
> ubuntu/vbox/include/VBox/HGSMI/HGSMIChannels.h | 64 +
> ubuntu/vbox/include/VBox/HGSMI/HGSMIDefs.h | 123 ++
> ubuntu/vbox/include/VBox/HGSMI/HGSMIMemAlloc.h | 100 ++
> ubuntu/vbox/include/VBox/Hardware/VBoxVideoVBE.h | 87 +
> ubuntu/vbox/include/VBox/VBoxGuestLib.h | 83 +-
> ubuntu/vbox/include/VBox/VBoxVideo.h | 2016 ++++++++++++++++++++++
> ubuntu/vbox/include/VBox/VBoxVideoGuest.h | 347 ++++
> ubuntu/vbox/include/iprt/assert.h | 26 +-
> ubuntu/vbox/include/iprt/ctype.h | 2 +
> ubuntu/vbox/include/iprt/err.h | 2 +
> ubuntu/vbox/include/iprt/mangling.h | 3 +
> ubuntu/vbox/include/iprt/utf16.h | 98 ++
> ubuntu/vbox/include/the-linux-kernel.h | 429 +++++
> ubuntu/vbox/r0drv/linux/memobj-r0drv-linux.c | 59 +-
> ubuntu/vbox/vboxguest/revision-generated.h | 2 +-
> ubuntu/vbox/vboxguest/version-generated.h | 6 +-
> ubuntu/vbox/vboxsf/regops.c | 4 +
> ubuntu/vbox/vboxsf/version-generated.h | 6 +-
> ubuntu/vbox/vboxvideo/HGSMIBase.c | 694 ++++++++
> ubuntu/vbox/vboxvideo/HGSMICommon.c | 433 +++++
> ubuntu/vbox/vboxvideo/HGSMIMemAlloc.c | 661 +++++++
> ubuntu/vbox/vboxvideo/Makefile | 25 +-
> ubuntu/vbox/vboxvideo/Modesetting.c | 380 ++++
> ubuntu/vbox/vboxvideo/VBVABase.c | 389 +++++
> ubuntu/vbox/vboxvideo/heapoffset.c | 928 ++++++++++
> ubuntu/vbox/vboxvideo/r0drv | 1 +
> ubuntu/vbox/vboxvideo/vbox_drv.c | 300 ++++
> ubuntu/vbox/vboxvideo/vbox_drv.h | 312 ++++
> ubuntu/vbox/vboxvideo/vbox_dummy.c | 32 +
> ubuntu/vbox/vboxvideo/vbox_fb.c | 454 +++++
> ubuntu/vbox/vboxvideo/vbox_irq.c | 187 ++
> ubuntu/vbox/vboxvideo/vbox_main.c | 566 ++++++
> ubuntu/vbox/vboxvideo/vbox_mode.c | 801 +++++++++
> ubuntu/vbox/vboxvideo/vbox_ttm.c | 501 ++++++
> ubuntu/vbox/vboxvideo/vboxvideo_drm.c | 200 ---
> ubuntu/vbox/vboxvideo/vboxvideo_drm.h | 71 -
> ubuntu/vbox/vboxvideo/version-generated.h | 6 +-
> 41 files changed, 10403 insertions(+), 342 deletions(-)
> create mode 100644 ubuntu/vbox/include/VBox/HGSMI/HGSMI.h
> create mode 100644 ubuntu/vbox/include/VBox/HGSMI/HGSMIChSetup.h
> create mode 100644 ubuntu/vbox/include/VBox/HGSMI/HGSMIChannels.h
> create mode 100644 ubuntu/vbox/include/VBox/HGSMI/HGSMIDefs.h
> create mode 100644 ubuntu/vbox/include/VBox/HGSMI/HGSMIMemAlloc.h
> create mode 100644 ubuntu/vbox/include/VBox/Hardware/VBoxVideoVBE.h
> create mode 100644 ubuntu/vbox/include/VBox/VBoxVideo.h
> create mode 100644 ubuntu/vbox/include/VBox/VBoxVideoGuest.h
> create mode 100644 ubuntu/vbox/include/the-linux-kernel.h
> create mode 100644 ubuntu/vbox/vboxvideo/HGSMIBase.c
> create mode 100644 ubuntu/vbox/vboxvideo/HGSMICommon.c
> create mode 100644 ubuntu/vbox/vboxvideo/HGSMIMemAlloc.c
> create mode 100644 ubuntu/vbox/vboxvideo/Modesetting.c
> create mode 100644 ubuntu/vbox/vboxvideo/VBVABase.c
> create mode 100644 ubuntu/vbox/vboxvideo/heapoffset.c
> create mode 120000 ubuntu/vbox/vboxvideo/r0drv
> create mode 100644 ubuntu/vbox/vboxvideo/vbox_drv.c
> create mode 100644 ubuntu/vbox/vboxvideo/vbox_drv.h
> create mode 100644 ubuntu/vbox/vboxvideo/vbox_dummy.c
> create mode 100644 ubuntu/vbox/vboxvideo/vbox_fb.c
> create mode 100644 ubuntu/vbox/vboxvideo/vbox_irq.c
> create mode 100644 ubuntu/vbox/vboxvideo/vbox_main.c
> create mode 100644 ubuntu/vbox/vboxvideo/vbox_mode.c
> create mode 100644 ubuntu/vbox/vboxvideo/vbox_ttm.c
> delete mode 100644 ubuntu/vbox/vboxvideo/vboxvideo_drm.c
> delete mode 100644 ubuntu/vbox/vboxvideo/vboxvideo_drm.h
>
> ----- End forwarded message -----
>
> --
> kernel-team mailing list
> kernel-team at lists.ubuntu.com
> https://lists.ubuntu.com/mailman/listinfo/kernel-team
Just as lovely as V1
--
Brad Figg brad.figg at canonical.com http://www.canonical.com
More information about the kernel-team
mailing list