Displaying 9 results from an estimated 9 matches for "noagp".
Did you mean:
no_agp
2010 Feb 26
1
module parameter description fix
.....874adf5 100644
--- a/drivers/gpu/drm/nouveau/nouveau_drv.c
+++ b/drivers/gpu/drm/nouveau/nouveau_drv.c
@@ -75,11 +75,11 @@ MODULE_PARM_DESC(ignorelid, "Ignore ACPI lid status");
int nouveau_ignorelid = 0;
module_param_named(ignorelid, nouveau_ignorelid, int, 0400);
-MODULE_PARM_DESC(noagp, "Disable all acceleration");
+MODULE_PARM_DESC(noaccel, "Disable all acceleration");
int nouveau_noaccel = 0;
module_param_named(noaccel, nouveau_noaccel, int, 0400);
-MODULE_PARM_DESC(noagp, "Disable fbcon acceleration");
+MODULE_PARM_DESC(nofbaccel, "Disabl...
2010 Jan 26
1
[PATCH] drm/nouveau: Add module options to disable acceleration.
...f..a44c3f9 100644
--- a/drivers/gpu/drm/nouveau/nouveau_drv.c
+++ b/drivers/gpu/drm/nouveau/nouveau_drv.c
@@ -75,6 +75,14 @@ MODULE_PARM_DESC(ignorelid, "Ignore ACPI lid status");
int nouveau_ignorelid = 0;
module_param_named(ignorelid, nouveau_ignorelid, int, 0400);
+MODULE_PARM_DESC(noagp, "Disable all acceleration");
+int nouveau_noaccel = 0;
+module_param_named(noaccel, nouveau_noaccel, int, 0400);
+
+MODULE_PARM_DESC(noagp, "Disable fbcon acceleration");
+int nouveau_nofbaccel = 0;
+module_param_named(nofbaccel, nouveau_nofbaccel, int, 0400);
+
MODULE_PARM_DE...
2009 Sep 10
4
Slow network speed with Xen 3.2-1
...9;phy:/dev/storage/XXX-disk,sda2,w'',
''phy:/dev/storage/XXX-swap,sda1,w'',
]
name = ''XXX''
vif = [ ''ip=190.228.X.X,mac=00:16:3E:37:17:9A'' ]
root = "/dev/sda2 ro noapic acpi=off nopcmcia noagp nobluetooth"
extra = "3 xencons=tty"
on_poweroff = ''destroy''
on_reboot = ''restart''
on_crash = ''restart''
I use Debian 5.0.2 kernel 2.6.26-1-xen-amd64
_______________________________________________
Xen-users mailing list
Xe...
2007 Aug 02
0
Booting LiveCDs or Installation CDs with Xen support in a Dom0
...en-images/xenoppix/miniroot-xen.gz"
kernel = "/export/xen-images/xenoppix/vmlinuz-2.6.18-xen"
extra = " ramdisk_size=100000 init=/etc/init lang=de apm=power-off nomce xserver=Xvnc_xen nosound noapic noacpi pnpbios=off acpi=off nofstab noscsi nodma noapm nousb nopcmcia nofirewire noagp noswap nohwsetup"
So the question is :
Is the config file format used to install a Solaris DomU only possible for Solaris DomUs?
regards
Bernd
This message posted from opensolaris.org
2007 Apr 30
3
syslinux booting from a third partion of ipod.
...88
xmodule=fbdev initrd=minirt.gz nomce loglevel=0 quiet BOOT_IMAGE=knoppix
LABEL dos
KERNEL balder.img
LABEL failsafe
KERNEL linux
APPEND ramdisk_size=100000 init=/etc/init lang=us vga=normal atapicd nosound
noapic noacpi pnpbios=off acpi=off nofstab noscsi nodma noapm nousb nopcmcia
nofirewire noagp nomce nodhcp xmodule=vesa initrd=minirt.gz
BOOT_IMAGE=knoppix
LABEL userdef
KERNEL linux
APPEND
#########################################################################################################################################################################################################...
2005 Mar 07
0
compact flash, fat, reduced knoppix and syslinux
...isk_size=100000 init=/etc/init lang=us
apm=power-off vga=788 xmodule=fbdev initrd=minirt24.gz
nomce quiet BOOT_IMAGE=knoppix
LABEL failsafe
KERNEL linux24
APPEND ramdisk_size=100000 init=/etc/init lang=us
vga=normal atapicd nosound noapic noacpi acpi=off
noscsi nodma noapm nousb nopcmcia nofirewire noagp
nomce nodhcp xmodule=vesa initrd=minirt24.gz
BOOT_IMAGE=knoppix
LABEL userdef
KERNEL linux24
APPEND
#######################################################################################################################################################################################################...
2010 Jan 18
1
[PATCH] drm: remove UMS leftover
...VEAU_DMA_SKIPS);
diff -Naur a/drivers/gpu/drm/nouveau/nouveau_drv.c b/drivers/gpu/drm/nouveau/nouveau_drv.c
--- a/drivers/gpu/drm/nouveau/nouveau_drv.c 2010-01-18 12:42:14.396872703 +0100
+++ b/drivers/gpu/drm/nouveau/nouveau_drv.c 2010-01-18 13:00:57.044879755 +0100
@@ -43,10 +43,6 @@
int nouveau_noagp;
module_param_named(noagp, nouveau_noagp, int, 0400);
-MODULE_PARM_DESC(modeset, "Enable kernel modesetting");
-static int nouveau_modeset = -1; /* kms */
-module_param_named(modeset, nouveau_modeset, int, 0400);
-
MODULE_PARM_DESC(vbios, "Override default VBIOS location");...
2010 Feb 10
3
[Bug 26499] New: nouveau driver fails to load
http://bugs.freedesktop.org/show_bug.cgi?id=26499
Summary: nouveau driver fails to load
Product: xorg
Version: 7.4
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
AssignedTo: nouveau at lists.freedesktop.org
ReportedBy: info at
2010 Feb 25
3
[PATCH 1/3] drm/nv50: Implement ctxprog/state generation.
This removes dependence on external firmware for NV50 generation cards.
If the generated ctxprogs don't work for you for some reason, please
report it.
Signed-off-by: Marcin Ko?cielnicki <koriakin at 0x04.net>
---
drivers/gpu/drm/nouveau/Makefile | 2 +-
drivers/gpu/drm/nouveau/nouveau_drv.h | 1 +
drivers/gpu/drm/nouveau/nv50_graph.c | 74 +-