From: Wei Liu <wei.liu2@citrix.com>
To: Xen-devel <xen-devel@lists.xenproject.org>
Cc: Wei Liu <wei.liu2@citrix.com>
Subject: [PATCH RFC v1 00/14] stubdom: split stubdom from xen.git
Date: Thu, 10 Mar 2016 16:52:21 +0000 [thread overview]
Message-ID: <1457628755-20267-1-git-send-email-wei.liu2@citrix.com> (raw)
In-Reply-To: <20160310164639.GM31271@citrix.com>
The base tree is prepared by:
#!/bin/sh
set -ex
git filter-branch --tag-name-filter cat \
--subdirectory-filter stubdom/ -- --all
# There is already a tag name 4.3.0-rc2 which points to the same commit.
git tag -d xen-4.3.0-rc2
# Add xen- prefix to all tags
for t in `git tag`; do git tag "xen-$t" "$t"; git tag -d "$t" ; done
git gc --aggressive
These are the patches built on top of the base tree.
The branch can be found at
git://xenbits.xen.org/people/liuw/stubdom.git wip.split-stubdom-v1
Wei.
Wei Liu (14):
Import more files from xen.git
Makefile: introduce dist target
Add a gitignore
Makefile: require XEN_ROOT and MINI_OS to be defined
Makefile: replace MINI_OS with MINIOS_ROOT
pciutils: don't use hard-coded XEN_ROOT
grub: don't use hard-coded XEN_ROOT
Makefile: export STUBDOM_ROOT
Makefile: delete STUBDOMPATH target
Makefile: require QEMU_ROOT to be defined
Makefile: always include Config.mk from xen source tree
Makefile: delete ioemu directory in clean target
Makefile: fix removing *.mk
Add README file
.gitignore | 74 +++
Makefile | 95 ++-
README | 16 +
autogen.sh | 2 +
config.guess | 1530 +++++++++++++++++++++++++++++++++++++++++++
config.sub | 1782 ++++++++++++++++++++++++++++++++++++++++++++++++++
config/Paths.mk.in | 56 ++
config/Stubdom.mk.in | 39 ++
configure | 189 +++++-
configure.ac | 19 +-
grub/Makefile | 1 -
install.sh | 35 +
m4/depends.m4 | 15 +
m4/features.m4 | 21 +
m4/fetcher.m4 | 14 +
m4/path_or_fail.m4 | 6 +
m4/paths.m4 | 137 ++++
m4/stubdom.m4 | 96 +++
pciutils.patch | 3 +-
19 files changed, 4057 insertions(+), 73 deletions(-)
create mode 100644 .gitignore
create mode 100644 README
create mode 100755 autogen.sh
create mode 100755 config.guess
create mode 100755 config.sub
create mode 100644 config/Paths.mk.in
create mode 100644 config/Stubdom.mk.in
create mode 100644 install.sh
create mode 100644 m4/depends.m4
create mode 100644 m4/features.m4
create mode 100644 m4/fetcher.m4
create mode 100644 m4/path_or_fail.m4
create mode 100644 m4/paths.m4
create mode 100644 m4/stubdom.m4
--
2.1.4
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
next prev parent reply other threads:[~2016-03-10 16:52 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-10 16:46 [RFC PATCH v1] Splitting off stubdom to a different tree Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 0/6] xen: split stubdom from xen.git Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 1/6] config: don't hard-code mini-os path Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 2/6] tools: use "?=" to set XEN_ROOT in Makefile Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 3/6] libxc: use $XEN_ROOT to reference libelf in xen Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 4/6] libxl: generate and install stubdompath.sh Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 5/6] Unhook stubdom from build system Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 6/6] Remove stubdom directory Wei Liu
2016-03-10 16:52 ` Wei Liu [this message]
2016-03-10 16:52 ` [PATCH RFC v1 01/14] Import more files from xen.git Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 02/14] Makefile: introduce dist target Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 03/14] Add a gitignore Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 04/14] Makefile: require XEN_ROOT and MINI_OS to be defined Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 05/14] Makefile: replace MINI_OS with MINIOS_ROOT Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 06/14] pciutils: don't use hard-coded XEN_ROOT Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 07/14] grub: " Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 08/14] Makefile: export STUBDOM_ROOT Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 09/14] Makefile: delete STUBDOMPATH target Wei Liu
2016-03-31 10:21 ` Xu, Quan
2016-03-31 13:49 ` Wei Liu
2016-04-01 1:41 ` Xu, Quan
2016-04-01 10:03 ` Wei Liu
2016-04-06 9:09 ` Xu, Quan
2016-04-06 9:39 ` Wei Liu
2016-04-25 14:27 ` Wei Liu
2016-07-05 13:53 ` Xu, Quan
2016-07-05 13:57 ` Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 10/14] Makefile: require QEMU_ROOT to be defined Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 11/14] Makefile: always include Config.mk from xen source tree Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 12/14] Makefile: delete ioemu directory in clean target Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 13/14] Makefile: fix removing *.mk Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 14/14] Add README file Wei Liu
2016-03-10 18:33 ` Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 0/2] mini-os: split stubdom from xen.git Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 1/2] Config.mk: use MINI_OS if specified Wei Liu
2016-03-10 16:52 ` [PATCH RFC v1 2/2] Makefile: introduce STUBDOM_ROOT Wei Liu
2016-03-15 0:20 ` [RFC PATCH v1] Splitting off stubdom to a different tree Samuel Thibault
2016-03-15 12:30 ` Wei Liu
2016-03-15 14:22 ` Wei Liu
2016-03-15 18:26 ` Wei Liu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1457628755-20267-1-git-send-email-wei.liu2@citrix.com \
--to=wei.liu2@citrix.com \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).