2018年10月24日 星期三

StarlingX - Open Source Edge Cloud infrastructure

StarlingX is open source software that provides cloud infrastructure for the most demanding applications in edge, industrial IOT, and telecom use cases. It is based on code contributed by Intel® and Wind River® (Titanium Cloud) and combines components of its own with leading open source projects such as OpenStack, Ceph, and OVS. 
Download the whitepaper to learn more about StarlingX.


2016年3月17日 星期四

Open Source RTOS for Internet of Things devices

From The Linux Foundation Announcement 

Open source Zephyr™ Project aims to deliver an RTOS; opens call for developers to help advance project for the smallest footprint IoT devices
SAN FRANCISCO – February 17, 2016 – The Linux Foundation, the nonprofit organization enabling mass innovation through open source, today announced theZephyr™ Project. This open source collaborative effort will unite leaders from across the industry to build a real-time operating system (RTOS) for the Internet of Things (IoT).
Early support for the Zephyr Project includes Intel® Corporation (including its acquired business groups Altera Corporation and Wind River), NXP Semiconductors N.V.(including its recent merger with Freescale), Synopsys, Inc. and UbiquiOS Technology Limited. Zephyr Project is inviting others interested in this technology to participate.
Industrial and consumer IoT devices require software that is scalable, secure and enables seamless connectivity. Developers also need the ability to innovate on top of a highly modular platform that easily integrates with embedded devices regardless of architecture. While Linux has proven to be a wildly successful operating system for embedded development, some IoT devices require an RTOS that addresses the very smallest memory footprints. This complements real-time Linux, which excels at data acquisition systems, manufacturing plants and other time-sensitive instruments and machines that provide the critical infrastructure for some of the world’s most complex computing systems.
“Developers today have many choices when it comes to platforms. The Zephyr Project will offer a modular, connected operating system to support the smallest footprint for IoT devices,” said Jim Zemlin, executive director, The Linux Foundation. “We invite developers to contribute to the Zephyr Project and to help advance a customizable embedded open source RTOS to advance IoT. By hosting this at The Linux Foundation, we look forward to the cross-project collaboration among Linux and this community.”
Modularity and security are key considerations when building systems for embedded IoT devices. The Zephyr Project prioritizes these features by providing the freedom to use the RTOS as is or to tailor a solution. The project’s focus on security includes plans for a dedicated security working group and a delegated security maintainer. Broad communications and networking support is also addressed and will initially include Bluetooth, Bluetooth Low Energy and IEEE 802.15.4, with plans to expand communications and networking support over time.
The Zephyr Project aims to incorporate input from the open source and embedded developer communities and to encourage collaboration on the RTOS. The project will also include powerful developer tools to help advance the Zephyr RTOS as a best-in-breed embedded technology for IoT. The Zephyr Project will include broad architecture support over time with the following platforms initially supported:
  • Arduino 101 (Intel® Curie™ Module containing x86 and Synopsys® ARC® EM cores);
  • Arduino Due (Atmel SAM3X8E ARM Cortex-M3 CPU);
  • Intel® Galileo™ Gen 2; and
  • NXP FRDM-K64F Freedom board (Kinetis K64F ARM® Cortex®-M4 MCU).
The Zephyr Project will also host a booth at Embedded World 2016, in Nuremberg, Germany, to showcase the technology through demos and in-booth sessions. A presentation titled, “An open source RTOS to change the face of IoT” will also be held in Session 19 on Wednesday, February 24 at 10:30 a.m. (CET). To learn more about how to connect with the project in person, please visit Booth 4-349. For those interested in the Zephyr Project, please visit: www.zephyrproject.org.
Comments from early supporters of the Zephyr Project
Intel
“Intel believes the Zephyr Project can make a significant impact in the connected and embedded device market. By providing a scalable, customizable, secure and open source OS, the Zephyr Project will address the evolving needs of connected device development. We plan to work with the Zephyr community to develop a best-of-breed OS that moves innovation forward.”
Mark Skarpness, vice president, software and services group director, open source technology center embedded operating system engineering at Intel
NXP
“We fully expect Zephyr will become one of the leading, easy-to-use IoT platforms, designed specifically with security in mind for the connected world. We are committed to providing developers with best-in-class tools and support needed to develop innovative solutions.”
Geoff Lees, senior vice president and general manager of microcontrollers at NXP
Synopsys
“The Zephyr project addresses the growing need for an industry-supported, open-source RTOS that meets the requirements of today’s resource-constrained and secure IoT devices. We are pleased to participate in this collaborative effort and contribute to advancing the project, including providing support for Synopsys ARC-based IoT IP platforms.”
John Koeter, vice president for IP and prototyping at Synopsys
About The Linux Foundation
The Linux Foundation is the organization of choice for the world's top developers and companies to build ecosystems that accelerate open technology development and commercial adoption. Together with the worldwide open source community, it is solving the hardest technology problems by creating the largest shared technology investment in history. Founded in 2000, The Linux Foundation today provides tools, training and events to scale any open source project, which together deliver an economic impact not achievable by any one company. More information can be found at www.linuxfoundation.org.

2015年4月8日 星期三

Intel IoT Gateway Solution

What is Intel IoT Gateway solution? It combines hardware and software benefit as a total solution, included connectivity, security and manageability. Intelligent gateways collect sensor data at the network edge, then act as a filter to analyze and normalize the data for sharing through the network and into the cloud. Intel has developed a family of gateway solutions that enables connectivity between new and legacy devices by integrating technologies for networking, embedded control, enterprise-grade security, and manageability. Intel® IoT Gateway development kits help you quickly develop, prototype, and deploy intelligent gateways. The kits also maintain interoperability between new intelligent infrastructure and legacy systems, including sensors and datacenter servers. The kits include pre-integrated and pre-validated hardware and software from Intel, McAfee, and Wind River, helping you reduce time-to-market and development costs. Intel® IoT Gateway development kit features 1)Standards-based interfaces for I/O, cellular, and Wi-Fi simplify communications down to sensors and controllers and up to datacenters and the cloud. 2)McAfee Embedded Control* maximizes security by dynamically monitoring and managing whitelists. 3)Wind River Intelligent Device Platform* XT and Wind River Workbench* provide a proven development environment. 4)Kits are complete with fully-configured compute board, wireless communications, security software, operating system, development tools, chassis, power supply, antennas, and documentation. More detail, see http://www.intel.com/content/www/us/en/embedded/design-tools/evaluation-platforms/gateway-solutions/gateway-development-kits-features.html

2011年12月12日 星期一

Want to add a cron into ESXi?

Recently our IT have one requirement to let ESXi automatic shutdown.
I do some study, and write a very simple script to finish this task.

Step1:
Add one script file in /bin/cshutdown.sh
The content is as follow.
#!/bin/ash
VMLIST=/tmp/vms
/bin/vim-cmd vmsvc/getallvms |awk '{print $1}' > /tmp/vms
while read VMID; do
if [[ $VMID == "Vmid" ]]; then
echo "Not a valid VMID"
else
/bin/vim-cmd vmsvc/power.shutdown ${VMID}
fi
done < ${VMLIST}
#Wait for 2 mins time for VM shutdown
sleep 120
busybox halt

Step2
Add this script into /var/spool/cron/crontabs/root
The content is below
30 20 12 12 * /bin/cshutdown.sh

The time format must be used UTC timezone, since VMware KB suggest don't suggest to use local timezone, so you must convert your localtime to UTC time.

Step3
Do following command to restart cron daemon
#kill `cat /var/run/crond.pid`
#busybox crond

This script still need to improve to double check the VM status is already shutdown well.
Maybe add this feature into next version.

2011年5月18日 星期三