While I am figuring out exactly what driver you need (I am pretty sure the one I gave you is correct, but I will confirm and give you the instructions to install the driver since the auto install isn't working), here is the link from HP for how to set the nVidia GPU as the default adapter.
Copyright © 2014 Jiri Pirko <jiri@resnulli.us>
- The fans are spinning, so it's installed correctly. GTX 1050 won't even show on device manager. On device manager, there is a section named: Unknown Devices. Under that there is a thing called Unknown PCI device. It says that there are no drivers installed. I have installed a software, called PCI-Z. It can provide info about the unknown device.
- The sample code we use to show port I/O from within a device driver acts on general-purpose digital I/O ports; such ports are found in most computer systems. A digital I/O port, in its most common incarnation, is a byte-wide I/O location, either memory-mapped or port-mapped.
- For general information about installing devices, see the Device Installation Design Guide section. For more information about serial devices, see Serial Devices and Drivers. Is this page helpful?

Drivers W-card Port Devices Lucie

Copyright © 2014-2015 Scott Feldman <sfeldma@gmail.com>
The Ethernet switch device driver model (switchdev) is an in-kernel drivermodel for switch devices which offload the forwarding (data) plane from thekernel.
Figure 1 is a block diagram showing the components of the switchdev model foran example setup using a>FIB_EVENT_ENTRY_ADDused for both adding a new FIB entry to the device,or modifying an existing entry on the device.FIB_EVENT_ENTRY_DELused for removing a FIB entryFIB_EVENT_RULE_ADD,FIB_EVENT_RULE_DELused to propagate FIB rule changes
Drivers W-card Port Devices Replicator
FIB_EVENT_ENTRY_ADD and FIB_EVENT_ENTRY_DEL events pass:
to add/modify/delete IPv4 dst/dest_len prefix on table tb_id. The *fi
structure holds details on the route and route’s nexthops. *dev
is oneof the port netdevs mentioned in the route’s next hop list.
Routes offloaded to the device are labeled with “offload” in the ip routelisting:
The “offload” flag is set in case at least one device offloads the FIB entry.

Drivers W-card Port Devices Terminal
XXX: add/mod/del IPv6 FIB API
Drivers W-card Port Devices Gigabit
Nexthop Resolution¶

The FIB entry’s nexthop list contains the nexthop tuple (gateway, dev), but forthe switch device to forward the packet with the correct dst mac address, thenexthop gateways must be resolved to the neighbor’s mac address. Neighbor macaddress discovery comes via the ARP (or ND) process and is available via thearp_tbl neighbor table. To resolve the routes nexthop gateways, the drivershould trigger the kernel’s neighbor resolution process. See the rockerdriver’s rocker_port_ipv4_resolve() for an example.
The driver can monitor for updates to arp_tbl using the netevent notifierNETEVENT_NEIGH_UPDATE. The device can be programmed with resolved nexthopsfor the routes as arp_tbl updates. The driver implements ndo_neigh_destroyto know when arp_tbl neighbor entries are purged from the port.
