Fuchsia (operating system)

Fuchsia is an open-source capability-based operating system developed by Google. In contrast to Google's Linux-based operating systems such as ChromeOS and Android, Fuchsia is based on a custom kernel named Zircon. It publicly debuted as a self-hosted git repository in August 2016 without any official corporate announcement. After years of development, its official product launch was in 2021 on the first-generation Google Nest Hub, replacing its original Linux-based Cast OS.

Fuchsia
The logo of the Fuchsia operating system is an illustration of a mobius strip, which is intended to be shaped after a lowercase letter "f".
The Fuchsia GUI
DeveloperGoogle
Written inRust, C++, C, Dart, Go, Python, assembly language[2][3]
OS familyCapability-based[1]
Working stateCurrent
Source modelOpen source
Initial releaseMay 25, 2021; 3 years ago (2021-05-25)
Latest releaseF16[4] Edit this on Wikidata / 14 February 2024
Repositoryfuchsia.googlesource.com
Available inEnglish
PlatformsARM64, x86-64
Kernel typeMicrokernel
Influenced byPink, Android, Unix kernel (but not Unix-like), iOS
Default
user interface
Ermine
LicenseBSD, MIT, Apache License 2.0
Official websitefuchsia.dev
Articles in the series
Taligent

Etymology

Fuchsia is named for the color fuchsia, which is a combination of pink and purple.[5][6] The name is a reference to two operating systems projects within Apple which influenced team members of the Fuchsia project: Taligent (codenamed "Pink") and iOS (codenamed "Purple").[7] The color-based naming scheme derives from the colors of index cards which Apple employees used to organize their ideas.[8]

The name of the color fuchsia is derived from the Fuchsia plant genus, which is derived from the name of botanist Leonhart Fuchs.

History

In August 2016, media outlets reported on a mysterious source code repository published on GitHub, revealing that Google was developing a new operating system named Fuchsia. No official announcement was made, but inspection of the code suggested its capability to run on various devices, including "dash infotainment" systems for cars, embedded devices like traffic lights, digital watches, smartphones, tablets, and PCs. Its architecture differs entirely from the Linux-based Android and ChromeOS due in part to its unique Zircon kernel, formerly named Magenta.[9][10][11][12][13][14]

In May 2017, Ars Technica wrote about Fuchsia's new user interface, an upgrade from its command-line interface at its first reveal in August. A developer wrote that Fuchsia "isn't a toy thing, it's not a 20% Project, it's not a dumping ground of a dead thing that we don't care about anymore". Though users could test Fuchsia, nothing "works", because "it's all a bunch of placeholder interfaces that don't do anything". They found multiple similarities between Fuchsia's interface and Android, including a Recent Apps screen, a Settings menu, and a split-screen view for viewing multiple apps at once.[15][16] Multiple media outlets wrote about the project's seemingly close ties to Android, with some speculating that Fuchsia might be an effort to "re-do"[17] or replace Android[18][19][20] in a way that fixes its problems.[15]

In January 2018, Google published a guide on how to run Fuchsia on Pixelbooks.[21][22] This was implemented successfully by Ars Technica, where experts were impressed with the progress, noting that things were then working, and were especially pleased by the hardware support and multiple mouse pointers.[23]

A Fuchsia device was added to the Android ecosystem in January 2019 via the Android Open Source Project (AOSP).[24][25] Google talked about Fuchsia at Google I/O 2019.[26] Hiroshi Lockheimer, Senior Vice President of Chrome and Android, described it as one of Google's experiments around new operating system concepts.[27]

On July 1, 2019, Google announced the official website of the development project with source code and documentation.[16] Roughly a year and a half later, on December 8, 2020, Google announced that it was "expanding Fuchsia's open-source model"[28] including making mailing lists public, introducing a governance model, publishing a roadmap, and using a public issue tracker.

In May 2021, Google employees confirmed that Fuchsia had been deployed in the consumer market for the first time, within a software update to the first-generation Google Nest Hub that replaces its existing Chromecast-based software. The update contains no user-facing changes to the device's software or user interface.[29][30] After the initial wave of updates to preview devices, the update was rolled out to all Nest Hub devices in August 2021.[31] Around February 21, 2022, the Chrome browser was fully working on Fuchsia.[32]

In January 2023, Google announced layoffs across the company with 16% of Fuchsia employees being impacted.[33] In May 2023, Google began rolling out a Fuchsia-based update to the second-generation Google Nest Hub.[34]

Overview

Most of Fuchsia is written in Rust.[35]

UI and mobile apps

Fuchsia's user interface and apps are written in Flutter, a software development kit allowing cross-platform development abilities for Fuchsia, Android, and iOS. Flutter produces apps from Dart. Escher is the Vulkan-based graphics rendering engine, with specific support for "volumetric soft shadows", an element that Ars Technica wrote, "seems custom-built to run Google's shadow-heavy 'Material Design' interface guidelines".[36] The Flutter cross-platform software development kit allows users to install parts of Fuchsia on Android devices.

A special version of Android Runtime for Fuchsia is planned to run from a FAR file, the equivalent of the Android APK.[37]

Kernel

LK was born out of @tkgeisel getting sick of writing the same mini-OS for bootloaders or test firmware again and again so he took some time off between jobs and did an open source version of the concept. It now lives in billions of bootloaders and other crazy places.

— Brian Swetland, one of the early Android OS engineers.[38]

Fuchsia is based on a new object-capability kernel, named Zircon after the mineral. Its codebase was derived from that of Little Kernel (LK) for embedded devices, aimed for low-resource uses on a wide variety of devices.[39] LK was developed by Travis Geiselbrecht, who had also co-authored the NewOS kernel used by Haiku, a free software reimplementation of BeOS.

Zircon is written mostly in C++, with some parts in C and assembly language.[3] It is composed of a kernel with a small set of user services, drivers, and libraries which are all necessary for the system to boot, communicate with the hardware, and load the user processes.[40] Its present features include handling threads, virtual memory, inter-process communication, and waiting for changes in the state of objects.[41]

It is heavily inspired by Unix kernels[citation needed] but differs greatly. For example, it does not support Unix-like signals, but incorporates event-driven programming and the observer pattern. Most system calls do not block the main thread. Resources are represented as objects rather than files, unlike traditional Unix systems in which everything is a file.

References