Skip to content

Instantly share code, notes, and snippets.

I tried 331.67 from nvidia web, but the problem stays.
I have found something more, any time I put vga=normal in kernel line (which somebody mentioned as a help), system freezes during booting.
Any help is appreciated.
it freezes somewhere after
private kernel: [ 11.235062] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input12
===normal boot continues with
Apr 10 06:17:37 private kernel: [ 8.276893] Adding 17329148k swap on /dev/sdb3. Priority:-1 extents:1 across:17329148k SSFS
[FAILED] Failed to start Initial Setup configuration program.
See 'systemctl status initial-setup-graphical.service' for details.
# systemctl status initial-setup-graphical.service
initial-setup-graphical.service - Initial Setup configuration program
Loaded: loaded (/usr/lib/systemd/system/initial-setup-graphical.service; enabled)
Active: failed (Result: exit-code) since Wed 2014-04-09 14:10:04 CEST; 1min 0s ago
Process: 2773 ExecStart=/bin/xinit /bin/firstboot-windowmanager /bin/initial-setup -- /bin/Xorg :9 -ac -nolisten tcp (code=exited, status=1/FAILURE)
Main PID: 2773 (code=exited, status=1/FAILURE)
diff -rupBd vanitygen.worked.with.amd.12.10/Makefile vanitygen/Makefile
--- vanitygen.worked.with.amd.12.10/Makefile 2013-10-12 21:41:45.568631937 +0200
+++ vanitygen/Makefile 2013-07-27 22:10:03.246539574 +0200
@@ -1,5 +1,5 @@
-LIBS=-lpcre -lcrypto -lm -lpthread
-CFLAGS=-ggdb -O3 -Wall
+LIBS=-lpcre -lm -lpthread -ldl
+CFLAGS=-ggdb -O3 -Wall -I ../../openssl-1.0.1e/include ../../openssl-1.0.1e/libcrypto.a -I /opt/AMDAPP/include -L /opt/AMDAPP/lib
OBJS=vanitygen.o oclvanitygen.o oclvanityminer.o oclengine.o keyconv.o pattern.o util.o
PROGS=vanitygen keyconv oclvanitygen oclvanityminer
@mnmnm
mnmnm / patch-modules_3.10.9.sh
Last active December 22, 2015 00:09
vmware9 kernel3.10 patch and script
#! /bin/bash
# VMWare Workstation/Player _host kernel modules_ patcher v0.6.2 by �2010 Artem S. Tashkinov
# Tailored and fixed vmblock patching for the 2.6.39 patch by Stefano Angeleri (weltall)
# Small additions Jura 2012/05
# Use at your own risk.
fpatch=vmware3.10.9.patch
vmreqver=9.0.2
plreqver=5.0.2
@mnmnm
mnmnm / oclvanitygen.patch
Created August 30, 2013 08:09
oclvanitygen.patch for 7xxx amd ati radeon GPU
--- ori/vanitygen/oclengine.c 2013-05-31 14:34:11.000000000 +0200
+++ new/vanitygen/oclengine.c 2013-07-28 17:09:27.207382598 +0200
@@ -447,6 +449,8 @@ vg_ocl_get_quirks(vg_ocl_context_t *vocp
dvn = vg_ocl_device_getstr(vocp->voc_ocldid,
CL_DEVICE_NAME);
+ if (!strcmp(dvn, "Tahiti") || !strcmp(dvn, "Pitcairn"))
+ quirks &= ~VG_OCL_AMD_BFI_INT;
if (!strcmp(dvn, "ATI RV710")) {
quirks &= ~VG_OCL_OPTIMIZATIONS;