+ All Categories
Home > Documents > AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest...

AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest...

Date post: 05-Aug-2020
Category:
Upload: others
View: 4 times
Download: 0 times
Share this document with a friend
24
AsteroidOS under the hood Architecture of an embedded Linux system Florent Revest April 26, 2017
Transcript
Page 1: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

AsteroidOS under the hoodArchitecture of an embedded Linux system

Florent RevestApril 26, 2017

Page 2: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

Overview

An operating system

And a community

AsteroidOS under the hood - Florent Revest

Page 3: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

General Presentation

Embedded Linux System

Linux Kernel & Standard Daemons (systemd, udev, bluez, connman...)

AsteroidOS under the hood - Florent Revest

Page 4: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

General Presentation

Embedded Linux System

Hardware specificities: UI, Bluetooth LE, Sensors, Battery, USB, CPU...

AsteroidOS under the hood - Florent Revest

Page 5: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

Table Of Contents

1. Graphic Stack

2. Bluetooth Stack

3. Other Stacks

4. Build System

AsteroidOS under the hood - Florent Revest

Page 6: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

Graphic Stack

Page 7: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

QtQuick apps

• Declarative QML• Imperative JavaScript• Known by mobile Linux devs• QML-Asteroid provided• Extended with Qt modules

AsteroidOS under the hood - Florent Revest

Page 8: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

Wayland

• Apps using Wayland-EGL• Wayland Compositor = DisplayServer + WM + Desktop

• asteroid-launcher compositor• QtWayland Compositor API

AsteroidOS under the hood - Florent Revest

Page 9: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

Qt Platform Abstraction

• No FB, KMS, DRM etc...• QPAs plugins since Qt5• HWComposer from SailfishOS• Uses Android drivers

AsteroidOS under the hood - Florent Revest

Page 10: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

Libhybris

• Dirty hack... But works• Bionic linker in a glibc lib• Loads Android HALs for ex.• → Android blobs and kernel• Used by SailfishOS, LuneOS,Ubuntu Touch & others...

AsteroidOS under the hood - Florent Revest

Page 11: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

Bluetooth Stack

Page 12: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

Bluetooth Services

• Notifications sync.• Music remote control• Weather forecast• Remote screenshots• Time sync.

AsteroidOS under the hood - Florent Revest

Page 13: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

Asteroid-Btsyncd, DBus

• DBus Multiplexer• MPRIS, libnotify or DConf• Uses BlueZ’s BLE DBus API

AsteroidOS under the hood - Florent Revest

Page 14: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

BlueZ, Linux BT Subsystem

• Services API• Characteristics API• Descriptor API• Advertisement API• Agent API• bluetoothd and Linux’s HCI

AsteroidOS under the hood - Florent Revest

Page 15: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

Synchronization Clients

• AsteroidOSSync• AsteroidOSLinux• Others welcome• Implements profiles

AsteroidOS under the hood - Florent Revest

Page 16: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

Other Stacks

Page 17: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

Sensors

• Accel., Gyro., Magneto. etc...• QtSensors API• SensorFW backend• Hybris backends

AsteroidOS under the hood - Florent Revest

Page 18: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

Haptics

• NGFD API• QtFeedback API• Ffmemless backend• Hybris backend

AsteroidOS under the hood - Florent Revest

Page 19: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

Audio

• Personal assistant ?• QtMultimedia• PulseAudio• Hybris backend

AsteroidOS under the hood - Florent Revest

Page 20: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

Build System

Page 21: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

OpenEmbedded / Yocto

• Yocto by Linux Foundation• OpenEmbedded build system• Images generated from• Packages built from• Recipes gathered in• Layers (BSP or Apps)

AsteroidOS under the hood - Florent Revest

Page 22: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

Apps Layers

• meta-asteroid• meta-qt5• meta-smartphone• meta-openembedded• oe-core/meta

AsteroidOS under the hood - Florent Revest

Page 23: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

BSP Layers

• meta-*-hybris BSP• Provides /system and kernel• anthias, bass, dory, sparrow,sprat, sturgeon, swift, tetra,wren...

AsteroidOS under the hood - Florent Revest

Page 24: AsteroidOS under the hood - foss-north · Architecture of an embedded Linux system Florent Revest April 26, 2017. Overview An operating system And a community AsteroidOS under the

Thanks! Questions?

AsteroidOS under the hood - Florent Revest

#asteroid asteroidos.org @AsteroidOS


Recommended