Displaying 6 results from an estimated 6 matches for "revision_id".
2019 Mar 02
2
Getting the commit message from Phabricator
...n place of
<replace_with_phabricator_api_token>
You can get one of these from you Profile->Setting->Conduit API Tokens in
the top right hand corner of Phabricator https://reviews.llvm.org
----------------------------
get_commit_message.sh
----------------------------
echo '{ "revision_id": '${1:1}' }' | arc call-conduit --conduit-uri
https://reviews.llvm.org/ --conduit-token
<replace_with_phabricator_api_token> differential.getcommitmessage | jq
".response" | sed 's/^.\(.*\).$/\1/' - | sed 's/\\n/\
/g' -
----------------------------...
2008 Oct 08
0
[Bugreport+Patch] Syslinux doesn't compile on Ubuntu Intrepid Ibex (8.10)
...rs/net/via-rhine.c 2008-10-08 17:43:23.000000000 +0200
@@ -1008,7 +1008,7 @@
unsigned char mode3_reg;
if (rhine_debug > 0 && did_version++ == 0)
- printf (version);
+ printf ("%s",version);
// get revision id.
pci_read_config_byte(pci, PCI_REVISION, &revision_id);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 197 bytes
Desc: not available
URL: <http://www.zytor.com/pipermail/syslinux/attachments/20081008/bf288ffe/attachment.sig>
2009 Apr 24
2
TBOOT and extlinux
...rlp_wake_getsec: 0
TBOOT: rlp_wake_monitor: 1
TBOOT: acm_ver: 19
TBOOT: chipset list:
TBOOT: count: 1
TBOOT: entry 0:
TBOOT: flags: 0x1
TBOOT: vendor_id: 0x8086
TBOOT: device_id: 0x9000
TBOOT: revision_id: 0x3f
TBOOT: extended_id: 0x0
TBOOT: file addresses:
TBOOT: &_start=00803000
TBOOT: &_end=0084fc4c
TBOOT: &_mle_start=00803000
TBOOT: &_mle_end=00822000
TBOOT: &_post_launch_entry=00803020
TBOOT: &_txt_wakeup=008031f0
TBOOT: &g_mle_hdr=0081916...
2014 Mar 10
122
[Bug 75985] New: HDMI audio device only visible after rescan
https://bugs.freedesktop.org/show_bug.cgi?id=75985
Priority: medium
Bug ID: 75985
Assignee: nouveau at lists.freedesktop.org
Summary: HDMI audio device only visible after rescan
QA Contact: xorg-team at lists.x.org
Severity: normal
Classification: Unclassified
OS: Linux (All)
Reporter: jean-louis at
2015 Nov 18
2
[RFC] kvmtool: add support for modern virtio-pci
...ack, vpci);
+ if (r < 0)
+ goto free_mmio;
+
+ vpci->pci_hdr = (struct pci_device_header) {
+ .vendor_id = cpu_to_le16(PCI_VENDOR_ID_REDHAT_QUMRANET),
+ .device_id = cpu_to_le16(device_id),
+ .command = PCI_COMMAND_IO | PCI_COMMAND_MEMORY,
+ .header_type = PCI_HEADER_TYPE_NORMAL,
+ .revision_id = 0,
+ .class[0] = class & 0xff,
+ .class[1] = (class >> 8) & 0xff,
+ .class[2] = (class >> 16) & 0xff,
+ .subsys_vendor_id = cpu_to_le16(PCI_SUBSYSTEM_VENDOR_ID_REDHAT_QUMRANET),
+ .subsys_id = cpu_to_le16(subsys_id),
+ .bar[0] = cpu_to_le32(vpci->mmio_addr...
2015 Nov 18
2
[RFC] kvmtool: add support for modern virtio-pci
...ack, vpci);
+ if (r < 0)
+ goto free_mmio;
+
+ vpci->pci_hdr = (struct pci_device_header) {
+ .vendor_id = cpu_to_le16(PCI_VENDOR_ID_REDHAT_QUMRANET),
+ .device_id = cpu_to_le16(device_id),
+ .command = PCI_COMMAND_IO | PCI_COMMAND_MEMORY,
+ .header_type = PCI_HEADER_TYPE_NORMAL,
+ .revision_id = 0,
+ .class[0] = class & 0xff,
+ .class[1] = (class >> 8) & 0xff,
+ .class[2] = (class >> 16) & 0xff,
+ .subsys_vendor_id = cpu_to_le16(PCI_SUBSYSTEM_VENDOR_ID_REDHAT_QUMRANET),
+ .subsys_id = cpu_to_le16(subsys_id),
+ .bar[0] = cpu_to_le32(vpci->mmio_addr...