Package: vbetool
Version: 1.1-1
Severity: wishlist
Tags: patch
User: [email protected]
Usertags: origin-ubuntu jaunty ubuntu-patch
Hi,
I was wondering if you'd mind applying a small patch from Ubuntu which
enables support for lpia in vbetool. I know that Debian doesn't
(currently?) have an lpia port, but this is the only delta and it
won't adversely affect you or introduce any maintenance burden :). Other
packages have introduced similar changes to reduce the delta, see bug
#488278 for example.
In Ubuntu, we've applied the attached patch to achieve the following:
* Merge from Debian unstable (LP: #312950), remaining changes:
+ Build on lpia
+ No x86emu on lpia
Thanks for your time,
Iain
-- System Information:
Debian Release: lenny/sid
APT prefers intrepid-updates
APT policy: (500, 'intrepid-updates'), (500, 'intrepid-security'), (500,
'intrepid-proposed'), (500, 'intrepid-backports'), (500, 'intrepid')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.27-7-generic (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -u vbetool-1.1/debian/control vbetool-1.1/debian/control
--- vbetool-1.1/debian/control
+++ vbetool-1.1/debian/control
@@ -9,7 +10,7 @@
Vcs-Browser: http://git.brad-smith.co.uk/?p=debian/pkg-vbetool.git
Package: vbetool
-Architecture: i386 amd64 kfreebsd-i386 kfreebsd-amd64
+Architecture: i386 amd64 lpia kfreebsd-i386 kfreebsd-amd64
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: run real-mode video BIOS code to alter hardware state
vbetool uses lrmi in order to run code from the video BIOS. Currently, it
diff -u vbetool-1.1/debian/rules vbetool-1.1/debian/rules
--- vbetool-1.1/debian/rules
+++ vbetool-1.1/debian/rules
@@ -13,7 +13,7 @@
CFLAGS += -O2
endif
-ifeq ($(DEB_HOST_ARCH), $(findstring $(DEB_HOST_ARCH),i386))
+ifeq ($(DEB_HOST_ARCH), $(findstring $(DEB_HOST_ARCH),i386 lpia))
EMU =
else
EMU = --with-x86emu
diff -u vbetool-1.1/debian/changelog vbetool-1.1/debian/changelog