diff --git a/hardware/graphics/nvidia-settings/actions.py b/hardware/graphics/nvidia-settings/actions.py deleted file mode 100644 index 2008560473..0000000000 --- a/hardware/graphics/nvidia-settings/actions.py +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/licenses/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import shelltools -from pisi.actionsapi import get - -def setup(): - pisitools.dosed("src/Makefile", "static", "dynamic") - -def build(): - shelltools.cd("src/libXNVCtrl") - autotools.make('clean') - autotools.make('CDEBUGFLAGS="-fPIC %s" CC="%s" libXNVCtrl.a' % (get.CFLAGS(), get.CC())) - - shelltools.cd("%s/%s" % (get.workDIR(), get.srcDIR())) - autotools.make('CC="%s" LD="%s" STRIP_CMD="/bin/true" NV_VERBOSE=1' % (get.CC(), get.LDFLAGS())) - -def install(): - pisitools.dodir("/usr/bin") - autotools.install("DESTDIR=%s PREFIX=/usr" % get.installDIR()) - - #pisitools.insinto("/usr/lib/static", "src/libXNVCtrl/libXNVCtrl.a") - #pisitools.insinto("/usr/include/NVCtrl", "src/libXNVCtrl/*.h") - - pisitools.dodoc("COPYING", "doc/*.txt") diff --git a/hardware/graphics/nvidia-settings/files/21-nvidia-settings.sh b/hardware/graphics/nvidia-settings/files/21-nvidia-settings.sh deleted file mode 100644 index 87a506f0df..0000000000 --- a/hardware/graphics/nvidia-settings/files/21-nvidia-settings.sh +++ /dev/null @@ -1 +0,0 @@ -test -d /proc/driver/nvidia && /usr/bin/nvidia-settings --load-config-only diff --git a/hardware/graphics/nvidia-settings/files/fix_validation.patch b/hardware/graphics/nvidia-settings/files/fix_validation.patch deleted file mode 100644 index 8dbc4ba14e..0000000000 --- a/hardware/graphics/nvidia-settings/files/fix_validation.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -Nur nvidia-settings-260.19.12-old//src/XF86Config-parser/Device.c nvidia-settings-260.19.12/src/XF86Config-parser/Device.c ---- nvidia-settings-260.19.12-old//src/XF86Config-parser/Device.c 2010-10-21 10:44:27.683000043 +0300 -+++ nvidia-settings-260.19.12/src/XF86Config-parser/Device.c 2010-10-21 10:45:33.802000043 +0300 -@@ -365,7 +365,7 @@ - "is required."); - return (FALSE); - } -- -+#if 0 - while (device) { - if (!device->driver) { - xconfigErrorMsg(ValidationErrorMsg, UNDEFINED_DRIVER_MSG, -@@ -375,6 +375,8 @@ - device = device->next; - } - return (TRUE); -+#endif -+ - } - - XConfigDevicePtr diff --git a/hardware/graphics/nvidia-settings/files/fix_xconfig_path.patch b/hardware/graphics/nvidia-settings/files/fix_xconfig_path.patch deleted file mode 100644 index b9a24b4a53..0000000000 --- a/hardware/graphics/nvidia-settings/files/fix_xconfig_path.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Nur nvidia-settings-260.19.12-old//src/gtk+-2.x/ctkdisplayconfig-utils.c nvidia-settings-260.19.12/src/gtk+-2.x/ctkdisplayconfig-utils.c ---- nvidia-settings-260.19.12-old//src/gtk+-2.x/ctkdisplayconfig-utils.c 2010-10-19 15:18:45.690001322 +0300 -+++ nvidia-settings-260.19.12/src/gtk+-2.x/ctkdisplayconfig-utils.c 2010-10-19 15:20:00.147000214 +0300 -@@ -3267,7 +3267,7 @@ - if (tmp_filename) { - filename = g_strdup(tmp_filename); - } else { -- filename = g_strdup(""); -+ filename = g_strdup("/etc/X11/xorg.conf"); - } - xconfigCloseConfigFile(); - diff --git a/hardware/graphics/nvidia-settings/files/nvidia-settings.desktop b/hardware/graphics/nvidia-settings/files/nvidia-settings.desktop deleted file mode 100644 index a82cae9a47..0000000000 --- a/hardware/graphics/nvidia-settings/files/nvidia-settings.desktop +++ /dev/null @@ -1,11 +0,0 @@ -[Desktop Entry] -Type=Application -Encoding=UTF-8 -Name=NVIDIA X Server Settings -Name[tr]=NVIDIA X Sunucu Ayarları -Comment=Configure NVIDIA X Server Settings -Comment[tr]=NVIDIA X Sunucu Ayarlarını Yapılandır -Exec=xdg-su -c "nvidia-settings" -Icon=nvidia-settings -Categories=Settings; -TryExec=/sys/module/nvidia diff --git a/hardware/graphics/nvidia-settings/files/nvidia-settings.png b/hardware/graphics/nvidia-settings/files/nvidia-settings.png deleted file mode 100644 index b506d99453..0000000000 Binary files a/hardware/graphics/nvidia-settings/files/nvidia-settings.png and /dev/null differ diff --git a/hardware/graphics/nvidia-settings/files/remove_driver.patch b/hardware/graphics/nvidia-settings/files/remove_driver.patch deleted file mode 100644 index b4757933d7..0000000000 --- a/hardware/graphics/nvidia-settings/files/remove_driver.patch +++ /dev/null @@ -1,36 +0,0 @@ -diff -Nur nvidia-settings-260.19.12-old//src/XF86Config-parser/Generate.c nvidia-settings-260.19.12/src/XF86Config-parser/Generate.c ---- nvidia-settings-260.19.12-old//src/XF86Config-parser/Generate.c 2010-10-22 13:57:02.009000043 +0300 -+++ nvidia-settings-260.19.12/src/XF86Config-parser/Generate.c 2010-10-22 13:58:47.343000043 +0300 -@@ -474,7 +474,7 @@ - - device->identifier = xconfigAlloc(32); - snprintf(device->identifier, 32, DEVICE_IDENTIFIER, count); -- device->driver = xconfigStrdup("nvidia"); -+ device->driver = NULL; - device->vendor = xconfigStrdup("NVIDIA Corporation"); - - if (bus != -1 && domain != -1 && slot != -1) { -diff -Nur nvidia-settings-260.19.12-old//src/gtk+-2.x/ctkdisplayconfig.c nvidia-settings-260.19.12/src/gtk+-2.x/ctkdisplayconfig.c ---- nvidia-settings-260.19.12-old//src/gtk+-2.x/ctkdisplayconfig.c 2010-10-22 14:03:50.881000043 +0300 -+++ nvidia-settings-260.19.12/src/gtk+-2.x/ctkdisplayconfig.c 2010-10-22 14:10:59.831000043 +0300 -@@ -6845,7 +6845,7 @@ - device->identifier = (char *)malloc(32); - snprintf(device->identifier, 32, "Device%d", device_id); - -- device->driver = xconfigStrdup("nvidia"); -+ device->driver = NULL; - device->vendor = xconfigStrdup("NVIDIA Corporation"); - device->board = xconfigStrdup(gpu->name); - -diff -Nur nvidia-settings-260.19.12-old//src/XF86Config-parser/Merge.c nvidia-settings-260.19.12/src/XF86Config-parser/Merge.c ---- nvidia-settings-260.19.12-old//src/XF86Config-parser/Merge.c 2010-10-22 14:03:50.865000043 +0300 -+++ nvidia-settings-260.19.12/src/XF86Config-parser/Merge.c 2010-10-22 14:20:32.606000042 +0300 -@@ -317,7 +317,7 @@ - /* Update driver */ - - free(dstDevice->driver); -- dstDevice->driver = xconfigStrdup(srcDevice->driver); -+ dstDevice->driver = NULL; - - /* Update vendor */ - diff --git a/hardware/graphics/nvidia-settings/files/remove_unused_sections.patch b/hardware/graphics/nvidia-settings/files/remove_unused_sections.patch deleted file mode 100644 index 45963813c1..0000000000 --- a/hardware/graphics/nvidia-settings/files/remove_unused_sections.patch +++ /dev/null @@ -1,59 +0,0 @@ -diff -Nur nvidia-settings-260.19.12-old//src/XF86Config-parser/Generate.c nvidia-settings-260.19.12/src/XF86Config-parser/Generate.c ---- nvidia-settings-260.19.12-old//src/XF86Config-parser/Generate.c 2010-10-22 11:37:31.615000042 +0300 -+++ nvidia-settings-260.19.12/src/XF86Config-parser/Generate.c 2010-10-22 11:37:59.976000043 +0300 -@@ -71,9 +71,9 @@ - - /* add files, fonts, and modules */ - -- config->files = xconfigAlloc(sizeof(XConfigFilesRec)); -- add_font_path(gop, config); -- add_modules(gop, config); -+ config->files = NULL; -+ /*add_font_path(gop, config); -+ add_modules(gop, config); */ - - /* add the keyboard and mouse */ - -@@ -82,6 +82,8 @@ - - /* add the layout */ - -+ config->inputs = NULL; -+ - add_layout(gop, config); - - return config; -@@ -1042,7 +1044,7 @@ - xconfigAddNewOption(&input->options, "ZAxisMapping", "4 5"); - - input->next = config->inputs; -- config->inputs = input; -+ config->inputs = NULL; - - return TRUE; - -@@ -1303,7 +1305,7 @@ - } - - input->next = config->inputs; -- config->inputs = input; -+ config->inputs = NULL; - - return TRUE; - -diff -Nur nvidia-settings-260.19.12-old//src/XF86Config-parser/Generate.c nvidia-settings-260.19.12/src/XF86Config-parser/Generate.c ---- nvidia-settings-260.19.12-old//src/XF86Config-parser/Generate.c 2010-10-21 11:11:06.251000043 +0300 -+++ nvidia-settings-260.19.12/src/XF86Config-parser/Generate.c 2010-10-21 11:32:59.793000043 +0300 -@@ -571,6 +571,12 @@ - { - XConfigInputrefPtr inputRef; - -+ XConfigInputPtr input; -+ input = xconfigFindInput(name, config->inputs); -+ -+ if(!input) -+ return; -+ - inputRef = xconfigAlloc(sizeof(XConfigInputrefRec)); - inputRef->input_name = xconfigStrdup(name); - inputRef->input = xconfigFindInput(inputRef->input_name, config->inputs); diff --git a/hardware/graphics/nvidia-settings/pspec.xml b/hardware/graphics/nvidia-settings/pspec.xml deleted file mode 100644 index e840101cce..0000000000 --- a/hardware/graphics/nvidia-settings/pspec.xml +++ /dev/null @@ -1,142 +0,0 @@ - - - - - nvidia-settings - http://www.nvidia.com - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - nvidia-settings - app:gui - The NVIDIA X Server Settings tool - The nvidia-settings utility is a tool for configuring the NVIDIA graphics driver. It operates by communicating with the NVIDIA X driver, querying and updating state as appropriate. - ftp://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-355.11.tar.bz2 - - atk-devel - gtk3-devel - cairo-devel - fontconfig-devel - gtk2-devel - libXext-devel - libXv-devel - gdk-pixbuf-devel - mesa-devel - libvdpau-devel - - - - - nvidia-settings - - atk - cairo - glib2 - libX11 - freetype - fontconfig - gtk2 - libXext - libXv - gdk-pixbuf - libXxf86vm - pango - - - /usr/bin - /etc/X11/Xsession.d - /usr/lib - /usr/share/applications - /usr/share/pixmaps - /usr/share/man - /usr/share/doc - - - nvidia-settings.desktop - nvidia-settings.png - 21-nvidia-settings.sh - - - - - - 2015-11-20 - 355.11 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-16 - 349.16 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-03-31 - 349.12 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-03-13 - 346.47 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-01-22 - 346.35 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-10-24 - 343.22 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-29 - 337.19 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-08 - 334.21 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-21 - 331.20 - Version bump. - Richard de Bruin - richdb@pisilinux.org - - - 2013-03-06 - 313.26 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-30 - 313.18 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - diff --git a/hardware/graphics/nvidia-settings/translations.xml b/hardware/graphics/nvidia-settings/translations.xml deleted file mode 100644 index 28c331c820..0000000000 --- a/hardware/graphics/nvidia-settings/translations.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - nvidia-settings - NVIDIA X Sunucusu ayarlama aracı - nvidia-settings aracı NVIDIA grafik sürücülerini ayarlamak için kullanılan bir araçtır. NVIDIA X sürücüsü ile iletişime geçerek çalışır, durum bilgisini gerekli olduğu gibi uygular, günceller. - - diff --git a/hardware/graphics/nvidia-xconfig/actions.py b/hardware/graphics/nvidia-xconfig/actions.py deleted file mode 100644 index 9740158898..0000000000 --- a/hardware/graphics/nvidia-xconfig/actions.py +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/licenses/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import shelltools -from pisi.actionsapi import get - - -def build(): - autotools.make("STRIP_CMD=/bin/true") - -def install(): - autotools.rawInstall("DESTDIR=%s PREFIX=/usr" % get.installDIR()) - pisitools.dodoc("COPYING") diff --git a/hardware/graphics/nvidia-xconfig/files/nvidia-bug-report.sh b/hardware/graphics/nvidia-xconfig/files/nvidia-bug-report.sh deleted file mode 100644 index e735aaee44..0000000000 --- a/hardware/graphics/nvidia-xconfig/files/nvidia-bug-report.sh +++ /dev/null @@ -1,316 +0,0 @@ -#!/bin/sh - -# NVIDIA Graphics Driver bug reporting shell script. This shell -# script will generate a log file named "nvidia-bug-report.log", which -# should be attached when emailing bug reports to NVIDIA. - - - -LOG_FILENAME=nvidia-bug-report.log - - -PATH="/sbin:/usr/sbin:$PATH" - - -NVIDIA_BUG_REPORT_CHANGE="$Change: 2074027 $" -NVIDIA_BUG_REPORT_VERSION=`echo $NVIDIA_BUG_REPORT_CHANGE | tr -c -d [:digit:]` - -# -# append() - append the contents of the specified file to the log -# - -append() { - echo "____________________________________________" >> $LOG_FILENAME - echo "" >> $LOG_FILENAME - - if [ ! -f "$1" ]; then - echo "$1 does not exist" >> $LOG_FILENAME - elif [ ! -r "$1" ]; then - echo "$1 is not readable" >> $LOG_FILENAME - else - echo "$1" >> $LOG_FILENAME - cat "$1" >> $LOG_FILENAME - fi - echo "" >> $LOG_FILENAME -} - -# -# append_silent() - same as append(), but don't print anything -# if the file does not exist -# - -append_silent() { - if [ -f "$1" -a -r "$1" ]; then - echo "____________________________________________" >> $LOG_FILENAME - echo "" >> $LOG_FILENAME - echo "$1" >> $LOG_FILENAME - cat "$1" >> $LOG_FILENAME - echo "" >> $LOG_FILENAME - fi -} - -# -# append_glob() - use the shell to expand a list of files, and invoke -# append() for each of them -# - -append_glob() { - for i in `ls $1 2> /dev/null;`; do - append "$i" - done -} - - - -# -# Start of script -# - - -# check that we are root (needed for `lspci -vxxx` and potentially for -# accessing kernel log files) - -if [ `id -u` -ne 0 ]; then - echo "ERROR: Please run $(basename $0) as root." - exit 1 -fi - - -# move any old log file out of the way - -if [ -f $LOG_FILENAME ]; then - mv $LOG_FILENAME ${LOG_FILENAME}.old -fi - - -# make sure what we can write to the log file - -touch $LOG_FILENAME 2> /dev/null - -if [ $? -ne 0 ]; then - echo - echo "ERROR: Working directory is not writable; please cd to a directory" - echo " where you have write permission so that the $LOG_FILENAME" - echo " file can be written." - echo - exit 1 -fi - - -# print a start message to stdout - -echo "" -echo -n "Running $(basename $0)..."; - - -# print prologue to the log file - -echo "____________________________________________" >> $LOG_FILENAME -echo "" >> $LOG_FILENAME -echo "Start of NVIDIA bug report log file. Please send this report," >> $LOG_FILENAME -echo "along with a description of your bug, to linux-bugs@nvidia.com." >> $LOG_FILENAME -echo "" >> $LOG_FILENAME -echo "nvidia-bug-report.sh Version: $NVIDIA_BUG_REPORT_VERSION" >> $LOG_FILENAME -echo "" >> $LOG_FILENAME -echo "Date: `date`" >> $LOG_FILENAME -echo "uname: `uname -a`" >> $LOG_FILENAME -echo "" >> $LOG_FILENAME - - -# append useful files - -append "/proc/driver/nvidia/version" - -append_glob "/proc/driver/nvidia/cards/*" -append_glob "/proc/driver/nvidia/agp/*" - -append_glob "/proc/driver/nvidia/warnings/*" -append "/proc/driver/nvidia/registry" - -append "/proc/cmdline" -append "/proc/cpuinfo" -append "/proc/interrupts" -append "/proc/meminfo" -append "/proc/modules" -append "/proc/version" -append "/proc/pci" -append "/proc/iomem" -append "/proc/mtrr" - -append "/etc/issue" - -append_silent "/etc/redhat-release" -append_silent "/etc/redhat_version" -append_silent "/etc/fedora-release" -append_silent "/etc/slackware-release" -append_silent "/etc/slackware-version" -append_silent "/etc/debian_release" -append_silent "/etc/debian_version" -append_silent "/etc/mandrake-release" -append_silent "/etc/yellowdog-release" -append_silent "/etc/sun-release" -append_silent "/etc/release" -append_silent "/etc/gentoo-release" - -append "/var/log/nvidia-installer.log" - -# append the X log; also, extract the config file named in the X log -# and append it - -for i in /var/log/XFree86.0.log /var/log/Xorg.0.log ; do - append "$i" - if [ -f $i -a -r $i ]; then - j=`grep "Using config file" $i | cut -f 2 -d \"` - append "$j" - fi -done - -# append ldd info - -glxinfo=`which glxinfo 2> /dev/null | head -n 1` - -echo "____________________________________________" >> $LOG_FILENAME -echo "" >> $LOG_FILENAME - -if [ $? -eq 0 -a "$glxinfo" ]; then - echo "ldd $glxinfo" >> $LOG_FILENAME - echo "" >> $LOG_FILENAME - ( ldd $glxinfo >> $LOG_FILENAME ; exit 0 ) > /dev/null 2>&1 - echo "" >> $LOG_FILENAME -else - echo "Skipping ldd output (glxinfo not found)" >> $LOG_FILENAME - echo "" >> $LOG_FILENAME -fi - -# lspci information - -lspci=`which lspci 2> /dev/null | head -n 1` - -echo "____________________________________________" >> $LOG_FILENAME -echo "" >> $LOG_FILENAME - -if [ $? -eq 0 -a "$lspci" ]; then - echo "$lspci -d \"10de:*\" -v -xxx" >> $LOG_FILENAME - echo "" >> $LOG_FILENAME - ( $lspci -d "10de:*" -v -xxx >> $LOG_FILENAME ; exit 0 ) > /dev/null 2>&1 - echo "" >> $LOG_FILENAME - echo "____________________________________________" >> $LOG_FILENAME - echo "" >> $LOG_FILENAME - echo "$lspci -t" >> $LOG_FILENAME - echo "" >> $LOG_FILENAME - ( $lspci -t >> $LOG_FILENAME ; exit 0 ) > /dev/null 2>&1 - echo "" >> $LOG_FILENAME -else - echo "Skipping lspci output (lspci not found)" >> $LOG_FILENAME - echo "" >> $LOG_FILENAME -fi - -# dmidecode - -dmidecode=`which dmidecode 2> /dev/null | head -n 1` - -echo "____________________________________________" >> $LOG_FILENAME -echo "" >> $LOG_FILENAME - -if [ $? -eq 0 -a "$dmidecode" ]; then - echo "$dmidecode" >> $LOG_FILENAME - echo "" >> $LOG_FILENAME - ( $dmidecode >> $LOG_FILENAME ; exit 0 ) > /dev/null 2>&1 - echo "" >> $LOG_FILENAME -else - echo "Skipping dmidecode output (dmidecode not found)" >> $LOG_FILENAME - echo "" >> $LOG_FILENAME -fi - -# module version magic - -modinfo=`which modinfo 2> /dev/null | head -n 1` - -echo "____________________________________________" >> $LOG_FILENAME -echo "" >> $LOG_FILENAME - -if [ $? -eq 0 -a "$modinfo" ]; then - echo "$modinfo nvidia | grep vermagic" >> $LOG_FILENAME - echo "" >> $LOG_FILENAME - ( $modinfo nvidia | grep vermagic >> $LOG_FILENAME ; exit 0 ) > /dev/null 2>&1 - echo "" >> $LOG_FILENAME -else - echo "Skipping modinfo output (modinfo not found)" >> $LOG_FILENAME - echo "" >> $LOG_FILENAME -fi - -# get any relevant kernel messages - -echo "____________________________________________" >> $LOG_FILENAME -echo "" >> $LOG_FILENAME -echo "Scanning kernel log files for NVRM messages:" >> $LOG_FILENAME -echo "" >> $LOG_FILENAME - -for i in /var/log/messages /var/log/kernel.log ; do - if [ -f $i ]; then - echo " $i:" >> $LOG_FILENAME - ( cat $i | grep NVRM >> $LOG_FILENAME ; exit 0 ) > /dev/null 2>&1 - fi -done - -# append dmesg output - -echo "" >> $LOG_FILENAME -echo "____________________________________________" >> $LOG_FILENAME -echo "" >> $LOG_FILENAME -echo "dmesg:" >> $LOG_FILENAME -echo "" >> $LOG_FILENAME -( dmesg >> $LOG_FILENAME ; exit 0 ) > /dev/null 2>&1 - -which gcc >/dev/null 2>&1 -if [ $? -eq 0 ]; then - echo "____________________________________________" >> $LOG_FILENAME - echo "" >> $LOG_FILENAME - ( gcc -v 2>> $LOG_FILENAME ; exit 0 ) > /dev/null 2>&1 -fi - -which g++ >/dev/null 2>&1 -if [ $? -eq 0 ]; then - echo "____________________________________________" >> $LOG_FILENAME - echo "" >> $LOG_FILENAME - ( g++ -v 2>> $LOG_FILENAME ; exit 0 ) > /dev/null 2>&1 -fi - -echo "____________________________________________" >> $LOG_FILENAME -echo "" >> $LOG_FILENAME -echo "xset -q:" >> $LOG_FILENAME -echo "" >> $LOG_FILENAME - -( xset -q >> $LOG_FILENAME & sleep 1 ; kill -9 $! ) > /dev/null 2>&1 - -if [ $? -eq 0 ]; then - # The xset process is still there. - echo "xset could not connect to an X server" >> $LOG_FILENAME -fi - -echo "____________________________________________" >> $LOG_FILENAME -echo "" >> $LOG_FILENAME -echo "nvidia-settings -q all:" >> $LOG_FILENAME -echo "" >> $LOG_FILENAME - -( nvidia-settings -q all >> $LOG_FILENAME & sleep 1 ; kill -9 $! ) > /dev/null 2>&1 - -if [ $? -eq 0 ]; then - # The nvidia-settings process is still there. - echo "nvidia-settings could not connect to an X server" >> $LOG_FILENAME -fi -echo "____________________________________________" >> $LOG_FILENAME - -# print epilogue to log file - -echo "" >> $LOG_FILENAME -echo "End of NVIDIA bug report log file." >> $LOG_FILENAME - - -# Done - -echo " complete." -echo "" -echo "The file $LOG_FILENAME has been created; please send this report," -echo "along with a description of your bug, to linux-bugs@nvidia.com." -echo "" diff --git a/hardware/graphics/nvidia-xconfig/pspec.xml b/hardware/graphics/nvidia-xconfig/pspec.xml deleted file mode 100644 index 7c92d176fe..0000000000 --- a/hardware/graphics/nvidia-xconfig/pspec.xml +++ /dev/null @@ -1,109 +0,0 @@ - - - - - nvidia-xconfig - http://www.nvidia.com - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - The NVIDIA X Configuration Tool - The NVIDIA X Configuration Tool - ftp://download.nvidia.com/XFree86/nvidia-xconfig/nvidia-xconfig-355.11.tar.bz2 - - - - nvidia-xconfig - - /usr/bin - /usr/share/man - /usr/share/doc - - - nvidia-bug-report.sh - - - - - - 2015-11-20 - 355.11 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-16 - 349.16 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-03-31 - 349.12 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-03-13 - 346.47 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-01-22 - 346.35 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-10-24 - 343.22 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-03-08 - 337.19 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-08 - 334.21 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-21 - 331.20 - Version bump. - Richard de Bruin - richdb@pisilinux.org - - - 2013-03-30 - 313.26 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-29 - 313.18 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - diff --git a/hardware/graphics/nvidia-xconfig/translations.xml b/hardware/graphics/nvidia-xconfig/translations.xml deleted file mode 100644 index 9b83e5b498..0000000000 --- a/hardware/graphics/nvidia-xconfig/translations.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - nvidia-xconfig - NVIDIA X yapılandırma araçı - NVIDIA X yapılandırma araçı - -