* [PATCH 0/1] Image-creator: Make bitbake server type configuration (xmlrpc, none)
@ 2011-04-27 7:45 Liping Ke
2011-04-27 7:45 ` [PATCH 1/1] Image Creator: " Liping Ke
0 siblings, 1 reply; 4+ messages in thread
From: Liping Ke @ 2011-04-27 7:45 UTC (permalink / raw)
To: openembedded-core
From: Liping Ke <liping.ke@intel.com>
Add -t parameters for configuring xmlrpc or none server.
Pull URL: git://git.pokylinux.org/poky-contrib.git
Branch: lke/server_type
Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=lke/server_type
Thanks,
Liping Ke <liping.ke@intel.com>
---
Liping Ke (1):
Make bitbake server type configuration (xmlrpc, none)
bitbake/bin/bitbake | 20 +++++++++++++++-----
1 files changed, 15 insertions(+), 5 deletions(-)
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/1] Image Creator: Make bitbake server type configuration (xmlrpc, none)
2011-04-27 7:45 [PATCH 0/1] Image-creator: Make bitbake server type configuration (xmlrpc, none) Liping Ke
@ 2011-04-27 7:45 ` Liping Ke
2011-04-27 8:05 ` Ke, Liping
0 siblings, 1 reply; 4+ messages in thread
From: Liping Ke @ 2011-04-27 7:45 UTC (permalink / raw)
To: openembedded-core
From: Liping Ke <liping.ke@intel.com>
Add -t parameters for configuring xmlrpc or none server.
Signed-off-by: Liping Ke <liping.ke@intel.com>
---
bitbake/bin/bitbake | 20 +++++++++++++++-----
1 files changed, 15 insertions(+), 5 deletions(-)
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake
index 6d05289..754517a 100755
--- a/bitbake/bin/bitbake
+++ b/bitbake/bin/bitbake
@@ -39,8 +39,6 @@ import bb.msg
from bb import cooker
from bb import ui
from bb import server
-from bb.server import none
-#from bb.server import xmlrpc
__version__ = "1.11.0"
logger = logging.getLogger("BitBake")
@@ -71,7 +69,7 @@ def get_ui(config):
return getattr(module, interface).main
except AttributeError:
sys.exit("FATAL: Invalid user interface '%s' specified.\n"
- "Valid interfaces: depexp, goggle, ncurses, knotty [default]." % interface)
+ "Valid interfaces: depexp, goggle, ncurses, hob, knotty [default]." % interface)
# Display bitbake/OE warnings via the BitBake.Warnings logger, ignoring others"""
@@ -161,6 +159,9 @@ Default BBFILES are the .bb files in the current directory.""")
parser.add_option("-u", "--ui", help = "userinterface to use",
action = "store", dest = "ui")
+ parser.add_option("-t", "--servertype", help = "choose which server to user, none or xmlrpc",
+ action = "store", dest = "servertype")
+
parser.add_option("", "--revisions-changed", help = "Set the exit code depending on whether upstream floating revisions have changed or not",
action = "store_true", dest = "revisions_changed", default = False)
@@ -175,8 +176,17 @@ Default BBFILES are the .bb files in the current directory.""")
loghandler = event.LogHandler()
logger.addHandler(loghandler)
- #server = bb.server.xmlrpc
- server = bb.server.none
+ # Server type could be xmlrpc or none currently, if nothing is specified,
+ # default server would be none
+ if configuration.servertype:
+ server_type = configuration.servertype
+ else:
+ server_type = 'none'
+
+ module = __import__("bb.server", fromlist = [server_type])
+ server = getattr(module, server_type)
+
+ print ("lke: servertype: ", server_type)
# Save a logfile for cooker into the current working directory. When the
# server is daemonized this logfile will be truncated.
--
1.7.0.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] Image Creator: Make bitbake server type configuration (xmlrpc, none)
2011-04-27 7:45 ` [PATCH 1/1] Image Creator: " Liping Ke
@ 2011-04-27 8:05 ` Ke, Liping
2011-04-28 5:33 ` Ke, Liping
0 siblings, 1 reply; 4+ messages in thread
From: Ke, Liping @ 2011-04-27 8:05 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
Cc: Lock, Joshua, Zhang, Jessica
Hi, Josh Saul
I have resent the patch for removing the left debugging line. Please look@ the newer email:)
Thanks a lot for your help!
criping
-----Original Message-----
From: openembedded-core-bounces@lists.openembedded.org [mailto:openembedded-core-bounces@lists.openembedded.org] On Behalf Of Liping Ke
Sent: Wednesday, April 27, 2011 3:45 PM
To: openembedded-core@lists.openembedded.org
Subject: [OE-core] [PATCH 1/1] Image Creator: Make bitbake server type configuration (xmlrpc, none)
From: Liping Ke <liping.ke@intel.com>
Add -t parameters for configuring xmlrpc or none server.
Signed-off-by: Liping Ke <liping.ke@intel.com>
---
bitbake/bin/bitbake | 20 +++++++++++++++-----
1 files changed, 15 insertions(+), 5 deletions(-)
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake
index 6d05289..754517a 100755
--- a/bitbake/bin/bitbake
+++ b/bitbake/bin/bitbake
@@ -39,8 +39,6 @@ import bb.msg
from bb import cooker
from bb import ui
from bb import server
-from bb.server import none
-#from bb.server import xmlrpc
__version__ = "1.11.0"
logger = logging.getLogger("BitBake")
@@ -71,7 +69,7 @@ def get_ui(config):
return getattr(module, interface).main
except AttributeError:
sys.exit("FATAL: Invalid user interface '%s' specified.\n"
- "Valid interfaces: depexp, goggle, ncurses, knotty [default]." % interface)
+ "Valid interfaces: depexp, goggle, ncurses, hob, knotty [default]." % interface)
# Display bitbake/OE warnings via the BitBake.Warnings logger, ignoring others"""
@@ -161,6 +159,9 @@ Default BBFILES are the .bb files in the current directory.""")
parser.add_option("-u", "--ui", help = "userinterface to use",
action = "store", dest = "ui")
+ parser.add_option("-t", "--servertype", help = "choose which server to user, none or xmlrpc",
+ action = "store", dest = "servertype")
+
parser.add_option("", "--revisions-changed", help = "Set the exit code depending on whether upstream floating revisions have changed or not",
action = "store_true", dest = "revisions_changed", default = False)
@@ -175,8 +176,17 @@ Default BBFILES are the .bb files in the current directory.""")
loghandler = event.LogHandler()
logger.addHandler(loghandler)
- #server = bb.server.xmlrpc
- server = bb.server.none
+ # Server type could be xmlrpc or none currently, if nothing is specified,
+ # default server would be none
+ if configuration.servertype:
+ server_type = configuration.servertype
+ else:
+ server_type = 'none'
+
+ module = __import__("bb.server", fromlist = [server_type])
+ server = getattr(module, server_type)
+
+ print ("lke: servertype: ", server_type)
# Save a logfile for cooker into the current working directory. When the
# server is daemonized this logfile will be truncated.
--
1.7.0.4
_______________________________________________
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] Image Creator: Make bitbake server type configuration (xmlrpc, none)
2011-04-27 8:05 ` Ke, Liping
@ 2011-04-28 5:33 ` Ke, Liping
0 siblings, 0 replies; 4+ messages in thread
From: Ke, Liping @ 2011-04-28 5:33 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer; +Cc: Lock, Joshua
Hi, Josh
Thanks for the feedback! I will resend the patch today seems I use the wrong patch.
Thanks a lot!
criping
> -----Original Message-----
> From: openembedded-core-bounces@lists.openembedded.org
> [mailto:openembedded-core-bounces@lists.openembedded.org] On Behalf Of
> Ke, Liping
> Sent: Wednesday, April 27, 2011 4:05 PM
> To: Patches and discussions about the oe-core layer
> Cc: Lock, Joshua; Zhang, Jessica
> Subject: Re: [OE-core] [PATCH 1/1] Image Creator: Make bitbake server type
> configuration (xmlrpc, none)
>
> Hi, Josh Saul
> I have resent the patch for removing the left debugging line. Please look@ the
> newer email:)
>
> Thanks a lot for your help!
> criping
>
>
>
> -----Original Message-----
> From: openembedded-core-bounces@lists.openembedded.org
> [mailto:openembedded-core-bounces@lists.openembedded.org] On Behalf Of
> Liping Ke
> Sent: Wednesday, April 27, 2011 3:45 PM
> To: openembedded-core@lists.openembedded.org
> Subject: [OE-core] [PATCH 1/1] Image Creator: Make bitbake server type
> configuration (xmlrpc, none)
>
> From: Liping Ke <liping.ke@intel.com>
>
> Add -t parameters for configuring xmlrpc or none server.
>
> Signed-off-by: Liping Ke <liping.ke@intel.com>
> ---
> bitbake/bin/bitbake | 20 +++++++++++++++-----
> 1 files changed, 15 insertions(+), 5 deletions(-)
>
> diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake
> index 6d05289..754517a 100755
> --- a/bitbake/bin/bitbake
> +++ b/bitbake/bin/bitbake
> @@ -39,8 +39,6 @@ import bb.msg
> from bb import cooker
> from bb import ui
> from bb import server
> -from bb.server import none
> -#from bb.server import xmlrpc
>
> __version__ = "1.11.0"
> logger = logging.getLogger("BitBake")
> @@ -71,7 +69,7 @@ def get_ui(config):
> return getattr(module, interface).main
> except AttributeError:
> sys.exit("FATAL: Invalid user interface '%s' specified.\n"
> - "Valid interfaces: depexp, goggle, ncurses, knotty
> [default]." % interface)
> + "Valid interfaces: depexp, goggle, ncurses, hob, knotty
> [default]." % interface)
>
>
> # Display bitbake/OE warnings via the BitBake.Warnings logger, ignoring
> others"""
> @@ -161,6 +159,9 @@ Default BBFILES are the .bb files in the current
> directory.""")
> parser.add_option("-u", "--ui", help = "userinterface to use",
> action = "store", dest = "ui")
>
> + parser.add_option("-t", "--servertype", help = "choose which server to
> user, none or xmlrpc",
> + action = "store", dest = "servertype")
> +
> parser.add_option("", "--revisions-changed", help = "Set the exit code
> depending on whether upstream floating revisions have changed or not",
> action = "store_true", dest = "revisions_changed", default
> = False)
>
> @@ -175,8 +176,17 @@ Default BBFILES are the .bb files in the current
> directory.""")
> loghandler = event.LogHandler()
> logger.addHandler(loghandler)
>
> - #server = bb.server.xmlrpc
> - server = bb.server.none
> + # Server type could be xmlrpc or none currently, if nothing is specified,
> + # default server would be none
> + if configuration.servertype:
> + server_type = configuration.servertype
> + else:
> + server_type = 'none'
> +
> + module = __import__("bb.server", fromlist = [server_type])
> + server = getattr(module, server_type)
> +
> + print ("lke: servertype: ", server_type)
>
> # Save a logfile for cooker into the current working directory. When the
> # server is daemonized this logfile will be truncated.
> --
> 1.7.0.4
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-04-28 5:37 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-27 7:45 [PATCH 0/1] Image-creator: Make bitbake server type configuration (xmlrpc, none) Liping Ke
2011-04-27 7:45 ` [PATCH 1/1] Image Creator: " Liping Ke
2011-04-27 8:05 ` Ke, Liping
2011-04-28 5:33 ` Ke, Liping
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox