This document describes one way to created the rcu-test-image file that contains the filesystem used by the guest-OS kernel. There are probably much better ways of doing this, and this filesystem could no doubt be smaller. It is probably also possible to simply download an appropriate image from any number of places. That said, here are the commands: ------------------------------------------------------------------------ dd if=/dev/zero of=rcu-test-image bs=400M count=1 mkfs.ext3 ./rcu-test-image sudo mount -o loop ./rcu-test-image /mnt # Replace "precise" below with your favorite Ubuntu release. # Empirical evidence says this image will work for 64-bit, but... # Note that debootstrap does take a few minutes to run. Or longer. sudo debootstrap --verbose --arch i386 precise /mnt http://archive.ubuntu.com/ubuntu cat << '___EOF___' | sudo dd of=/mnt/etc/fstab # UNCONFIGURED FSTAB FOR BASE SYSTEM # /dev/vda / ext3 defaults 1 1 dev /dev tmpfs rw 0 0 tmpfs /dev/shm tmpfs defaults 0 0 devpts /dev/pts devpts gid=5,mode=620 0 0 sysfs /sys sysfs defaults 0 0 proc /proc proc defaults 0 0 ___EOF___ sudo umount /mnt ------------------------------------------------------------------------ References: http://sripathikodi.blogspot.com/2010/02/creating-kvm-bootable-fedora-system.html https://help.ubuntu.com/community/KVM/CreateGuests https://help.ubuntu.com/community/JeOSVMBuilder http://wiki.libvirt.org/page/UbuntuKVMWalkthrough http://www.moe.co.uk/2011/01/07/pci_add_option_rom-failed-to-find-romfile-pxe-rtl8139-bin/ -- "apt-get install kvm-pxe" http://www.landley.net/writing/rootfs-howto.html http://en.wikipedia.org/wiki/Initrd http://en.wikipedia.org/wiki/Cpio http://wiki.libvirt.org/page/UbuntuKVMWalkthrough ooth/hci_debugfs.c?h=nds-private-remove&id=2e4333c14de06a333783d6812cf3c4998f78b0c8'>treecommitdiff
path: root/net/bluetooth/hci_debugfs.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2016-12-11 10:17:39 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2016-12-11 10:17:39 -0800
commit2e4333c14de06a333783d6812cf3c4998f78b0c8 (patch)
tree368428514d70f34f2261c7f954f241f886d6bb51 /net/bluetooth/hci_debugfs.c
parent045169816b31b10faed984b01c390db1b32ee4c1 (diff)
parentba735155b9647b6167fd50276ca0fbfbce4e836c (diff)
Merge branch 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus
Pull MIPS fixes from Ralf Baechle: "Two more MIPS fixes for 4.9: - RTC: Return -ENODEV so an external RTC will be tried - Fix mask of GPE frequency These two have been tested on Imagination's automated test system and also both received positive reviews on the linux-mips mailing list" * 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus: MIPS: Lantiq: Fix mask of GPE frequency MIPS: Return -ENODEV from weak implementation of rtc_mips_set_time
Diffstat (limited to 'net/bluetooth/hci_debugfs.c')