Cakici (3):
- 4233ca8 Add sensor and FRU IDs
Hardware Access / Drivers | |
devicefw | |
fsi | |
fsiscom | |
gpio | |
i2c | |
ibscom | |
mbox | |
pnor | |
scan |
Cakici (3):
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <errno.h> | |
main( int argc, char ** argv, char ** envp ) | |
{ | |
if( argc <= 1 ) { | |
errno = EINVAL; | |
perror( "insufficient arguments" ); |
using namespace std; | |
#include <iostream> | |
#include <stdint.h> | |
struct foo | |
{ | |
int x; | |
int y; | |
}; |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env perl | |
use strict; | |
use File::Basename qw/basename/; | |
my $metas_to_search = "meta-phosphor meta-openbmc-machines meta-openbmc-bsp"; | |
my $master_project = "openbmc"; | |
my $server = "https://gerrit.openbmc-project.xyz"; | |
system("cd $master_project && git fetch origin && git checkout origin/master"); |
#!/bin/bash | |
GERRIT_COMMAND="curl -s --anyauth -n https://gerrit.openbmc-project.xyz" | |
GITHUB_COMMAND="curl -s -n https://api.github.com" | |
GITHUB_TEAM=1777905 | |
echo "Checking ${GERRIT_PROJECT}:${GERRIT_BRANCH}:${GERRIT_CHANGE_ID}:${GERRIT_PATCHSET_REVISION}" | |
COMMITTER_EMAIL=`${GERRIT_COMMAND}/a/changes/${GERRIT_PROJECT/\//%2F}~${GERRIT_BRANCH}~${GERRIT_CHANGE_ID}/revisions/${GERRIT_PATCHSET_REVISION}/commit | grep -Pzo "committer[^}]*" | grep -a '"email":' | sed 's/",$//' | sed 's/.*"//'` |
An example interface originally described as part of the announcment of new sd-bus interfaces at: http://0pointer.net/blog/the-new-sd-bus-api-of-systemd.html
Multiplies two integers 'x' and 'y' and returns the result.
#include <sdbusplus/server.hpp> | |
#include <net/poettering/Calculator/server.hpp> | |
namespace sdbusplus | |
{ | |
namespace server | |
{ | |
namespace net | |
{ | |
namespace poettering |
$ find -name "*.yaml" | xargs grep -- " - const" | |
./xyz/openbmc_project/Control/FanRedundancy.interface.yaml: - const | |
./xyz/openbmc_project/Control/FanRedundancy.interface.yaml: - const | |
./xyz/openbmc_project/Control/FanRedundancy.interface.yaml: - const | |
./xyz/openbmc_project/Control/PowerSupplyAttributes.interface.yaml: - const | |
./xyz/openbmc_project/Control/PowerSupplyRedundancy.interface.yaml: - const | |
./xyz/openbmc_project/Control/ThermalMode.interface.yaml: - const | |
./xyz/openbmc_project/Network/EthernetInterface.interface.yaml: - const | |
./xyz/openbmc_project/User/Manager.interface.yaml: - const | |
./xyz/openbmc_project/User/Manager.interface.yaml: - const |