xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/17] Honour more configure variables in various places (iteration 2)
@ 2016-06-13  7:48 Wei Liu
  2016-06-13  7:48 ` [PATCH 01/17] oxenstored: honour XEN_{LOG, RUN}_DIR in oxenstored.conf Wei Liu
                   ` (17 more replies)
  0 siblings, 18 replies; 48+ messages in thread
From: Wei Liu @ 2016-06-13  7:48 UTC (permalink / raw)
  To: Xen-devel; +Cc: Wei Liu

The first three patches are carried over from previous series.

The rest introduce some new variables and replace various hard-coded paths in
code.

There is one more path /var/run, with which I'm not sure what to do for the
moment. More patches will come to deal with it.

Wei.

Wei Liu (17):
  oxenstored: honour XEN_{LOG,RUN}_DIR in oxenstored.conf
  oxenstored: generate a paths module
  oxenstored: honour XEN_LOG_DIR defined by configure
  build: introduce and export XEN_LIB_DIR
  tools: install and remove XEN_LIB_DIR in Makefile
  hotplug/Linux: honour XEN_LIB_DIR
  libxl: honour XEN_LIB_DIR
  tools: remove hard-coded /var/lib/xen in Makefile
  docs: honour XEN_DUMP_DIR
  build: introduce XEN_RUN_STORED
  hotplug/Linux: honour XEN_RUN_STORED
  libxenstore: honour XEN_RUN_STORED
  hotplug/FreeBSD: honour XEN_RUN_STORED
  ocaml/libxs: generate a paths.ml
  ocaml/libxs: honour XEN_RUN_STORED
  oxenstored: honour XEN_RUN_STORED and XEN_CONFIG_DIR
  oxenstored: honour XEN_RUN_STORED in systemd C stub

 .gitignore                                         |   7 +
 Config.mk                                          |   3 +-
 config/Paths.mk.in                                 |   2 +
 configure                                          |   8 +
 docs/configure                                     | 188 ++++++++++++++++++++-
 docs/configure.ac                                  |   9 +-
 docs/man/{xl.cfg.pod.5 => xl.cfg.pod.5.in}         |   6 +-
 docs/man/{xl.pod.1 => xl.pod.1.in}                 |   2 +-
 m4/paths.m4                                        |   6 +
 tools/Makefile                                     |   7 +-
 tools/configure                                    |  12 +-
 tools/configure.ac                                 |   2 +
 tools/hotplug/FreeBSD/rc.d/xencommons.in           |   2 +-
 ...ysconfig.xendomains => sysconfig.xendomains.in} |   4 +-
 tools/hotplug/Linux/systemd/xenstored.socket.in    |   2 +-
 tools/hotplug/Linux/systemd/xenstored_ro.socket.in |   2 +-
 tools/libxl/libxl_dom.c                            |   4 +-
 tools/libxl/libxl_internal.h                       |   4 +-
 tools/ocaml/Makefile.rules                         |  11 ++
 tools/ocaml/libs/xs/Makefile                       |   6 +-
 tools/ocaml/libs/xs/xs.ml                          |   2 +-
 tools/ocaml/xenstored/Makefile                     |  15 +-
 tools/ocaml/xenstored/define.ml                    |   6 +-
 tools/ocaml/xenstored/disk.ml                      |   2 +-
 tools/ocaml/xenstored/logging.ml                   |   4 +-
 .../{oxenstored.conf => oxenstored.conf.in}        |   6 +-
 tools/ocaml/xenstored/systemd_stubs.c              |   6 +-
 tools/ocaml/xenstored/xenstored.ml                 |   8 +-
 tools/xenstore/Makefile                            |   1 +
 tools/xenstore/xs_lib.c                            |   2 +-
 30 files changed, 302 insertions(+), 37 deletions(-)
 rename docs/man/{xl.cfg.pod.5 => xl.cfg.pod.5.in} (99%)
 rename docs/man/{xl.pod.1 => xl.pod.1.in} (99%)
 rename tools/hotplug/Linux/init.d/{sysconfig.xendomains => sysconfig.xendomains.in} (98%)
 rename tools/ocaml/xenstored/{oxenstored.conf => oxenstored.conf.in} (84%)

-- 
2.1.4


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

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

end of thread, other threads:[~2016-06-17 10:44 UTC | newest]

Thread overview: 48+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-13  7:48 [PATCH 00/17] Honour more configure variables in various places (iteration 2) Wei Liu
2016-06-13  7:48 ` [PATCH 01/17] oxenstored: honour XEN_{LOG, RUN}_DIR in oxenstored.conf Wei Liu
2016-06-13  7:49 ` [PATCH 02/17] oxenstored: generate a paths module Wei Liu
2016-06-13  7:49 ` [PATCH 03/17] oxenstored: honour XEN_LOG_DIR defined by configure Wei Liu
2016-06-13 10:07   ` Andrew Cooper
2016-06-13 10:34     ` Wei Liu
2016-06-13  7:49 ` [PATCH 04/17] build: introduce and export XEN_LIB_DIR Wei Liu
2016-06-13 15:10   ` Ian Jackson
2016-06-13  7:49 ` [PATCH 05/17] tools: install and remove XEN_LIB_DIR in Makefile Wei Liu
2016-06-13 15:11   ` Ian Jackson
2016-06-13  7:49 ` [PATCH 06/17] hotplug/Linux: honour XEN_LIB_DIR Wei Liu
2016-06-13 15:12   ` Ian Jackson
2016-06-13  7:49 ` [PATCH 07/17] libxl: " Wei Liu
2016-06-13 15:12   ` Ian Jackson
2016-06-13  7:49 ` [PATCH 08/17] tools: remove hard-coded /var/lib/xen in Makefile Wei Liu
2016-06-13 15:13   ` Ian Jackson
2016-06-13 15:29     ` Wei Liu
2016-06-13 16:07       ` Ian Jackson
2016-06-13 16:33         ` Wei Liu
2016-06-13 16:57           ` Ian Jackson
2016-06-13 18:16             ` Wei Liu
2016-06-14  9:56               ` Ian Jackson
2016-06-13  7:49 ` [PATCH 09/17] docs: honour XEN_DUMP_DIR Wei Liu
2016-06-13 15:15   ` Ian Jackson
2016-06-13  7:49 ` [PATCH 10/17] build: introduce XEN_RUN_STORED Wei Liu
2016-06-14 17:00   ` Ian Jackson
2016-06-13  7:49 ` [PATCH 11/17] hotplug/Linux: honour XEN_RUN_STORED Wei Liu
2016-06-13 15:19   ` Ian Jackson
2016-06-13  7:49 ` [PATCH 12/17] libxenstore: " Wei Liu
2016-06-13 15:19   ` Ian Jackson
2016-06-13  7:49 ` [PATCH 13/17] hotplug/FreeBSD: " Wei Liu
2016-06-13  9:32   ` Roger Pau Monné
2016-06-13 15:20   ` Ian Jackson
2016-06-13  7:49 ` [PATCH 14/17] ocaml/libxs: generate a paths.ml Wei Liu
2016-06-13 15:19   ` Ian Jackson
2016-06-13 15:22     ` Wei Liu
2016-06-13 19:50       ` David Scott
2016-06-14  9:36         ` Wei Liu
2016-06-14 20:08           ` David Scott
2016-06-15  9:07             ` Wei Liu
2016-06-13  7:49 ` [PATCH 15/17] ocaml/libxs: honour XEN_RUN_STORED Wei Liu
2016-06-14 20:06   ` David Scott
2016-06-13  7:49 ` [PATCH 16/17] oxenstored: honour XEN_RUN_STORED and XEN_CONFIG_DIR Wei Liu
2016-06-14 20:07   ` David Scott
2016-06-13  7:49 ` [PATCH 17/17] oxenstored: honour XEN_RUN_STORED in systemd C stub Wei Liu
2016-06-14 20:07   ` David Scott
2016-06-14 13:17 ` [PATCH 00/17] Honour more configure variables in various places (iteration 2) Wei Liu
2016-06-17 10:43   ` Wei Liu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).