Freebsd 11.0

Total Page:16

File Type:pdf, Size:1020Kb

Freebsd 11.0 SEE TEXT ONLY By John Baldwin •• 11.0 WELCOME To FreeBSD 11 The FreeBSD system is constantly Desktop and Laptop changing. FreeBSD 11 brings new FreeBSD 11 offers a variety of improvements for desk- features and fixes from two and a top and laptop users. First, a new system console driv- er is enabled by default. This driver is less VGA- and half years of active development. x86-centric than previous drivers. Rather than depend- Some of these changes have been ing on BIOS ROM support for VGA text modes, the merged to recent 10.x releases console renders text in software on framebuffers. This supports VGA adapters via graphics modes as well as such as 10.2 and 10.3, but most of the UEFI framebuffer. It also supports graphics them are brand new in 11. adapters that disable VGA compatibility when using 4 FreeBSD Journal higher resolution graphics modes such as modern tems that do not support VirtIO devices. In partic- Intel GPUs. Software text rendering allows the ular, Windows can be used out-of-the-box with- console driver to render any glyph, which in turn out requiring additional VirtIO device drivers dur- enables UTF-8 support. In addition, the in-kernel ing installation. graphics drivers include native support for Intel Finally, FreeBSD 11 includes support for PCI- graphics adapters on systems with fourth-genera- express native HotPlug. This includes handling of tion Core (“Haswell”) processors. runtime insertion and removal of ExpressCard • FreeBSD 11 includes broader support for wire- adapters in laptops as well as runtime insertion • less networks. The new iwm(4) driver supports and removal of PCI-express adapters in HotPlug- Intel integrated wireless adapters using the 3160, capable slots. 3165, 7260, 7265, and 8260 chipsets via 802.11a/b/g. These adapters are used on most Enterprise laptops with a fourth generation or later Intel FreeBSD isn’t purely a desktop OS, of course, and Core processor. The iwn(4) driver (used on laptops 11 includes several new features for the enterprise. with earlier Core processors) now supports 5-Ghz Along with support for PCI-express HotPlug, 11 channels as well as 802.11n. The ath(4) driver for also includes support for PCI Single-Root I/O Atheros adapters supports newer, 802.11n-capa- Virtualization (SR-IOV). This includes the ability to ble adapters with full 802.11n support in both create virtual functions (VFs) on supported device station and AP modes. The bwn(4) driver for drivers. These VFs can be passed to virtual Broadcom BCM43xx wireless adapters now sup- machines executing under the bhyve hypervisor to ports devices with an N-PHY (BCM4312 and enable direct access to hardware for I/O requests. BCM4321 chipsets). These adapters support The iSCSI stack introduced in FreeBSD 10 has 802.11n on 5-Ghz channels. The rsu(4) and gained several improvements in 11. FreeBSD now urtwn(4) drivers for Realtek USB adapters now supports iSCSI Extensions for RDMA (iSER) provid- fully support 802.11n on 2.4-Ghz channels. ing more efficient zero-copy I/O to SCSI data Support for UEFI has been improved in 11 as buffers. The cxgbei(4) driver supports hardware- well. The FreeBSD amd64 (also known as x86_64 accelerated offload of iSCSI connections on TOE- or x64) install media will now boot from either capable Chelsio adapters. Finally, the reroot utility UEFI or legacy mode. UEFI systems can now boot provides a means for booting a system with an directly from a ZFS filesystem. Other booting iSCSI root filesystem. improvements for both UEFI and legacy systems The local storage stack has also seen a raft of including support for ZFS boot environments and changes in 11. FreeBSD now includes a zfsd dae- whole-disk encryption via GELI are covered in mon to handle automatic activation of hot spare more detail in Allan Jude’s article in this issue. devices and other ZFS-related events not handled The bhyve hypervisor has several new features in the kernel. The sesutil(8) utility supports man- in FreeBSD 11. Guest machines can now be start- agement of disk enclosures, and the mpsutil(8) ed with UEFI firmware rather than using a user- utility permits management of LSI Fusion-MPT 2 space boot loader. This permits guest operating (mps(4)) and Fusion-MPT 3 (mpr(4)) SAS/SATA systems that support UEFI to use a native boot controllers. FreeBSD 11 includes support for plug- process. In addition, bhyve supports a graphics gable disk I/O scheduling in the CAM layer. A framebuffer when using UEFI along with addi- CAM front-end for NVMe disks is present in 11 tional device emulations for keyboard and mouse that can be used instead of the nvd(4) driver to input. These emulated devices are backed by a enable CAM-specific behavior with NVMe disks. VNC server. This allows guest operating systems FreeBSD 11 also includes new drivers for vari- to use a graphical interface. Users interact with ous hardware. The OFED Infiniband stack has these guests via a VNC client. Together with other been updated to version 2.1 including support for fixes, these changes permit Microsoft Windows to RoCE. The ixl(4) driver supports Intel XL710 40Gb run as a guest in a bhyve virtual machine. In addi- Ethernet adapters, and the mlx5en(4) driver sup- tion, bhyve in FreeBSD 11 includes a device emu- ports Mellanox ConnectX-4 and ConnectX-4LX lation for the Intel 82545 network adapter. This adapters. permits the use of networking with operating sys- Sept/Oct 2016 5 ARM the 64-bit RISC-V architecture. The RISC-V ISA for kernel mode is still in flux, but FreeBSD 11 sup- FreeBSD 10.1 was the first release to ship release ports version 1.9 of the draft privileged ISA speci- images for supported FreeBSD/arm systems. fication. FreeBSD/riscv boots to multiuser in both FreeBSD 11 has expanded support for ARM- the Spike simulator and QEMU emulator. based systems in several ways. First, ARM kernels now include a global Developer Friendly shared-page exported to all user processes. As a FreeBSD 11 is more developer friendly than ever. result, user processes on ARM systems now use a The llvm toolchain in the base system (including non-executable stack. In addition, user processes clang and lldb) has been updated to release are able to fetch the current time of day without 3.8.0. lldb is now included as part of the base system call overhead. system on FreeBSD/amd64 and FreeBSD/arm64. Second, the default floating point ABI for 32- The C++ runtime library (libc++) has also been bit ARMv6+ has been changed from soft-float to updated, which includes support for C++14. hard-float. This enables increased floating-point The entire base system is now built with debug performance on modern processors. symbols. These can be installed either at install Third, the virtual memory system in FreeBSD’s time or after install. These symbols permit devel- kernel supports transparent, 1-megabyte super opers to inspect state and single-step through pages on 32-bit ARMv6+ processors. As with base system libraries as well as application code. support for super pages on x86, this reduces the Threading support has also received several overhead of TLB misses. ARM systems are even improvements. The POSIX threads library now able to map the text segment of the C runtime supports process-shared primitives such as mutex- library with a super page. (The text segment on es and condition variables. An implementation of x86 is too small to use a super page mapping.) robust mutexes has also been added to the Fourth, FreeBSD 11 includes support for more thread library. In addition, internal improvements systems. Support for several Allwinner SoCs has to the debugging subsystem permit more robust been added including support for the Banana Pi, debugging of multithreaded processes. Cubieboard 1, and Cubieboard 2. 11 also Finally, the DTrace tracing utility is now sup- includes install images for the PandaBoard and ported on more platforms in 11, including ARM, Raspberry Pi 2 systems. MIPS, and RISC-V. Finally, FreeBSD 11 adds support for 64-bit ARMv8 processors via the FreeBSD/arm64 plat- Conclusion form. 11 boots out of the box on Cavium ThunderX systems and support for additional sys- FreeBSD’s community has put a ton of effort into tems will be available in future releases. The FreeBSD 11 over the past two and a half years, arm64 platform includes a global shared-page and it shows. Thank you to everyone who has enabling use of non-executable stacks and fast contributed, whether by testing snapshots, time-of-day queries as on the 32-bit ARM plat- reporting bugs, submitting patches, maintaining form. Support for super pages is already present patches, working with users on social media, in HEAD and will be available in FreeBSD 11.1. organizing conferences, etc. We hope you enjoy The FreeBSD package system includes over FreeBSD 11, and we look forward to your contri- 20,000 prebuilt packages for FreeBSD/arm64 that butions to FreeBSD 12! • are updated on a regular basis. JOHN BALDWIN joined the FreeBSD RISC-V Project as a committer in 1999. He has worked in several areas of RISC-V is a new, open-source instruc- the system including SMP infra- tion set architecture. Initially motivated structure, the network stack, virtu- by computer architecture research, it is 12.0 al memory, and device driver sup- freely available for all types of use port. John has served on the Core and Release Engineering teams including commercially produced CPUs.
Recommended publications
  • Shorten Device Boot Time for Automotive IVI and Navigation Systems
    Shorten Device Boot Time for Automotive IVI and Navigation Systems Jim Huang ( 黃敬群 ) <[email protected]> Dr. Shi-wu Lo <[email protected]> May 28, 2013 / Automotive Linux Summit (Spring) Rights to copy © Copyright 2013 0xlab http://0xlab.org/ [email protected] Attribution – ShareAlike 3.0 Corrections, suggestions, contributions and translations You are free are welcome! to copy, distribute, display, and perform the work to make derivative works Latest update: May 28, 2013 to make commercial use of the work Under the following conditions Attribution. You must give the original author credit. Share Alike. If you alter, transform, or build upon this work, you may distribute the resulting work only under a license identical to this one. For any reuse or distribution, you must make clear to others the license terms of this work. Any of these conditions can be waived if you get permission from the copyright holder. Your fair use and other rights are in no way affected by the above. License text: http://creativecommons.org/licenses/by-sa/3.0/legalcode Goal of This Presentation • Propose a practical approach of the mixture of ARM hibernation (suspend to disk) and Linux user-space checkpointing – to shorten device boot time • An intrusive technique for Android/Linux – minimal init script and root file system changes are required • Boot time is one of the key factors for Automotive IVI – mentioned by “Linux Powered Clusters” and “Silver Bullet of Virtualization (Pitfalls, Challenges and Concerns) Continued” at ALS 2013 – highlighted by “Boot Time Optimizations” at ALS 2012 About this presentation • joint development efforts of the following entities – 0xlab team - http://0xlab.org/ – OSLab, National Chung Cheng University of Taiwan, led by Dr.
    [Show full text]
  • Connecting Peripheral Devices to a Pandaboard Using
    11/16/2012 MARK CONNECTING PERIPHERAL DEVICES TO A BIRDSALL PANDABOARD USING PSI This is an application note that will help somebody use the Serial Programming Interface that is available on the OMAP-based PandaBoard’s expansion connector and also explains how use the SPI to connect with a real-time clock (RTC) chip. Ever since the PandaBoard came out, there has been a community of eager programmers constructing creative projects and asking questions about where else and what more they could do to extend the PandaBoard’s abilities. This application note will document a way to connect devices to a OMAP-based devise like a PandaBoard What is the Serial Programming Interface “Serial Programming Interface” (SPI) is a simple standard that was developed my Motorola. SPI can also be called “4-wire” interface (as opposed to 1, 2 or 3-wire serial buses) and it is sometimes referred to like that because the interface has four wires defined. The first is Master- Out-Slave-In (MOSI) and the second is the Master-In-Slave-Out (MISO). There is also a Serial Clock from the Master (SCLK) and a Chipselect Signal (CS#) which can allow for more than one slave devise to be able to connect with one master. Why do we want to use the SPI? There are various ways to connect a peripheral device to the PandaBoard like USB, SPI, etc... and SPI has some advantages. Using the Serial Programming Interface costs less in terms of power usage and it is easy to connect different devises to the PandaBoard and also to debug any problems that occur all while maintaining an acceptable performance rate.
    [Show full text]
  • Deliverable D4.1
    Deliverable D4.1 – State of the art on performance and power estimation of embedded and high-performance cores Anastasiia Butko, Abdoulaye Gamatié, Gilles Sassatelli, Stefano Bernabovi, Michael Chapman, Philippe Naudin To cite this version: Anastasiia Butko, Abdoulaye Gamatié, Gilles Sassatelli, Stefano Bernabovi, Michael Chapman, et al.. Deliverable D4.1 – State of the art on performance and power estimation of embedded and high- performance cores. [Research Report] LIRMM (UM, CNRS); Cortus S.A.S. 2016. lirmm-03168326 HAL Id: lirmm-03168326 https://hal-lirmm.ccsd.cnrs.fr/lirmm-03168326 Submitted on 12 Mar 2021 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Project Ref. Number ANR-15-CE25-0007 D4.1 – State of the art on performance and power estimation of embedded and high-performance cores Version 2.0 (2016) Final Public Distribution Main contributors: A. Butko, A. Gamatié, G. Sassatelli (LIRMM); S. Bernabovi, M. Chapman and P. Naudin (Cortus) Project Partners: Cortus S.A.S, Inria, LIRMM Every effort has been made to ensure that all statements and information contained herein are accurate, however the Continuum Project Partners accept no liability for any error or omission in the same.
    [Show full text]
  • Universidad De Guayaquil Facultad De Ciencias Matematicas Y Fisicas Carrera De Ingeniería En Networking Y Telecomunicaciones D
    UNIVERSIDAD DE GUAYAQUIL FACULTAD DE CIENCIAS MATEMATICAS Y FISICAS CARRERA DE INGENIERÍA EN NETWORKING Y TELECOMUNICACIONES DISEÑO DE UN SISTEMA INTELIGENTE DE MONITOREO Y CONTROL EN TIEMPO REAL PARA TANQUES DE ALMACENAMIENTO DE GASOLINA UTILIZANDO TECNOLOGÍA DE HARDWARE Y SOFTWARE LIBRE PARA PEQUEÑAS Y MEDIANAS EMPRESAS PROYECTO DE TITULACIÓN Previa a la obtención del Título de: INGENIERO EN NETWORKING Y TELECOMUNICACIONES AUTORES: Chamorro Salazar Hamilton Gabriel TUTOR: Ing. Jacobo Antonio Ramírez Urbina GUAYAQUIL – ECUADOR 2019 I REPOSITORIO NACIONAL EN CIENCIAS Y TECNOLOGIA FICHA DE REGISTRO DE TESIS TITULO: Diseño de un sistema inteligente de monitoreo y control en tiempo real para tanques de almacenamiento de gasolina utilizando tecnología de hardware y software libre para pequeñas y medianas empresas. REVISORES: Ing. Luis Espin Pazmiño, M.Sc Ing. Harry Luna Aveiga, M.Sc INSTITUCIÓN: Universidad de FACULTAD: Ciencias Matemáticas y Guayaquil Físicas. CARRERA: Ingeniería en Networking y Telecomunicaciones FECHA DE PUBLICACIÓN: N° DE PAGS: 143 AREA TEMÁTICA: Tecnología de la Información y Telecomunicaciones PALABRA CLAVES: Telemetría, microcomputadores, sensores, actuadores, sistema digital, tanques de almacenamiento, control en tiempo real RESUMEN: Este proyecto tiene como finalidad investigar y diseñar un sistema de monitoreo y control en tiempo real para tanques de almacenamiento de gasolina utilizando tecnología de hardware y software libre para las pequeñas y medianas empresas. El diseño permite una gestión eficiente de los
    [Show full text]
  • Development Boards This Product Is Rohs Compliant
    Development Boards This product is RoHS compliant. PANDABOARD DEVELOPMENT PLATFORM Features: • Core Logic: OMAP4460 applications Processor • Interface: (1) General Purpose Expansion Header • Wireless Connectivity: 802.11 b/g/n (WiLink™ 6.0) • Memory: 1GB DDR2 RAM (I2C, GPMC, USB, MMC, DSS, ETM) • Debug options: JTAG, UART/RS-232, 1 GPIO button NTL • Full Size SD/MMC card port • Camera Expansion Header • Graphics APIs: OpenGL ES v2.0, OpenGL ES v1.1, • 10/100 Ethernet • Display Connectors: HDMI v1.3, DVI-D. LCD Expansion OpenVGv1.1, and EGL v1.3 • USB: (1) USB 2.0 OTG port, (2) USB 2.0 High-speed port • Audio Connectors: 3.5" In/Out, HDMI audio out For quantities greater than listed, call for quote. MOUSER Pandaboard Price Description STOCK NO. Part No. Each 595-PANDABOARD UEVM4430G-01-00-00 Pandaboard ARM Cortex-A9 MPCore 1GHz OMAP4430 SoC Platform 179.00 595-PANDABOARD-ES UEVM4460G-02-01-00 Pandaboard ARM Cortex-A9 MPCore 1GHz OMAP4460 SoC Platform 185.00 Embedded Modules Embedded BEAGLEBOARD SOC PLATFORMS BeagleBoard.org develops low-cost, fan-less single-board computers based on low-power Texas Instruments processors featuring the ARM Cortex-A8 core with all of the expandability of today's desktop machines, but without the bulk, expense, or noise. BeagleBoard.org provides an open source development platform for A B the creation of high-performance embedded designs. Beagleboard C4 Features: Beagleboard xM Features: Beaglebone Features: • Over 1,200 Dhrystone MIPS using the superscalar • Over 2,000 Dhrystone MIPS using the Super-scalar
    [Show full text]
  • Improving the Beaglebone Board with Embedded Ubuntu, Enhanced GPMC Driver and Python for Communication and Graphical Prototypes
    Final Master Thesis Improving the BeagleBone board with embedded Ubuntu, enhanced GPMC driver and Python for communication and graphical prototypes By RUBÉN GONZÁLEZ MUÑOZ Directed by MANUEL M. DOMINGUEZ PUMAR FINAL MASTER THESIS 30 ECTS, JULY 2015, ELECTRICAL AND ELECTRONICS ENGINEERING Abstract Abstract BeagleBone is a low price, small size Linux embedded microcomputer with a full set of I/O pins and processing power for real-time applications, also expandable with cape pluggable boards. The current work has been focused on improving the performance of this board. In this case, the BeagleBone comes with a pre-installed Angstrom OS and with a cape board using a particular software “overlay” and applications. Due to a lack of support, this pre-installed OS has been replaced by Ubuntu. As a consequence, the cape software and applications need to be adapted. Another necessity that emerges from the stated changes is to improve the communications through a GPMC interface. The depicted driver has been built for the new system as well as synchronous variants, also developed and tested. Finally, a set of applications in Python using the cape functionalities has been developed. Some extra graphical features have been included as example. Contents Contents Abstract ..................................................................................................................................................................................... 5 List of figures .........................................................................................................................................................................
    [Show full text]
  • Low-Power High Performance Computing
    Low-Power High Performance Computing Michael Holliday August 22, 2012 MSc in High Performance Computing The University of Edinburgh Year of Presentation: 2012 Abstract There are immense challenges in building an exascale machine with the biggest issue that of power. The designs of new HPC systems are likely to be radically different from those in use today. Making use of new architectures aimed at reducing power consumption while still delivering high performance up to and beyond a speed of one exaflop might bring about greener computing. This project will make use of systems already using low power processors including the Intel Atom and ARM A9 and compare them against the Intel Westmere Xeon Processor when scaled up to higher numbers of cores. Contents 1 Introduction1 1.1 Report Organisation............................2 2 Background3 2.1 Why Power is an Issue in HPC......................3 2.2 The Exascale Problem..........................4 2.3 Average use................................4 2.4 Defence Advanced Research Projects Agency Report..........5 2.5 ARM...................................6 2.6 Measures of Energy Efficiency......................6 3 Literature Review8 3.1 Top 500, Green 500 & Graph 500....................8 3.2 Low-Power High Performance Computing................9 3.2.1 The Cluster............................ 10 3.2.2 Results and Conclusions..................... 10 3.3 SuperMUC................................ 11 3.4 ARM Servers............................... 12 3.4.1 Calexeda EnergyCoreTM & EnergyCardTM ........... 12 3.4.2 The Boston Viridis Project.................... 12 3.4.3 HP Project Moonshot....................... 13 3.5 The European Exascale Projects..................... 13 3.5.1 Mont Blanc - Barcelona Computing Centre........... 13 3.5.2 CRESTA - EPCC......................... 14 4 Technology Review 15 4.1 Intel Xeon................................
    [Show full text]
  • Openbricks Embedded Linux Framework - User Manual I
    OpenBricks Embedded Linux Framework - User Manual i OpenBricks Embedded Linux Framework - User Manual OpenBricks Embedded Linux Framework - User Manual ii Contents 1 OpenBricks Introduction 1 1.1 What is it ?......................................................1 1.2 Who is it for ?.....................................................1 1.3 Which hardware is supported ?............................................1 1.4 What does the software offer ?............................................1 1.5 Who’s using it ?....................................................1 2 List of supported features 2 2.1 Key Features.....................................................2 2.2 Applicative Toolkits..................................................2 2.3 Graphic Extensions..................................................2 2.4 Video Extensions...................................................3 2.5 Audio Extensions...................................................3 2.6 Media Players.....................................................3 2.7 Key Audio/Video Profiles...............................................3 2.8 Networking Features.................................................3 2.9 Supported Filesystems................................................4 2.10 Toolchain Features..................................................4 3 OpenBricks Supported Platforms 5 3.1 Supported Hardware Architectures..........................................5 3.2 Available Platforms..................................................5 3.3 Certified Platforms..................................................7
    [Show full text]
  • Ten (Or So) Small Computers
    Ten (or so) Small Computers by Jon "maddog" Hall Executive Director Linux International and President, Project Cauã 1 of 50 Copyright Linux International 2015 Who Am I? • Half Electrical Engineer, Half Business, Half Computer Software • In the computer industry since 1969 – Mainframes 5 years – Unix since 1980 – Linux since 1994 • Companies (mostly large): Aetna Life and Casualty, Bell Labs, Digital Equipment Corporation, SGI, IBM, Linaro • Programmer, Systems Administrator, Systems Engineer, Product Manager, Technical Marketing Manager, University Educator, Author, Businessperson, Consultant • Taught OS design and compiler design • Extremely large systems to extremely small ones • Pragmatic • Vendor and a customer Warnings: • This is an overview guide! • Study specifications of each processor at manufacturer's site to make sure it meets your needs • Prices not normally listed because they are all over the map...shop wisely Definitions • Microcontroller vs Microprocessor • CPU vs “Core” • System On a Chip (SoC) • Hard vs Soft Realtime • GPIO Pins – Digital – Analog • Printed Circuit Board (PCB) • Shield, Cape, etc. • Breadboard – Patch cables Definitions (Cont.) • Disks – IDE – SATA – e-SATA • Graphical Processing Unit (GPU) • Field Programmable Gate Array (FPGA) • Digital Signal Processing Chips (DSP) • Unless otherwise specified, all microprocessors are ARM-32 bit Still More Definitions! • Circuit Diagrams • Surface Mount Technology – large robots – Through board holes in PCBs – Surface mount • CAD Files – PCB layout – “Gerbers” for
    [Show full text]
  • Smart Walker IV
    Multidisciplinary Senior Design Conference Kate Gleason College of Engineering Rochester Institute of Technology Rochester, New York 14623 P16041: Smart Walker IV Alex Synesael Alexei Rigaud Electrical Engineering Electrical Engineering Danielle Stone Stephen Hayes Electrical Engineering Electrical Engineering ABSTRACT Diagnostic medical technology in its current form is typically expensive and intrusive to a patient’s lifestyle. The purpose of the Smart Walker IV project was to finalize a robotic assistive walker prototype capable of collecting long-term diagnostic information about a patient’s health and activities. This gives care providers a more complete image of their health than can be achieved during a relatively short visit. In addition to the diagnostic features, Smart Walker is capable of autonomous motion such that it can provide emergency support in the event of a fall, or contact the appropriate third party support. Smart Walker IV is a culmination of three previous prototype versions spanning 2013 through 2015, and is intended to serve as the final revision before the platform is ready to be utilized as a graduate research platform for robotic assistive medical diagnostics. The goal of Smart Walker IV is to complete the build and integration phases from where the previous Smart Walker III team ended. The project progressed through analysis and completion of the existing systems, the design and testing of new diagnostic subsystems, and finally complete system integration and qualification. BACKGROUND Smart Walker began as a diagnostic tool for elderly people, and has since evolved into a research platform. The Smart Walker can take diagnostic measurements, as well as measure vital signs and detect when a patient has fallen.
    [Show full text]
  • An Evaluation of the Pandaboard As a Set-Top-Box in an Android Environment
    UPTEC IT 11 016 Examensarbete 30 hp December 2011 An Evaluation of the PandaBoard as a Set-Top-Box in an Android Environment Torbjörn Svangård 2 Abstract An Evaluation of the PandaBoard as a Set-Top-Box in an Android Enviroment Torbjörn Svangård Teknisk- naturvetenskaplig fakultet UTH-enheten The aim of this thesis is to evaluate the potential of the PandaBoard to take the role as an Android based Set-Top-Box (STB). A STB is a device that converts an external Besöksadress: signal into viewable video on a connected television. The PandaBoard is a low-cost Ångströmlaboratoriet Lägerhyddsvägen 1 development platform intended for mobile software development and is based on a Hus 4, Plan 0 chipset, OMAP4, developed and manufactured by Texas Instruments. Postadress: During the thesis implementation phase a PandaBoard was configured to run Android; Box 536 751 21 Uppsala a popular operating system mainly used in smartphones. A DVB-T2 device was attached to one of the USB-ports on the PandaBoard in order to recieve terrestrial Telefon: digital television broadcasts. 018 – 471 30 03 Telefax: The main obstacle was the fact that despite very promising video accelerated 018 – 471 30 00 hardware specifications on the PandaBoard, they were not available for evalutaion. During the thesis pilot study it became clear that hardware accelerated video playback Hemsida: was not yet supported for the PandaBoard Android-port. Programmable OpenGL ES http://www.teknat.uu.se/student 2.0 shaders was used instead in order to offload the PandaBoard CPU as much as possible. Although this thesis may not be conclusive in terms of the impressive video accelration hardware present on the PandaBoard, the thesis will demonstrate what can be achieved with a dual core ARM Cortex-A9 processor together with OpenGL ES 2.0 on a system running the Android operating system.
    [Show full text]
  • Call Your Netbsd
    Call your NetBSD BSDCan 2013 Ottawa, Canada Pierre Pronchery ([email protected]) May 17th 2013 Let's get this over with ● Pierre Pronchery ● French, based in Berlin, Germany ● Freelance IT-Security Consultant ● OSDev hobbyist ● NetBSD developer since May 2012 (khorben@) Agenda 1.Why am I doing this? 2.Target hardware: Nokia N900 3.A bit of ARM architecture 4.NetBSD on ARM 5.Challenges of the port 6.Current status 7.DeforaOS embedded desktop 8.Future plans 1. A long chain of events ● $friend0 gives me Linux CD ● Computer not happy with Linux ● Get FreeBSD CD shipped ● Stick with Linux for a while ● Play with OpenBSD on Soekris hardware ● $friend1 gets Zaurus PDA ● Switch desktop and laptop to NetBSD ● I buy a Zaurus PDA ● I try OpenBSD on Zaurus PDA 1. Chain of events, continued ● $gf gets invited to $barcamp ● I play with my Zaurus during her presentation ● $barcamp_attender sees me doing this ● Begin to work on the DeforaOS desktop ● Get some of it to run on the Zaurus ● Attend CCC Camp near Berlin during my bday ● $gf offers me an Openmoko Neo1973 ● Adapt the DeforaOS desktop to Openmoko 1. Chain of events, unchained ● $barcamp_attender was at the CCC Camp, too ● We begin to sell the Openmoko Freerunner ● Create a Linux distribution to support it ● Openmoko is EOL'd and we split ways ● $friend2 gives me sparc64 boxes ● Get more involved with NetBSD ● Nokia gives me a N900 during a developer event ● $barcamp_attender points me to a contest ● Contest is about creating an OSS tablet 1. Chain of events (out of breath) ● Run DeforaOS on NetBSD on the WeTab tablet ● Co-win the contest this way ● $friend3 boots NetBSD on Nokia N900 ● Give a talk about the WeTab tablet ● Promise to work on the Nokia N900 next thing ● Apply to BSDCan 2013 ● Taste maple syrup for the first time in Canada ● Here I am in front of you Pictures: Sharp Zaurus Pictures: Openmoko Freerunner Pictures: WeTab Pictures: DeforaOS 2.
    [Show full text]