All of lore.kernel.org
 help / color / mirror / Atom feed
* OpenStack - Libvirt+Xen CI overview
@ 2015-03-10 12:03 Bob Ball
  2015-03-16 15:09 ` OpenStack - Libvirt+Xen CI overview : anyone interested in a walk/through or presentation on how it works Lars Kurth
                   ` (4 more replies)
  0 siblings, 5 replies; 106+ messages in thread
From: Bob Ball @ 2015-03-10 12:03 UTC (permalink / raw)
  To: xen-devel; +Cc: Anthony Perard

For the last few weeks Anthony and I have been working on creating a CI environment to run against all OpenStack jobs.  We're now in a position where we can share the current status, overview of how it works and next steps.  We actively want to support involvement in this effort from others with an interest in libvirt+Xen's openstack integration.

The CI we have set up is follow the recommendations made by the OpenStack official infrastructure maintainers, and reproduces a notable portion of the official OpenStack CI environment to run these tests.  Namely this setup is using:
- Puppet to deploy the master node
- Zuul to watch for code changes uploaded to review.openstack.org
- Jenkins job builder to create Jenkins job definitions from a YAML file
- Nodepool to automatically create single-use virtual machines in the Rackspace public cloud 
- Devstack-gate to run Tempest tests in serial

More information on Zuul, JJB, Nodepool and devstack-gate is available through http://ci.openstack.org

The current status is that we have a zuul instance monitoring for jobs and adding them to the queue of jobs to be run at http://zuul.openstack.xenproject.org/

In the background Nodepool provisions virtual machines into a pool of nodes ready to be used.  All ready nodes are automatically added to Jenkins (https://jenkins.openstack.xenproject.org/), and then Zuul+Jenkins will trigger a particular job on a node when one is available.

Logs are then uploaded to Rackspace's Cloud Files with sample logs for a passing job at http://logs.openstack.xenproject.org/52/162352/3/silent/dsvm-tempest-xen/da3ff30/index.html

I'd like to organise a meeting to walk through the various components of the CI with those who are interested, so this is an initial call to find out who is interested in finding out more!

Thanks,

Bob

^ permalink raw reply	[flat|nested] 106+ messages in thread
[parent not found: <10286402.11.1422626774586.JavaMail.kraghavendra@Raghavendra>]
* UBIFS: Is it possible to get the compressed size of a file?
@ 2014-12-12  8:10 markus.heininger
  2014-12-17  6:22 ` hujianyang
  0 siblings, 1 reply; 106+ messages in thread
From: markus.heininger @ 2014-12-12  8:10 UTC (permalink / raw)
  To: linux-mtd

Hello,
 
when using compression along with UBIfs, fstat reports the uncompressed file size
(as it should do). Is there a simple way to get the compressed file size, thus the real space
a single file needs on the flash memory?
 
Many thanks,
Markus

^ permalink raw reply	[flat|nested] 106+ messages in thread
* lots of connections in SYN_RECV state
@ 2014-11-06 13:27 Puneet Agarwal
  2014-11-06 14:30 ` Silvan Jegen
  0 siblings, 1 reply; 106+ messages in thread
From: Puneet Agarwal @ 2014-11-06 13:27 UTC (permalink / raw)
  To: kernelnewbies

Hello,

I have a couple of servers, for the past few days I am seeing lots of connections in SYN_RECV state in netstat commands output.
Is there a solution to this problem?

Thanks and Regards
Puneet 		 	   		  

^ permalink raw reply	[flat|nested] 106+ messages in thread
* Linking two recipes
@ 2012-03-19 20:59 simran singh
  2012-03-19 21:22 ` Richard Purdie
  0 siblings, 1 reply; 106+ messages in thread
From: simran singh @ 2012-03-19 20:59 UTC (permalink / raw)
  To: openembedded-core


[-- Attachment #1.1: Type: text/plain, Size: 348 bytes --]


Hello,I have recipes for two applications Recipe A and Recipe B. Recipe B requires a lib.so file and init.h file which are installed by Recipe A.How do I acknowledge this dependency in Recipe B. I tried doing do_stage() function in recipe A with no success. Please advice.I am attaching the two recipes.Thank you for any help.
Simran 		 	   		  

[-- Attachment #1.2: Type: text/html, Size: 632 bytes --]

[-- Attachment #2: recipeA.bb --]
[-- Type: application/octet-stream, Size: 1075 bytes --]

DESCRIPTION = "Botan library"
PR = "r0"
SRC_URI = "file://${PN}-${PV}.tar.gz"

export LDFLAGS = "-L${STAGING_LIBDIR}"

S = "${WORKDIR}"

#EXTRA_OEMAKE = 'LINUX=${STAGING_KERNEL_DIR} EXLDFLAGS="${LDFLAGS}" \
#		MACHINE=${TARGET_ARCH} CC="${CC}" AR="${AR}" PREFIX="${prefix}"'

do_configure() {

	mkdir -p ${D}/usr/botan
	cd Botan-1.10.1

#	export PATH=${WORKDIR}:${PATH}
#	export CC=gcc
#	export CXX=g++

	python configure.py --prefix=${D}/usr/botan
#	make
#	make install

}

#TARGET_CC_ARCH += "${LDFLAGS}"

do_compile() {

#	export PATH=${WORKDIR}:${PATH}
#	export CC=gcc
#	export CXX=g++

	cd Botan-1.10.1
	make
	
}

fakeroot do_install() {

	cd Botan-1.10.1
	make install
	cp -r ${WORKDIR}/Botan-1.10.1/* ${D}/usr/botan

}

do_stage() {
#	install -m 0755 ${D}/usr/botan/libbotan-1.10.so.0.1 ${STAGING_LIBDIR}/botan
	install -d ${STAGING_INCDIR}/
	install -d ${STAGING_LIBDIR}
#	cd ${D}/usr/botan
	oe_libinstall -so libbotan-1.10.so.0.1 ${STAGING_LIBDIR}

}

#FILES_${PN} += "${datadir}/botan"
FILES_${PN} += "/usr/bin/botan"
#FILES_${PN} = "${base_libdir}/libgcc*.so.*"



[-- Attachment #3: recipeB.bb --]
[-- Type: application/octet-stream, Size: 624 bytes --]

DESCRIPTION = "SoftHSM"
PR = "r0"
SRC_URI = "file://${PN}-${PV}.tar.gz"

S = "${WORKDIR}"

DEPENDS = "botan sqlite3"
#RDEPENDS = "botan"

export LDFLAGS = "-L${STAGING_LIBDIR}"
export STAGING_LIBDIR

do_configure() {

	mkdir -p ${D}/usr/softhsm

	./softhsm-1.3.1/configure --host --prefix=${D}/usr/softhsm --with-loglevel=4 #--with-botan=${STAGING_LIBDIR}/botan

}

do_compile() {

	make
	
}

fakeroot do_install() {

	make install

}


FILES_${PN} += "/usr/bin/softhsm"
#FILES_${PN} += "/home/Simran/Freescale/QorIQ-DPAA-SDK-20111026-systembuilder/build_p4080ds_release/work/ppce500mc-linux/botan-1.0-r0/image/usr/botan"



^ permalink raw reply	[flat|nested] 106+ messages in thread
* [U-Boot-Users] PCI, Ethernet, IXDP425
@ 2005-01-11  9:28 Ara Avanesyan
  2005-01-11 22:40 ` Wolfgang Denk
  0 siblings, 1 reply; 106+ messages in thread
From: Ara Avanesyan @ 2005-01-11  9:28 UTC (permalink / raw)
  To: u-boot

Hi all,

I've just got my ixdp425 evaluation board and tried u-boot on it.

I have a PCI Ethernet card on the board. I need to connect to the network 
from u-boot via this device.

Are there any ways to do so? What I will have to do to enable this support? 
Or at least are there ANY PCI Ethernet drivers in u-boot?

Thanks for your help,
Ara

^ permalink raw reply	[flat|nested] 106+ messages in thread
* [U-Boot-Users] [PATCH] fix the ARM memory layout
@ 2003-11-12 17:23 Anders Larsen
  2003-11-12 19:52 ` Kyle Harris
  2003-12-07  0:17 ` Wolfgang Denk
  0 siblings, 2 replies; 106+ messages in thread
From: Anders Larsen @ 2003-11-12 17:23 UTC (permalink / raw)
  To: u-boot

Hi,

here's a fresh version of my rather intrusive patch from the 17.th sept.
to rearrange the ARM memory layout to bring it in line with the README.

This has the positive side-effect of actually allow U-Boot to run on
PXA- and IXP-based targets; the current implementation sets up the heap
using bogus addresses causing u-boot to crash (this even applies to the
recently added board "ixdp425").

This patch doesn't go all the way, though, since doing away with the
board-specific setting of TEXT_BASE would require the code to be
position-independent, which at least the cpu initialization code in
cpu/*/start.S is _not_.

CHANGELOG:
   Bring the ARM memory layout in line with the documentation.

Cheers
 Anders

-------------- next part --------------
A non-text attachment was scrubbed...
Name: u-boot.arm-memory.patch.gz
Type: application/x-gzip
Size: 9520 bytes
Desc: not available
Url : http://lists.denx.de/pipermail/u-boot/attachments/20031112/c4b90e69/attachment.bin 

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

end of thread, other threads:[~2015-06-15 16:26 UTC | newest]

Thread overview: 106+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-10 12:03 OpenStack - Libvirt+Xen CI overview Bob Ball
2015-03-16 15:09 ` OpenStack - Libvirt+Xen CI overview : anyone interested in a walk/through or presentation on how it works Lars Kurth
2015-03-16 18:00 ` OpenStack - Libvirt+Xen CI overview Konrad Rzeszutek Wilk
2015-03-17 12:52   ` Dario Faggioli
2015-03-17 11:14 ` George Dunlap
2015-03-17 14:22 ` Jim Fehlig
2015-03-17 15:51 ` Alvin Starr
2015-03-18 13:12   ` OpenStack - Libvirt+Xen CI overview : anyone interested in a walk/through or presentation on how it works Lars Kurth
2015-03-18 14:37     ` Wei Liu
2015-03-24 18:17       ` Lars Kurth
2015-03-25 10:08         ` Ian Campbell
2015-03-25 10:09           ` Bob Ball
2015-03-25 12:26             ` Alvin Starr
2015-04-22 10:03               ` Lars Kurth
2015-06-04 17:12             ` Bob Ball
2015-06-05 11:47               ` Lars Kurth
2015-06-08 12:52             ` Bob Ball
2015-06-10 14:25             ` Bob Ball
2015-06-15 16:26             ` Bob Ball
     [not found] <10286402.11.1422626774586.JavaMail.kraghavendra@Raghavendra>
2015-01-30 14:08 ` Yocto-custom kernel build issue Raghavendra Kakarla
2015-01-30 16:34   ` Bruce Ashfield
2015-02-02 10:00   ` Raghavendra Kakarla
2015-02-03 12:40     ` yocto-custom-kernel issue Raghavendra Kakarla
2015-02-03 13:17       ` Sven Ebenfeld
2015-02-03 15:37       ` Bruce Ashfield
2015-02-05  8:56     ` MIPS32r2 little endian bsp Raghavendra Kakarla
2015-02-06 15:04       ` Mark Hatle
2015-02-10  8:17     ` Yocto-custom kernel build issue Raghavendra Kakarla
2015-02-10 11:00       ` Paul Eggleton
     [not found]         ` <2974616.30.1423571125144.JavaMail.kraghavendra@Raghavendra>
2015-02-10 13:36           ` Paul Eggleton
2015-02-11  4:55             ` Raghavendra Kakarla
2015-02-11  9:30               ` Paul Eggleton
2015-02-11 10:00                 ` Raghavendra Kakarla
2015-03-03  5:41                   ` SDK generation issue Raghavendra Kakarla
2015-03-03  9:37                     ` Paul Eggleton
2015-03-03 10:26                       ` Raghavendra Kakarla
2015-03-03 10:31                         ` Paul Eggleton
2015-03-03 11:55                         ` Raghavendra Kakarla
2015-03-03 12:10                           ` Paul Eggleton
2015-03-03 12:17                             ` Raghavendra Kakarla
2015-03-03 13:16                               ` Paul Eggleton
2015-03-10  4:21                               ` Difference b/w yocto kernels and normal linux.org kernels Raghavendra Kakarla
2015-03-10  4:33                                 ` Khem Raj
2015-03-10  4:45                                   ` Nicholas Krause
2015-03-13  8:14                                 ` Raghavendra Kakarla
2015-03-13  8:53                                   ` Paul Eggleton
2015-03-13  9:05                                     ` Albert K
2015-03-13  9:12                                       ` Paul Eggleton
2015-04-03  6:04                                     ` Raghavendra Kakarla
2015-03-03 17:55                     ` SDK generation issue Jim Rafert
  -- strict thread matches above, loose matches on Subject: below --
2014-12-12  8:10 UBIFS: Is it possible to get the compressed size of a file? markus.heininger
2014-12-17  6:22 ` hujianyang
2014-12-18 11:08   ` Aw: " markus.heininger
2015-02-02  9:33     ` Artem Bityutskiy
2015-02-02  9:33       ` Artem Bityutskiy
2015-02-03  5:45       ` Andreas Dilger
2015-02-03  5:45         ` Andreas Dilger
2015-02-03  9:07         ` Artem Bityutskiy
2015-02-03  9:07           ` Artem Bityutskiy
2015-02-28  7:31         ` hujianyang
2015-02-28  7:31           ` hujianyang
2015-03-26 14:19           ` David Sterba
2015-03-26 14:19             ` David Sterba
2014-11-06 13:27 lots of connections in SYN_RECV state Puneet Agarwal
2014-11-06 14:30 ` Silvan Jegen
2014-11-06 15:15   ` Puneet Agarwal
2014-11-06 15:58     ` Silvan Jegen
2014-11-07 15:49       ` Dave Tian
2014-11-07 16:58         ` Valdis.Kletnieks at vt.edu
2014-11-07 23:48           ` Dave Tian
2014-11-07 17:41         ` Puneet Agarwal
2014-11-07 18:10           ` Valdis.Kletnieks at vt.edu
2014-11-08  2:05             ` Puneet Agarwal
2012-03-19 20:59 Linking two recipes simran singh
2012-03-19 21:22 ` Richard Purdie
2012-03-19 21:33   ` simran singh
2012-03-19 21:39     ` Christopher Larson
2012-03-19 21:57       ` simran singh
2012-03-19 21:59         ` Christopher Larson
2012-03-19 22:10           ` simran singh
2012-03-19 22:54             ` Richard Purdie
2012-03-20 19:25               ` simran singh
2012-04-07  3:44                 ` Khem Raj
2005-01-11  9:28 [U-Boot-Users] PCI, Ethernet, IXDP425 Ara Avanesyan
2005-01-11 22:40 ` Wolfgang Denk
2005-01-12  6:18   ` [U-Boot-Users] " Ara Avanesyan
2005-01-12  6:41     ` Rodel Miguel
2005-01-12  7:41       ` Ara Avanesyan
2005-01-12  8:08       ` Ing.Gianfranco Morandi
2005-01-12  9:01     ` Wolfgang Denk
2005-01-12  9:32       ` Ara Avanesyan
2005-01-12 10:13         ` Anders Larsen
2005-01-12 14:16           ` Wolfgang Denk
2005-01-12 14:16         ` Wolfgang Denk
2005-01-12 15:07           ` Ara Avanesyan
2003-11-12 17:23 [U-Boot-Users] [PATCH] fix the ARM memory layout Anders Larsen
2003-11-12 19:52 ` Kyle Harris
2003-11-13  9:14   ` Anders Larsen
2003-11-13 14:19     ` Kyle Harris
2003-11-21  3:52       ` Kyle Harris
2003-11-21  7:47         ` Anders Larsen
2003-11-21  8:13           ` Wolfgang Denk
2003-12-07  0:17 ` Wolfgang Denk
2003-12-07 17:03   ` Anders Larsen
2004-01-09 11:14   ` Anders Larsen
2004-02-08 19:36     ` Wolfgang Denk

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.