All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH docs] Update dbus-interfaces.md
@ 2016-07-30  1:00 OpenBMC Patches
  2016-07-30  1:00 ` OpenBMC Patches
  0 siblings, 1 reply; 6+ messages in thread
From: OpenBMC Patches @ 2016-07-30  1:00 UTC (permalink / raw)
  To: openbmc

Just corrected the method ReceivedMsg into Received Message

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/openbmc/docs/35)
<!-- Reviewable:end -->


https://github.com/openbmc/docs/pull/35

sivassrr (1):
  Update dbus-interfaces.md

 dbus-interfaces.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.9.0

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH docs] Update dbus-interfaces.md
  2016-07-30  1:00 [PATCH docs] Update dbus-interfaces.md OpenBMC Patches
@ 2016-07-30  1:00 ` OpenBMC Patches
  0 siblings, 0 replies; 6+ messages in thread
From: OpenBMC Patches @ 2016-07-30  1:00 UTC (permalink / raw)
  To: openbmc; +Cc: sivassrr

From: sivassrr <sivas.srr@in.ibm.com>

---
 dbus-interfaces.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dbus-interfaces.md b/dbus-interfaces.md
index 84e75c3..c207a0a 100644
--- a/dbus-interfaces.md
+++ b/dbus-interfaces.md
@@ -44,7 +44,7 @@ firmware.
 ### signals
 | name          | signature | description                                      |
 | ------------- | --------- | ------------------------------------------------ |
-| `ReceivedMsg` | `yyyyay`  | **An IPMI message was received from the host processor firmware.**|
+| `ReceivedMessage` | `yyyyay`  | **An IPMI message was received from the host processor firmware.**|
 |               | `y`       | IPMI seq.                                        |
 |               | `y`       | IPMI netfn.                                      |
 |               | `y`       | IPMI lun.                                        |
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH docs] Update dbus-interfaces.md
  2016-05-23  2:50 OpenBMC Patches
@ 2016-05-23  2:50 ` OpenBMC Patches
  0 siblings, 0 replies; 6+ messages in thread
From: OpenBMC Patches @ 2016-05-23  2:50 UTC (permalink / raw)
  To: openbmc; +Cc: Chris Austen

From: Chris Austen <causten@users.noreply.github.com>

---
 dbus-interfaces.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dbus-interfaces.md b/dbus-interfaces.md
index 524bc3f..f4e043d 100644
--- a/dbus-interfaces.md
+++ b/dbus-interfaces.md
@@ -311,6 +311,8 @@ The control.BmcFlash interface allows applications update the BMC firmware.
 | `updateViaTftp` | `ss`         | `void`        | **Perform a BMC firmware update using a TFTP server.**|
 |                 | `s`          |               | The ipv4 address of the TFTP server hosting the firmware image file.|
 |                 | `s`          |               | The name of the file containing the BMC firmware image.|
+| `update`        | `s`          | `void`        | **Perform a BMC firmware update with a file already on the BMC.**|
+|                 | `s`          |               | The name of the file containing the BMC firmware image.|
 
 ### signals
 | name           | signature | description                              |
-- 
2.8.2

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH docs] Update dbus-interfaces.md
@ 2016-05-23  2:50 OpenBMC Patches
  2016-05-23  2:50 ` OpenBMC Patches
  0 siblings, 1 reply; 6+ messages in thread
From: OpenBMC Patches @ 2016-05-23  2:50 UTC (permalink / raw)
  To: openbmc

I created the pull request for skeleton, now I am making sure the documentation reflects the change too.  Basically it allows someone to copy a bmc image on to the server to flash it.  This removes the requirement for a tftp server to be used

https://github.com/openbmc/skeleton/pull/87

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/openbmc/docs/26)
<!-- Reviewable:end -->


https://github.com/openbmc/docs/pull/26

Chris Austen (1):
  Update dbus-interfaces.md

 dbus-interfaces.md | 2 ++
 1 file changed, 2 insertions(+)

-- 
2.8.2

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH docs] Update dbus-interfaces.md
  2015-10-25  1:42 OpenBMC Patches
@ 2015-10-25  1:42 ` OpenBMC Patches
  0 siblings, 0 replies; 6+ messages in thread
From: OpenBMC Patches @ 2015-10-25  1:42 UTC (permalink / raw)
  To: openbmc; +Cc: Chris Austen

From: Chris Austen <causten@users.noreply.github.com>

---
 dbus-interfaces.md | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/dbus-interfaces.md b/dbus-interfaces.md
index be9943a..ca90f05 100644
--- a/dbus-interfaces.md
+++ b/dbus-interfaces.md
@@ -14,3 +14,11 @@ methods:
   *  `setAttention()`
 
  
+# Useful dbus cli tools
+
+## 'busctl'  -  http://www.freedesktop.org/software/systemd/man/busctl.html
+Great tool to issue rest commands via cli.  That way you don't have to wait for the code to hit the path on the system.  Great for running commands with QEMU too!
+
+busctl call \<path\> \<interface\> \<object\> \<method\> \<parameters\> 
+
+* \<parameters\> example : sssay "t1" "t2" "t3" 2 2 3
-- 
2.6.0

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH docs] Update dbus-interfaces.md
@ 2015-10-25  1:42 OpenBMC Patches
  2015-10-25  1:42 ` OpenBMC Patches
  0 siblings, 1 reply; 6+ messages in thread
From: OpenBMC Patches @ 2015-10-25  1:42 UTC (permalink / raw)
  To: openbmc; +Cc: OpenBMC Patches

https://github.com/openbmc/docs/pull/2

Chris Austen (1):
  Update dbus-interfaces.md

 dbus-interfaces.md | 8 ++++++++
 1 file changed, 8 insertions(+)

-- 
2.6.0

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2016-07-30  1:00 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-30  1:00 [PATCH docs] Update dbus-interfaces.md OpenBMC Patches
2016-07-30  1:00 ` OpenBMC Patches
  -- strict thread matches above, loose matches on Subject: below --
2016-05-23  2:50 OpenBMC Patches
2016-05-23  2:50 ` OpenBMC Patches
2015-10-25  1:42 OpenBMC Patches
2015-10-25  1:42 ` OpenBMC Patches

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.