Thread (9 messages) flat view 9 messages, 3 authors, 2017-07-25

Re: [PATCH] Support to change set file via arg

From: Charles Shapiro <hidden>
Date: 2017-06-30 19:04:05

The product id varies in the DeviceID.

E.g.
https://chromium.git.corp.google.com/chromiumos/overlays/board-overlays/+/m=
aster/overlay-pyro/chromeos-base/chromeos-bsp-pyro/files/main.conf
https://chromium.git.corp.google.com/chromiumos/overlays/board-overlays/+/m=
aster/overlay-reef/chromeos-base/chromeos-bsp-reef/files/main.conf
https://chromium.git.corp.google.com/chromiumos/overlays/board-overlays/+/m=
aster/overlay-snappy/chromeos-base/chromeos-bsp-snappy/files/main.conf

Linking is a possibility also, but being able to pass in the config
path via a flag seemed reasonable also.

On Fri, Jun 30, 2017 at 12:57 PM, Luiz Augusto von Dentz
[off-list ref] wrote:
Hi Charles,

On Fri, Jun 30, 2017 at 8:55 PM, Charles Shapiro [off-list ref] wr=
ote:
quoted
(Removing HTML formatting on email thread so it doesn't get blocked).

For ChromeOS, we're working towards having a single build/image based
on a reference board that then supports multiple models created by
OEMs.

Some of the bluetooth config differs on a per model basis, so we need
to have multiple *.conf files ship on the actual image.

We then modify the init script to check the model at runtime and pass
the appropriate *.conf file to bluetoothd when it is started.

On Fri, Jun 30, 2017 at 11:42 AM, Marcel Holtmann [off-list ref] =
wrote:
quoted
quoted
Hi Shapiro,
quoted
Currently, there is an expectation of the main.conf file at a specific
location.  This prevents system builds that support more than one
platform.

This adds support so the main.conf file can be specified as a command
line arg instead, so systems can manage multiple conf files as necessa=
ry
quoted
quoted
quoted
and pass the appropriate conf file when the daemon is started.

Signed-off-by: C Shapiro <redacted>
---
src/bluetoothd.8.in |  4 ++++
src/main.c          | 12 +++++++++++-
2 files changed, 15 insertions(+), 1 deletion(-)
diff --git a/src/bluetoothd.8.in b/src/bluetoothd.8.in
index 97ef3ec94..d61dcc5b3 100644
--- a/src/bluetoothd.8.in
+++ b/src/bluetoothd.8.in
@@ -27,6 +27,10 @@ Print bluetoothd options and exit.
Enable logging in foreground. Directs log output to the controlling te=
rminal \
quoted
quoted
quoted
in addition to syslog.
.TP
+.B -f, --configfile
+Specifies an explicit config file path instead of relying on the defa=
ult path \
quoted
quoted
quoted
+(@CONFIGDIR@/main.conf) for the config file.
+.TP
.B -d, --debug=3D<file1>:<file2>:...
Sets how much information bluetoothd sends to the log destination (usu=
ally \
quoted
quoted
quoted
syslog's "daemon" facility). If the file options are omitted, then deb=
ugging \
quoted
quoted
quoted
diff --git a/src/main.c b/src/main.c
index bcc1e6fae..87bdb66cb 100644
--- a/src/main.c
+++ b/src/main.c
@@ -490,6 +490,7 @@ static guint setup_signalfd(void)
static char *option_debug =3D NULL;
static char *option_plugin =3D NULL;
static char *option_noplugin =3D NULL;
+static char *option_configfile =3D NULL;
static gboolean option_compat =3D FALSE;
static gboolean option_detach =3D TRUE;
static gboolean option_version =3D FALSE;
@@ -505,6 +506,9 @@ static void free_options(void)

      g_free(option_noplugin);
      option_noplugin =3D NULL;
+
+     g_free(option_configfile);
+     option_configfile =3D NULL;
}

static void disconnect_dbus(void)
@@ -577,6 +581,9 @@ static GOptionEntry options[] =3D {
                              "Specify plugins to load", "NAME,..," },
      { "noplugin", 'P', 0, G_OPTION_ARG_STRING, &option_noplugin,
                              "Specify plugins not to load", "NAME,...=
" },
quoted
quoted
quoted
+     { "configfile", 'f', 0, G_OPTION_ARG_STRING, &option_configfile,
+                             "Specify an explicit path to the config =
file",
quoted
quoted
quoted
+                             "FILE=E2=80=9D},
I am failing to understand why this is needed. What problem are you try=
ing to solve here? Can you give an example.
quoted
quoted
Btw, can't you link the main.conf with the board specific config?
Still it would be good to know what is that needs changing, is this
related to ControllerMode?

--
Luiz Augusto von Dentz
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help