24 lines
671 B
Forth
24 lines
671 B
Forth
\ *****************************************************************************
|
|
\ * Copyright (c) 2011 IBM Corporation
|
|
\ * All rights reserved.
|
|
\ * This program and the accompanying materials
|
|
\ * are made available under the terms of the BSD License
|
|
\ * which accompanies this distribution, and is available at
|
|
\ * http://www.opensource.org/licenses/bsd-license.php
|
|
\ *
|
|
\ * Contributors:
|
|
\ * IBM Corporation - initial implementation
|
|
\ ****************************************************************************/
|
|
|
|
\ Handle virtio-net device
|
|
|
|
s" virtio [ net ]" type cr
|
|
|
|
my-space pci-device-generic-setup
|
|
|
|
pci-io-enable
|
|
|
|
s" virtio-net.fs" included
|
|
|
|
pci-device-disable
|