[Pkg-fglrx-devel] r1012 - in fglrx-legacy-driver/trunk/debian: . po
Andreas Beckmann
anbe-guest at alioth.debian.org
Wed Aug 1 12:48:45 UTC 2012
Author: anbe-guest
Date: 2012-08-01 12:48:44 +0000 (Wed, 01 Aug 2012)
New Revision: 1012
Removed:
fglrx-legacy-driver/trunk/debian/fglrx-driver.NEWS
fglrx-legacy-driver/trunk/debian/libfglrx.preinst
fglrx-legacy-driver/trunk/debian/libfglrx.templates
Modified:
fglrx-legacy-driver/trunk/debian/changelog
fglrx-legacy-driver/trunk/debian/control
fglrx-legacy-driver/trunk/debian/po/POTFILES.in
Log:
drop check for unsupported devices - this package adds back support for them
Modified: fglrx-legacy-driver/trunk/debian/changelog
===================================================================
--- fglrx-legacy-driver/trunk/debian/changelog 2012-08-01 12:21:51 UTC (rev 1011)
+++ fglrx-legacy-driver/trunk/debian/changelog 2012-08-01 12:48:44 UTC (rev 1012)
@@ -7,6 +7,7 @@
amd-libopencl1, amd-opencl-dev, amd-clinfo, and the transitional packages.
* Rename remaining binary packages: *fglrx* => *fglrx-legacy*.
* There is no /etc/ati/atiapfxx.blb in the legacy driver.
+ * libfglrx.preinst: Drop check for unsupported devices.
-- Andreas Beckmann <debian at abeckmann.de> Wed, 01 Aug 2012 13:54:55 +0200
Modified: fglrx-legacy-driver/trunk/debian/control
===================================================================
--- fglrx-legacy-driver/trunk/debian/control 2012-08-01 12:21:51 UTC (rev 1011)
+++ fglrx-legacy-driver/trunk/debian/control 2012-08-01 12:48:44 UTC (rev 1012)
@@ -85,8 +85,6 @@
Architecture: i386 amd64
Multi-Arch: same
Pre-Depends:
- debconf (>= 0.5) | debconf-2.0,
- pciutils,
${misc:Pre-Depends},
Depends:
${shlibs:Depends},
Deleted: fglrx-legacy-driver/trunk/debian/fglrx-driver.NEWS
===================================================================
--- fglrx-legacy-driver/trunk/debian/fglrx-driver.NEWS 2012-08-01 12:21:51 UTC (rev 1011)
+++ fglrx-legacy-driver/trunk/debian/fglrx-driver.NEWS 2012-08-01 12:48:44 UTC (rev 1012)
@@ -1,10 +0,0 @@
-fglrx-driver (1:12-6-2) unstable; urgency=low
-
- Starting with the Catalyst 12.6 release, support for R6XX/R7XX based GPUs
- has been dropped by AMD/ATI. This includes any RadeonHD older than 5xxx,
- e.g. RadeonHD 2000
- RadeonHD 3000
- RadeonHD 4000
- Please switch to the free radeon driver (xserver-xorg-video-radeon).
-
- -- Andreas Beckmann <debian at abeckmann.de> Mon, 04 Jun 2012 10:39:13 +0200
Deleted: fglrx-legacy-driver/trunk/debian/libfglrx.preinst
===================================================================
--- fglrx-legacy-driver/trunk/debian/libfglrx.preinst 2012-08-01 12:21:51 UTC (rev 1011)
+++ fglrx-legacy-driver/trunk/debian/libfglrx.preinst 2012-08-01 12:48:44 UTC (rev 1012)
@@ -1,203 +0,0 @@
-#!/bin/sh
-set -e
-
-. /usr/share/debconf/confmodule
-
-UNSUPPORTED_PCIIDS="
-10029400
-10029401
-10029402
-10029403
-10029405
-1002940A
-1002940B
-1002940F
-10029440
-10029441
-10029442
-10029443
-10029444
-10029446
-10029447
-1002944A
-1002944B
-1002944C
-1002944E
-1002944F
-10029450
-10029451
-10029452
-10029456
-1002945A
-1002945B
-1002945E
-10029460
-10029462
-1002946A
-1002946B
-1002947A
-1002947B
-10029480
-10029487
-10029488
-10029489
-1002948A
-1002948F
-10029490
-10029491
-10029495
-10029498
-1002949C
-1002949E
-1002949F
-100294A0
-100294A1
-100294A3
-100294B1
-100294B3
-100294B4
-100294B5
-100294C0
-100294C1
-100294C3
-100294C4
-100294C5
-100294C6
-100294C7
-100294C8
-100294C9
-100294CB
-100294CC
-10029500
-10029501
-10029504
-10029505
-10029506
-10029507
-10029508
-10029509
-1002950F
-10029511
-10029513
-10029515
-10029517
-10029519
-10029540
-10029541
-10029542
-1002954E
-1002954F
-10029552
-10029553
-10029555
-10029557
-1002955F
-10029580
-10029581
-10029583
-10029586
-10029587
-10029588
-10029589
-1002958A
-1002958B
-1002958C
-1002958D
-1002958E
-1002958F
-10029590
-10029591
-10029593
-10029595
-10029596
-10029597
-10029598
-10029599
-1002959B
-100295C0
-100295C2
-100295C4
-100295C5
-100295C6
-100295C7
-100295C9
-100295CC
-100295CD
-100295CE
-100295CF
-10029610
-10029611
-10029612
-10029613
-10029614
-10029615
-10029616
-10029710
-10029711
-10029712
-10029713
-10029714
-10029715
-"
-
-find_unsupported_gpus()
-{
- # Check for R6xx, R7xx, ... GPUs that are no longer supported starting with 12-6
- if lspci --version > /dev/null 2>&1; then
- lspci -mn \
- | awk '{ gsub("\"",""); if ($2 == "0300") { print $1 " " $3$4 } }' \
- | while read dev id
- do
- for x in $UNSUPPORTED_PCIIDS
- do
- if [ "$x" = "$id" ]; then
- echo "$dev"
- break
- fi
- done
- done
- fi
-}
-
-
-check_for_unsupported_gpus()
-{
- # allow to disable the check via preseeding
- db_get fglrx-driver/check-for-unsupported-gpu
- test "$RET" = "true" || return 0
-
- UNSUPPORTED_DEVICES="$(find_unsupported_gpus)"
-
- test -n "$UNSUPPORTED_DEVICES" || return 0
-
- UNSUPPORTED="$(for dev in $UNSUPPORTED_DEVICES ; do lspci -nn -s "$dev" ; done)"
-
- db_subst fglrx-driver/install-even-if-unsupported-gpu-exists unsupported-device "$UNSUPPORTED"
-
- # ensure the question is asked again unless it was accepted previously
- db_get fglrx-driver/install-even-if-unsupported-gpu-exists
- if [ "$RET" = "false" ]; then
- db_fset fglrx-driver/install-even-if-unsupported-gpu-exists seen false
- fi
-
- db_input high fglrx-driver/install-even-if-unsupported-gpu-exists || true
- db_go
-
- echo "*** The following unsupported devices are present in the machine:"
- echo "$UNSUPPORTED"
-
- db_get fglrx-driver/install-even-if-unsupported-gpu-exists
- if [ "$RET" = "false" ]; then
- echo "Aborting fglrx installation."
- exit 1
- fi
-}
-
-
-if [ "$1" = "install" ] || [ "$1" = "upgrade" ]; then
-
- check_for_unsupported_gpus
-
-fi
-
-#DEBHELPER#
Deleted: fglrx-legacy-driver/trunk/debian/libfglrx.templates
===================================================================
--- fglrx-legacy-driver/trunk/debian/libfglrx.templates 2012-08-01 12:21:51 UTC (rev 1011)
+++ fglrx-legacy-driver/trunk/debian/libfglrx.templates 2012-08-01 12:48:44 UTC (rev 1012)
@@ -1,24 +0,0 @@
-Template: fglrx-driver/check-for-unsupported-gpu
-Type: boolean
-Default: true
-Description: for internal use
- Can be preseeded. If set to false, disables the check for no longer
- supported GPUs based on R6XX/R7XX.
-
-Template: fglrx-driver/install-even-if-unsupported-gpu-exists
-Type: boolean
-Default: false
-#flag:translate!:3
-_Description: Install fglrx driver despite unsupported graphics card?
- The following graphics chipset found in your system is no longer handled
- by the fglrx driver:
- .
- ${unsupported-device}
- .
- The above card requires the free Radeon driver in the package
- xserver-xorg-video-radeon. Before the Radeon driver can be used you must
- remove fglrx configuration from xorg.conf (and xorg.conf.d/) and purge
- (not just remove) the fglrx-driver package.
- .
- You may wish to keep fglrx (for instance to drive some other card), but
- the above card won't be usable.
Modified: fglrx-legacy-driver/trunk/debian/po/POTFILES.in
===================================================================
--- fglrx-legacy-driver/trunk/debian/po/POTFILES.in 2012-08-01 12:21:51 UTC (rev 1011)
+++ fglrx-legacy-driver/trunk/debian/po/POTFILES.in 2012-08-01 12:48:44 UTC (rev 1012)
@@ -1,2 +1 @@
-[type: gettext/rfc822deb] libfglrx.templates
[type: gettext/rfc822deb] fglrx-driver.templates
More information about the Pkg-fglrx-devel
mailing list