<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.linux.kernel.embedded">
    <title>gmane.linux.kernel.embedded</title>
    <link>http://blog.gmane.org/gmane.linux.kernel.embedded</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.embedded/3957"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.embedded/3956"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.embedded/3955"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.embedded/3954"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.embedded/3953"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.embedded/3952"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.embedded/3923"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.embedded/3922"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.embedded/3921"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.embedded/3920"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.embedded/3919"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.embedded/3918"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.embedded/3917"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.embedded/3916"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.embedded/3915"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.embedded/3914"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.embedded/3913"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.embedded/3912"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.embedded/3911"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.kernel.embedded/3910"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.embedded/3957">
    <title>Bids for open project proposals</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.embedded/3957</link>
    <description>&lt;pre&gt;Everyone,

The CE Working Group has been collecting project proposals for 2012
contract work at:

http://elinux.org/Project_Proposals_for_2012

Most of this work is related to enhancing aspects of the Linux
kernel for use in embedded products.

The Architecture Group of the CEWG will be considering these
proposals at a meeting in Japan on June 5.  I realize that time
is very short, and I apologize for the late notice.  However,
if you are interested in bidding on any of these projects, please
send me an email with either a formal bid, or at a minimum, some
information about yourself.  This should include your hourly rate,
amount of available time, and experience with embedded Linux
development.  If you have any special qualifications - like having
worked on the particular subsystem in question - then please
list that as well.

Thanks and regards,
 -- Tim

=============================
Tim Bird
Architecture Group Chair, CE Workgroup of the Linux Foundation
Senior Staff Engineer, Sony Network Entertainment
=============================

&lt;/pre&gt;</description>
    <dc:creator>Tim Bird</dc:creator>
    <dc:date>2012-05-24T23:59:23</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.embedded/3956">
    <title>[PATCH] kernel: Shrink embedded kernel, remove WARN strings when !CONFIG_PRINTK</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.embedded/3956</link>
    <description>&lt;pre&gt;WARN strings are currently always saved in text.
When printk is not enabled, this wastes space.

Don't call or compile slowpath_warn_&amp;lt;foo&amp;gt; when !CONFIG_PRINTK.

This makes an embedded image without printk support ~1% smaller.

x86-32 allnoconfig/embedded:

$ size vmlinux.new vmlinux.old
   text   data    bss    dec    hexfilename
1180807 18272012693722632899 282cc3vmlinux.new
1198760 18272012679482649428 286d54vmlinux.old

Signed-off-by: Joe Perches &amp;lt;joe&amp;lt; at &amp;gt;perches.com&amp;gt;
---
 include/asm-generic/bug.h |   18 +++++++++++++++++-
 kernel/panic.c            |    3 +++
 2 files changed, 20 insertions(+), 1 deletions(-)

diff --git a/include/asm-generic/bug.h b/include/asm-generic/bug.h
index 2520a6e..a16101a 100644
--- a/include/asm-generic/bug.h
+++ b/include/asm-generic/bug.h
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -59,7 +59,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; struct bug_entry {
  * appear at runtime.  Use the versions with printk format strings
  * to provide better diagnostics.
  */
-#ifndef __WARN_TAINT
+#if !defined(__WARN_TAINT)
+
 #ifndef __ASSEMBLY__
 extern __printf(3, 4)
 void warn_slowpath_fmt(const char *file, const int line,
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -70,15 +71,30 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; void warn_slowpath_fmt_taint(const char *file, const int line, unsigned taint,
 extern void warn_slowpath_null(const char *file, const int line);
 #define WANT_WARN_ON_SLOWPATH
 #endif
+
+#ifdef CONFIG_PRINTK
 #define __WARN()warn_slowpath_null(__FILE__, __LINE__)
 #define __WARN_printf(arg...)warn_slowpath_fmt(__FILE__, __LINE__, arg)
 #define __WARN_printf_taint(taint, arg...)\
 warn_slowpath_fmt_taint(__FILE__, __LINE__, taint, arg)
 #else
+#define __WARN()do {} while (0)
+#define __WARN_printf(fmt, ...)\
+do {\
+if (0)\
+printk(fmt, ##__VA_ARGS__);\
+} while (0)
+#define __WARN_printf_taint(taint, fmt, ...)\
+__WARN_printf(fmt, ##__VA_ARGS__)
+#endif
+
+#else
+
 #define __WARN()__WARN_TAINT(TAINT_WARN)
 #define __WARN_printf(arg...)do { printk(arg); __WARN(); } while (0)
 #define __WARN_printf_taint(taint, arg...)\
 do { printk(arg); __WARN_TAINT(taint); } while (0)
+
 #endif
 
 #ifndef WARN_ON
diff --git a/kernel/panic.c b/kernel/panic.c
index 8ed89a1..bc57785 100644
--- a/kernel/panic.c
+++ b/kernel/panic.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -396,6 +396,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; struct slowpath_args {
 va_list args;
 };
 
+#ifdef CONFIG_PRINTK
 static void warn_slowpath_common(const char *file, int line, void *caller,
  unsigned taint, struct slowpath_args *args)
 {
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -449,6 +450,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; void warn_slowpath_null(const char *file, int line)
 EXPORT_SYMBOL(warn_slowpath_null);
 #endif
 
+#endif
+
 #ifdef CONFIG_CC_STACKPROTECTOR
 
 /*


&lt;/pre&gt;</description>
    <dc:creator>Joe Perches</dc:creator>
    <dc:date>2012-05-23T01:34:14</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.embedded/3955">
    <title>Order Enquiry</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.embedded/3955</link>
    <description>&lt;pre&gt;
Hello Sales
     I went over your contact online and found some items which we have interest in purchasing to our store in Spain for urgent supply. I will like to know the prices per each items plus the shipping cost. I also want to know if Letter of Credit or T/T is acceptable for payment. I await your quick response asap so i can proceed with my needed items and quantity.

Thank you
mcckoy robertson


N.B.M Global Supply Inc
Address: Autovía A-5,
salidas 22 y 26.
Arroyomolinos,
28939 Madrid Spain
Tel: +34 902 26 77 26
Email: nbmglobalsupply&amp;lt; at &amp;gt;gmail.com
Website : http://www.brplastics.com


&lt;/pre&gt;</description>
    <dc:creator>Mcckoy Robertson</dc:creator>
    <dc:date>2012-05-20T15:22:23</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.embedded/3954">
    <title>BUSINESS PROPOSAL!!</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.embedded/3954</link>
    <description>&lt;pre&gt;

&lt;/pre&gt;</description>
    <dc:creator>Wong Hui</dc:creator>
    <dc:date>2012-05-16T12:47:18</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.embedded/3953">
    <title>Streaming Service</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.embedded/3953</link>
    <description>&lt;pre&gt;Our Streaming Server is powerful and optimized server for live and on-demand audio/ video streaming content delivery. 
Our Streaming Server features with high performance streaming throughput, network &amp;amp; storage I/O and optimized configurations for its high scalability and reliability.
Our server supports latest Windows Media Technologies such as Fast Streaming, Fast Cache, Fast Start, Wireless Streaming as well as feature-rich add-on modules such as sophisticated content management, monitoring, logging reports, billing, authentications, load-balancing &amp;amp; clustering for all needs. 

Pls send us email for further information.Thanks,

Boris 
boris&amp;lt; at &amp;gt;dedicatedserver.com.hk

If you do not wish to further receive this event message, email "borislamsv2&amp;lt; at &amp;gt;gmail.com" to unsubscribe this message or remove your email from the list.


&lt;/pre&gt;</description>
    <dc:creator>boris&lt; at &gt;dedicatedserver.com.hk</dc:creator>
    <dc:date>2012-05-15T19:35:19</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.embedded/3952">
    <title>haalloo,</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.embedded/3952</link>
    <description>&lt;pre&gt;haalloo,
how are you doing,i hope you are fine,my name is miss abi okom i got your
contact and want us to be a good friend,
please try and write back to me so that i will give you my pictures and tell
you more about me,
&lt;/pre&gt;</description>
    <dc:creator>abi</dc:creator>
    <dc:date>2012-05-12T16:57:35</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.embedded/3923">
    <title>Server Rental Service in Hong Kong</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.embedded/3923</link>
    <description>&lt;pre&gt;Dear All,

We have our own datacenter in Hong Kong &amp;amp; provide email/application/web rental service to clients.We are APNIC member &amp;amp; provide clean IP to clients.

Dell? PowerEdge? EnterpriseRack Mount Server
-Intel(R) Xeon(R) E3-1240 Processor (3.3GHz, 8M Cache, Turbo, 4C/8T, 80W)
-8GB RAM, 2x4GB, 1333MHz, DDR-3, Dual Ranked UDIMMs
-500GB, 3.5", 6Gbps SAS x 2
-Raid 1 Mirroring Protection
-Remote KVM (iDRAC6 Enterprise)

Dell(TM) PowerEdge(TM) R410 Rack Mount Server
-Intel(R) Quad Core E5606 Xeon(R) CPU, 2.13GHz, 4M Cache, 4.86 GT/s QPI
-4GB Memory (2x2GB), 1333MHz Dual Ranked RDIMMs Fully-Buffered
-500GB 7.2K RPM SATAII 3.5" Hard Drive x 2
-iDRAC6 Enterprise or Express (Remote KVM Management)

Every Dedicated Server Hosting Solution Also Includes: 
 
Software Specification 
- CentOS / Fedora / Debian / FreeBSD / Ubuntu / Redhat Linux 
- Full root-level access 
- Data Center Facilities 
- Shared Local &amp;amp; International Bandwidth 
- 2 IP Addresses Allocation 
- Un-interruptible Power Supply (UPS) backed up by private diesel generator 
- FM200¡§based fire suppression system 
- 24x7 CRAC Air Conditioning and Humidity Control 
- 24x7 Security Control 
- 24x7 Remote Hand Service 

Pls send us email for further information.Thanks,

Boris 
boris&amp;lt; at &amp;gt;dedicatedserver.com.hk

If you do not wish to further receive this event message, email "borislamsv2&amp;lt; at &amp;gt;gmail.com" to unsubscribe this message or remove your email from the list.


&lt;/pre&gt;</description>
    <dc:creator>boris&lt; at &gt;dedicatedserver.com.hk</dc:creator>
    <dc:date>2012-05-03T18:25:09</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.embedded/3922">
    <title>Advanced Cloud Hosting/Server</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.embedded/3922</link>
    <description>&lt;pre&gt;Dear All,

Shoud you need Web, Email, EDM, Streaming, FTP.......server or hosting space?

We have providing better and lower cost service of Cloud Hosting (Cloud Server / Hosting / CDN)

Just USD$1.99 for experience, let's come to join us and enjoy our powerful and stable cloud system.

Please kindly visit our website as following link for more details. Thank you very much.

http://www.cloudluca.com/ 

Best Regards,
The 36cloud Team





If you do not wish to further receive this event message, email "subscriber&amp;lt; at &amp;gt;dedicatedserver.com.hk" to unsubscribe this message or revoe your email from the list.


&lt;/pre&gt;</description>
    <dc:creator>woody&lt; at &gt;cloudluca.com</dc:creator>
    <dc:date>2012-04-25T13:15:10</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.embedded/3921">
    <title>Server Rental Service in HK</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.embedded/3921</link>
    <description>&lt;pre&gt;Dear All,

We have our own datacenter in Hong Kong &amp;amp; provide email/application/web rental service to clients.We are APNIC member &amp;amp; provide clean IP to clients.

Dell? PowerEdge? EnterpriseRack Mount Server
-Intel(R) Xeon(R) E3-1240 Processor (3.3GHz, 8M Cache, Turbo, 4C/8T, 80W)
-8GB RAM, 2x4GB, 1333MHz, DDR-3, Dual Ranked UDIMMs
-500GB, 3.5", 6Gbps SAS x 2
-Raid 1 Mirroring Protection
-Remote KVM (iDRAC6 Enterprise)

Dell(TM) PowerEdge(TM) R410 Rack Mount Server
-Intel(R) Quad Core E5606 Xeon(R) CPU, 2.13GHz, 4M Cache, 4.86 GT/s QPI
-4GB Memory (2x2GB), 1333MHz Dual Ranked RDIMMs Fully-Buffered
-500GB 7.2K RPM SATAII 3.5" Hard Drive x 2
-iDRAC6 Enterprise or Express (Remote KVM Management)

Every Dedicated Server Hosting Solution Also Includes: 
 
Software Specification 
- CentOS / Fedora / Debian / FreeBSD / Ubuntu / Redhat Linux 
- Full root-level access 
- Data Center Facilities 
- Shared Local &amp;amp; International Bandwidth 
- 2 IP Addresses Allocation 
- Un-interruptible Power Supply (UPS) backed up by private diesel generator 
- FM200¡§based fire suppression system 
- 24x7 CRAC Air Conditioning and Humidity Control 
- 24x7 Security Control 
- 24x7 Remote Hand Service 

Pls send us email for further information.Thanks,

Boris 
boris&amp;lt; at &amp;gt;dedicatedserver.com.hk

If you do not wish to further receive this event message, email "borislamsv2&amp;lt; at &amp;gt;gmail.com" to unsubscribe this message or remove your email from the list.


&lt;/pre&gt;</description>
    <dc:creator>boris&lt; at &gt;dedicatedserver.com.hk</dc:creator>
    <dc:date>2012-04-22T00:42:50</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.embedded/3920">
    <title>Server Rental Service in Hong Kong</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.embedded/3920</link>
    <description>&lt;pre&gt;Dear All,

We have our own datacenter in Hong Kong &amp;amp; provide email/application/web rental service to clients.We are APNIC member &amp;amp; provide clean IP to clients.

Dell? PowerEdge? EnterpriseRack Mount Server
-Intel(R) Xeon(R) E3-1240 Processor (3.3GHz, 8M Cache, Turbo, 4C/8T, 80W)
-8GB RAM, 2x4GB, 1333MHz, DDR-3, Dual Ranked UDIMMs
-500GB, 3.5", 6Gbps SAS x 2
-Raid 1 Mirroring Protection
-Remote KVM (iDRAC6 Enterprise)

Dell(TM) PowerEdge(TM) R410 Rack Mount Server
-Intel(R) Quad Core E5606 Xeon(R) CPU, 2.13GHz, 4M Cache, 4.86 GT/s QPI
-4GB Memory (2x2GB), 1333MHz Dual Ranked RDIMMs Fully-Buffered
-500GB 7.2K RPM SATAII 3.5" Hard Drive x 2
-iDRAC6 Enterprise or Express (Remote KVM Management)

Every Dedicated Server Hosting Solution Also Includes: 
 
Software Specification 
- CentOS / Fedora / Debian / FreeBSD / Ubuntu / Redhat Linux 
- Full root-level access 
- Data Center Facilities 
- Shared Local &amp;amp; International Bandwidth 
- 2 IP Addresses Allocation 
- Un-interruptible Power Supply (UPS) backed up by private diesel generator 
- FM200¡§based fire suppression system 
- 24x7 CRAC Air Conditioning and Humidity Control 
- 24x7 Security Control 
- 24x7 Remote Hand Service 

Pls send us email for further information.Thanks,

Boris 
boris&amp;lt; at &amp;gt;dedicatedserver.com.hk

If you do not wish to further receive this event message, email "borislamsv2&amp;lt; at &amp;gt;gmail.com" to unsubscribe this message or remove your email from the list.


&lt;/pre&gt;</description>
    <dc:creator>boris&lt; at &gt;dedicatedserver.com.hk</dc:creator>
    <dc:date>2012-04-17T09:45:01</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.embedded/3919">
    <title>Our Dedicated Server Prices Help Your Bottom Line</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.embedded/3919</link>
    <description>&lt;pre&gt;All Dedicated Server service included hosting to our Data Center:

Facilities:

Over 20,000ft Data Center with Control Center
Holds Certificate of ISO/IEC 27001:2005
Standard of TIA-942 Tier 3+ Facilities

FM200 and HSSD ¡V strengthens fire resistance and limits potential damage
CRAC system ¡V maintains constant temperatures and relative humidity to minimize redundancy control
Diesel Power Generator ¡V provide full power outage support for entire data centre operation with limitless diesel tank back up located in ground floor of building.
UPS ¡V offers N+1 full load configuration

Service Features:

Server is collocated in Standard 42U Industries Rack.
1000Mbps Internet Connectivity shared backbone access
IP(s) pre-allocated
Included Server Power Consumption
24x7 Technical Support (On-phone / Email)
24x7 Security Control
24x7 Network Monitoring Service
24x7 Server Status and Traffic Monitoring
Network Firewall protected

Pls send us email for further information.Thanks,

Boris 
boris&amp;lt; at &amp;gt;dedicatedserver.com.hk

If you do not wish to further receive this event message, email "borislamsv2&amp;lt; at &amp;gt;gmail.com" to unsubscribe this message or remove your email from the list.


&lt;/pre&gt;</description>
    <dc:creator>boris&lt; at &gt;dedicatedserver.com.hk</dc:creator>
    <dc:date>2012-04-13T12:28:09</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.embedded/3918">
    <title>Server Rental Service in HK</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.embedded/3918</link>
    <description>&lt;pre&gt;Dear All,

We have our own datacenter in Hong Kong &amp;amp; provide email/application/web rental service to clients.We are APNIC member &amp;amp; provide clean IP to clients.

Dell? PowerEdge? EnterpriseRack Mount Server
-Intel(R) Xeon(R) E3-1240 Processor (3.3GHz, 8M Cache, Turbo, 4C/8T, 80W)
-8GB RAM, 2x4GB, 1333MHz, DDR-3, Dual Ranked UDIMMs
-500GB, 3.5", 6Gbps SAS x 2
-Raid 1 Mirroring Protection
-Remote KVM (iDRAC6 Enterprise)

Dell(TM) PowerEdge(TM) R410 Rack Mount Server
-Intel(R) Quad Core E5606 Xeon(R) CPU, 2.13GHz, 4M Cache, 4.86 GT/s QPI
-4GB Memory (2x2GB), 1333MHz Dual Ranked RDIMMs Fully-Buffered
-500GB 7.2K RPM SATAII 3.5" Hard Drive x 2
-iDRAC6 Enterprise or Express (Remote KVM Management)

Every Dedicated Server Hosting Solution Also Includes: 
 
Software Specification 
- CentOS / Fedora / Debian / FreeBSD / Ubuntu / Redhat Linux 
- Full root-level access 
- Data Center Facilities 
- Shared Local &amp;amp; International Bandwidth 
- 2 IP Addresses Allocation 
- Un-interruptible Power Supply (UPS) backed up by private diesel generator 
- FM200¡§based fire suppression system 
- 24x7 CRAC Air Conditioning and Humidity Control 
- 24x7 Security Control 
- 24x7 Remote Hand Service 

Pls send us email for further information.Thanks,

Boris 
boris&amp;lt; at &amp;gt;cloudluca.com

If you do not wish to further receive this event message, email "borislamsv2&amp;lt; at &amp;gt;gmail.com" to unsubscribe this message or remove your email from the list.


&lt;/pre&gt;</description>
    <dc:creator>boris&lt; at &gt;dedicatedserver.com.hk</dc:creator>
    <dc:date>2012-04-12T08:41:27</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.embedded/3917">
    <title>Server Rental Service in Hong Kong</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.embedded/3917</link>
    <description>&lt;pre&gt;Dear All,

We have our own datacenter in Hong Kong &amp;amp; provide email/application/web rental service to clients.We are APNIC member &amp;amp; provide clean IP to clients.

Dell? PowerEdge? EnterpriseRack Mount Server
-Intel(R) Xeon(R) E3-1240 Processor (3.3GHz, 8M Cache, Turbo, 4C/8T, 80W)
-8GB RAM, 2x4GB, 1333MHz, DDR-3, Dual Ranked UDIMMs
-500GB, 3.5", 6Gbps SAS x 2
-Raid 1 Mirroring Protection
-Remote KVM (iDRAC6 Enterprise)

Dell(TM) PowerEdge(TM) R410 Rack Mount Server
-Intel(R) Quad Core E5606 Xeon(R) CPU, 2.13GHz, 4M Cache, 4.86 GT/s QPI
-4GB Memory (2x2GB), 1333MHz Dual Ranked RDIMMs Fully-Buffered
-500GB 7.2K RPM SATAII 3.5" Hard Drive x 2
-iDRAC6 Enterprise or Express (Remote KVM Management)

Every Dedicated Server Hosting Solution Also Includes: 
 
Software Specification 
- CentOS / Fedora / Debian / FreeBSD / Ubuntu / Redhat Linux 
- Full root-level access 
- Data Center Facilities 
- Shared Local &amp;amp; International Bandwidth 
- 2 IP Addresses Allocation 
- Un-interruptible Power Supply (UPS) backed up by private diesel generator 
- FM200¡§based fire suppression system 
- 24x7 CRAC Air Conditioning and Humidity Control 
- 24x7 Security Control 
- 24x7 Remote Hand Service 

Pls send us email for further information.Thanks,

Boris 
boris&amp;lt; at &amp;gt;cloudluca.com

If you do not wish to further receive this event message, email "borislamsv2&amp;lt; at &amp;gt;gmail.com" to unsubscribe this message or remove your email from the list.


&lt;/pre&gt;</description>
    <dc:creator>boris&lt; at &gt;cloudluca.com</dc:creator>
    <dc:date>2012-04-05T14:14:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.embedded/3916">
    <title>Cloud Hosting and Cloud Server</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.embedded/3916</link>
    <description>&lt;pre&gt;Dear All,

We are one of the top Cloud Solution provider base in Hong Kong, with over 10+ years experience,
we providing better than good and lower cost service of CLoud Hosting (Cloud Server / Hosting / CDN)

Starting at $1.99, let's come to experience and enjoy our powerful cloud system.

Thanks for your time and appreciated to look arround our website.

http://www.dedicatedserver.com.hk/ 

Best Regards,
The 36cloud Team





If you do not wish to further receive this event message, email "subscriber&amp;lt; at &amp;gt;dedicatedserver.com.hk" to unsubscribe this message or revoe your email from the list.

Any questions, please feel free to contact our CS at cs&amp;lt; at &amp;gt;36cloud.com . 

We are highly appreciated your attention, and just come to experience our powerful cloud server service.

Best Regards,
The 36cloud CS team
Email: cs&amp;lt; at &amp;gt;36cloud.com 
Website: http://www.36cloud.com
**************************************************************************


If you do not wish to further receive this event message, email "subscriber&amp;lt; at &amp;gt;dedicatedserver.com.hk" to unsubscribe this message or revoe your email from the list.


&lt;/pre&gt;</description>
    <dc:creator>woody&lt; at &gt;dedicatedserver.com.hk</dc:creator>
    <dc:date>2012-04-02T13:07:39</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.embedded/3915">
    <title>Server Rental Service in HK</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.embedded/3915</link>
    <description>&lt;pre&gt;Dear All,

We have our own datacenter in Hong Kong &amp;amp; provide email/application/web rental service to clients.We are APNIC member &amp;amp; provide clean IP to clients.

Dell? PowerEdge? EnterpriseRack Mount Server
-Intel(R) Xeon(R) E3-1240 Processor (3.3GHz, 8M Cache, Turbo, 4C/8T, 80W)
-8GB RAM, 2x4GB, 1333MHz, DDR-3, Dual Ranked UDIMMs
-500GB, 3.5", 6Gbps SAS x 2
-Raid 1 Mirroring Protection
-Remote KVM (iDRAC6 Enterprise)

Dell(TM) PowerEdge(TM) R410 Rack Mount Server
-Intel(R) Quad Core E5606 Xeon(R) CPU, 2.13GHz, 4M Cache, 4.86 GT/s QPI
-4GB Memory (2x2GB), 1333MHz Dual Ranked RDIMMs Fully-Buffered
-500GB 7.2K RPM SATAII 3.5" Hard Drive x 2
-iDRAC6 Enterprise or Express (Remote KVM Management)

Every Dedicated Server Hosting Solution Also Includes: 
 
Software Specification 
- CentOS / Fedora / Debian / FreeBSD / Ubuntu / Redhat Linux 
- Full root-level access 
- Data Center Facilities 
- Shared Local &amp;amp; International Bandwidth 
- 2 IP Addresses Allocation 
- Un-interruptible Power Supply (UPS) backed up by private diesel generator 
- FM200¡§based fire suppression system 
- 24x7 CRAC Air Conditioning and Humidity Control 
- 24x7 Security Control 
- 24x7 Remote Hand Service 

Pls send us email for further information.Thanks,

Boris 
boris&amp;lt; at &amp;gt;cloudluca.com

If you do not wish to further receive this event message, email "borislamsv2&amp;lt; at &amp;gt;gmail.com" to unsubscribe this message or remove your email from the list.


&lt;/pre&gt;</description>
    <dc:creator>boris&lt; at &gt;cloudluca.com</dc:creator>
    <dc:date>2012-04-02T09:47:46</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.embedded/3914">
    <title>Hello</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.embedded/3914</link>
    <description>&lt;pre&gt;Hello xxxxx,
 How are you doing over there? My name is Laura, Please let
me know if i got the right address so we can open
communication, here is my email address I am waiting for
your confirmation with care Laura...
&lt;/pre&gt;</description>
    <dc:creator>laurarey111&lt; at &gt;hotmail.com</dc:creator>
    <dc:date>2012-03-27T13:30:20</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.embedded/3913">
    <title>Partnership</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.embedded/3913</link>
    <description>&lt;pre&gt;


Good Day, My name is Ling Tia Liu, I have a $17.3M business proposal from
my bank for you to handle with me. Reply for more info

&lt;/pre&gt;</description>
    <dc:creator>Ling Tia Liu</dc:creator>
    <dc:date>2012-03-27T21:00:24</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.embedded/3912">
    <title>Low Cost, 2 Ethernet Ports</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.embedded/3912</link>
    <description>&lt;pre&gt;Does anyone know of a device or a bare board, below $50 that has 2 
Ethernet Ports and runs Linux?

Brian
&lt;/pre&gt;</description>
    <dc:creator>Brian</dc:creator>
    <dc:date>2012-03-24T17:55:17</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.embedded/3911">
    <title>Ultimul sondaj</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.embedded/3911</link>
    <description>&lt;pre&gt;
http://www.max-media.ro/politica/conform-ultimelor-sondaje-mircea-cosma-isi-surclaseaza-contracandidatii.html
 To unsubscribe please send email to unsubscribe&amp;lt; at &amp;gt;cc.psd-prahova.ro
&lt;/pre&gt;</description>
    <dc:creator>cramer&lt; at &gt;cc.psd-prahova.ro</dc:creator>
    <dc:date>2012-03-22T15:11:23</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.embedded/3910">
    <title>Dedicated Hosting</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.embedded/3910</link>
    <description>&lt;pre&gt;Dedicated Hosting

We offer hardware and operating system options, all provisioned in world class Data Center facilities, providing businesses with a highly reliable IT foundation upon which to base their service infrastructure.

We offer Windows Dedicated Server Hosting, Linux Dedicated Server Hosting, and colocation service. Customers can easily customize platform configurations to their needs, selecting from options such as processors, memory, drive capacity, and storage controllers.

Our Data Center:

Over 20,000ft Data Center with Control Center
Holds Certificate of ISO/IEC 27001:2005
Standard of TIA-942 Tier 3+ Facilities
- FM200 and HSSD - strengthens fire resistance and limits potential damage
- CRAC system - maintains constant temperatures and relative humidity to minimize redundancy control
- Diesel Power Generator - provide full power outage support for entire data center operation with limitless diesel tank back up located in ground floor of building.
- UPS - offers N+1 full load configuration

For more details, please send email to boris&amp;lt; at &amp;gt;dedicatedserver.com.hk

Best Regards,

Boris


&lt;/pre&gt;</description>
    <dc:creator>boris&lt; at &gt;cloudluca.com</dc:creator>
    <dc:date>2012-03-19T10:56:44</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.kernel.embedded/3909">
    <title>FINAL NOTIFICATION  (FOR RELEASE OF FUND)</title>
    <link>http://comments.gmane.org/gmane.linux.kernel.embedded/3909</link>
    <description>&lt;pre&gt;Rolex 2012 Award Winner: Please Open the ATTACHMENT&lt;/pre&gt;</description>
    <dc:creator>Uk Rolex Company</dc:creator>
    <dc:date>2012-03-18T16:30:41</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.linux.kernel.embedded">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.linux.kernel.embedded</link>
  </textinput>
</rdf:RDF>

