* extensions framework (née "fragments")
- this should actually change nothing at this point, just add capabilities
- the framework is implemented in lib/extensions.sh
- the "if function x exists then call x" replaced with call_extension_method()
- +inline documentation
- +compatibility names
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions framework; meta-extensions: auto-docs and sample extension gen
- 2 extensions dealing with extensibility itself
- detect-unused-extensions: shows which extensions are enabled, but never called.
- gen-sample-extension-docs: generates a sample empty extension & Markdown documentation for extensions
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* new extension methods and features via config variables in core Armbian
- `SKIP_EXTERNAL_TOOLCHAINS=yes` - does not download or use any linaro toolchains, only build host-installed ones
- `SKIP_BOOTSPLASH=yes` - does not patch kernel for splash file
- `EXTRA_BSP_NAME=xyz` - allows for BSP variants, useful for when extensions modify the BSP
- `EXTRA_ROOTFS_MIB_SIZE=x` - add x mib's to rootfs size, for use with very small images
- `KERNEL_EXTRA_TARGETS` - what extra targets to make kernel for, default to "modules dtbs"
- `BOOTCONFIG=none` - does not build nor install u-boot; also doesn't handle bootscripts et al
- `unset KERNELSOURCE` - does not build nor install kernel, nor build initrd, nor build nor install firmware
- `ARMHF_ARCH=skip` - does not add armhf to apt/dpkg, thus pure arm64
- `SKIP_ARMBIAN_REPO=yes` - results in armbian.list.disabled in the final image
- define `APT_EXTRA_DIST_PARAMS` with apt-cacher-ng options and use it for `PACKAGE_LIST_INSTALL/REMOVE` et al
- initial support for targeting x86/amd64 UEFI and BIOS
- some do's/don'ts for x86/amd64, like a different `UBUNTU_MIRROR` default
- GPT/EFI(ESP) partitions (fat, `UEFISIZE=256` to enable, mount `UEFI_MOUNT_POINT=/boot/efi`, first on disk but ends
up at `$uefipart`=15)
- GPT/BIOS partitions (fat, `BIOSSIZE=1` to enable, second on disk but ends up at partition 14)
- `UEFI_FS_LABEL="armbiefi"` - to set the FAT label for the EFI partition, visible in Win/Mac
- hard-requires gdisk package host-side
- add add_host_dependencies() extension method; fill `EXTRA_BUILD_DEPS="pkg pkg2"` to install to host before toolchains
download
- add pre_prepare_partitions() extension method, for custom partition size calculations
- add create_partition_table() extension method, used to do full-custom partitioning if `USE_HOOK_FOR_PARTITION=yes`
- add post_create_partitions() extension method, mostly for easy debugging
- add post_write_sdcard() extension method, where you can also set `SKIP_VERIFY=yes` to skip sdcard verification
- add post_install_kernel_debs() extension method.
- multiple fixes to bsp to avoid spurious errors when files are not where it expects
- v4: detect `update-initramfs` failure and abort build with useful message if it does
- v4: show useful stacktrace in `exit_with_error`
- if `ERROR_DEBUG_SHELL=yes`, drop into a shell before unmounting/deleting everything, so we can inspect what went wrong
- v4: display a message before `apt-get remove PACKAGE_LIST_BOARD_REMOVE` packages, so any errors while removing are easy to understand
- v4: preserve kernel .config's dates when copying
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions framework; refactor tool fetching/building into extensions
- a few examples of core refactoring using extensions
- sunxi-tools extension, enabled by 2 different sunxi family includes ("reuse" example)
- marvel-tools extension, enabled by 2 different mvebu family includes
- rkbin-tools extension, enabled by rockship64_common family include
- amlogic-fip/c2-blobs stuff refactored directly into meson64_common.inc ("single-use" example)
- removed the 'testings' fetch_from_repo completely since not used anywhere.
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* .wip's for UEFI arm64 and UEFI/BIOS x86 via new GRUB extension
- v3: added `growroot`-awareness to `armbian-resize-filesystem`
- the partition-growing part of `armbian-resize-filesystem` does not deal correctly with the UEFI layout
- `growroot` is installed on UEFI images by default, that handles growing partition during initramfs
- now `armbian-resize-filesystem` handles `resize2fs` only, and works.
- v4: reworked UEFI board/family/include structure:
- use Distro's `linux-generic` kernel only for `current`
- `edge` now builds it's own pure-mainline `5.15.y` kernel, for both x86 and arm64
- `.config` taken from Ubuntu, probably needs tuning for EXTRAWIFI=yes et al
- v4: introduce `SKIP_KERNEL_SYMLINK=yes`, tested in `builddeb`
- to avoid symlinking kernel; u-boot likes it, but grub and flash-kernel hates it
- v5: many fixes
- v7: more small fixes.
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* .wip for the RaspberryPi 4B via new flash-kernel extension
- this does not build it's own kernel "yet", but uses default linux-raspi kernel from Ubuntu
- flash-kernel is not really a bootloader
- it just prepares kernel et al a FAT partition for booting by the RPi4b bootloader
- flash-kernel is standard Debian package, but has only been tested on Ubuntu releases
- it is really only known-working since Hirsute release.
- Debian's rpi kernel is armhf only, so out of scope here, at least until we add source-built kernels.
- v3: fixed focal rootfs build. untested.
- v3: better variable names, preparing for source-built kernel.
- v5: new edge build with pure mainline kernel.
- v6: many fixes and some hacks for packaging and layout, also firmware (using Ubuntu's)
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* Added first patch to edge x86 related to wifi drivers
* extensions: leave hostapd alone; remove hackish ext; block reentrancy
- package-list-utils does not belong in this PR
- grub or bcm2711 is not the place to remove hostapd
- block recursive enable_extension() calls, for now.
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* gen-sample-extension-docs: fix: avoid counter in generated sample
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions: dependencies: enable_extension() in extensions with a stack
- and better stacktraces, I hope
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* Remove code from package list since we don't have it in repository
Adjust kernel config to disable driver that needs further polishing.
* Allow amd64 to build the same desktops as aarch64. We only have this limit for armhf, where some desktops don't work
* amd64: allow building amd64 on aarch64 with system toolchain
- conditionally add gcc-x86-64-linux-gnu to hostdeps
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* add libelf-dev directly to hostdeps (and Dockerfile), remove extension
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* packaging: remove SKIP_KERNEL_SYMLINK hack, fix the root cause
- which was the missing $image_name for non-arm64 & non-arm, so: x86 for example
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* grub: really obliterate u-boot stuff from BSP
- for now. soon we'll refactor u-boot so not have to do this
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* flash-kernel: really obliterate u-boot stuff from BSP
- for now. soon we'll refactor u-boot so not have to do this
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions: add host_dependencies_ready() hook
- this passes FINAL_HOST_DEPS containing all hostdeps for the run after they're installed
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* Add verification functions for correct selection.
* If UEFI Skip symlink creation
* Do not create dtb package for amd64
* Skip scripts folder cleaning if build process native.
Skip creating postinst prerm scripts for headers.
* Skip applying headers-debian-byteshift.patch if build native
* Fix architecture syntax as x86_64
* Revert "amd64: allow building amd64 on aarch64 with system toolchain"
This reverts commit 0c5ee20bb1.
* Compare architectures before starting compilation.
Signed-off-by: The-going <48602507+The-going@users.noreply.github.com>
* extensions: cleanups after fixes by the-Going
- packaging:
- there is _no need_ anymore for the symlink hack, CONFIG_EFI or no. But check is great, see below
- it's not `amd64` that has no DTB's, it's all UEFI, thus: `is_enabled CONFIG_EFI`, thanks!
- Explicitly disallow "reverse cross compile" in amd64.conf.
- whitespace-only-deletions: revert. we shall shellfmt the whole thing one day, but not today.
- fix a few syntax warnings in newly introduced code (floating `$ARCH` vs `"${ARCH}`) - blame shellcheck
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* packaging: fix: turns out a lot of boards have CONFIG_EFI=y, can't use that for dtb/no-dtb decision.
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* grub: remove debug
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* firmware: allow installing `armbian-firmware-full`; make it really full
- can now use `BOARD_FIRMWARE_INSTALL="-full"` to install full firmware for the board. enable for UEFI.
- don't rely on KERNELSOURCE for firmware-related decisions. introduce `INSTALL_ARMBIAN_FIRMWARE` which defaults to `yes`
- rpi4b/flash-kernel: disable Armbian firmware; we need linux-firmware-raspi2, which conflicts.
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions: log to /${LOG_SUBPATH}/ instead of fixed /debug/
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions: introduce cleanup_extension_manager() called by build-all-ng's unset_all()
- to reset/unset everything done by the the initializer, so build can run again
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions: remove 'global' logging, for use with build_all_ng
- enable_extensions() will have to live on without logging to file. it's just too early.
- now init EXTENSION_MANAGER_TMP_DIR in initialize_extension_manager()
- now init EXTENSION_MANAGER_LOG_FILE in initialize_extension_manager()
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions: build-all-ng.sh bugfix due to extension's debug to stdout
- extensions (among other things) can produce output to stdout when activated
- fix: check_hash() produced "idential" (sic, now changed to IDENTICAL) to stdout as a trigger
- debugging output got mixed with "idential", rendering hash cache void for families that used extensions
- eg: sunxi, others
- fix is to send stdout to the bitbucket when sourcing the board & arch config files
- proper fix would be stop using stdout in this case and use return code for check_hash()
- one day soon
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* Add CI build targets
Co-authored-by: Igor Pecovnik <igor.pecovnik@gmail.com>
Co-authored-by: The-going <48602507+The-going@users.noreply.github.com>
1101 lines
101 KiB
Plaintext
1101 lines
101 KiB
Plaintext
#################################################################################################################################################################
|
|
# board branch release desktop|cli|minimal stable|beta create images DE DE config Comma delimited app groups #
|
|
#################################################################################################################################################################
|
|
|
|
# Bananapi M1 / M1+ A20
|
|
bananapi current focal minimal stable yes
|
|
bananapi current buster cli stable yes
|
|
bananapi current bullseye cli stable yes
|
|
bananapi current buster desktop stable yes xfce config_base browsers
|
|
bananapi current focal cli stable yes
|
|
bananapi current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
bananapi edge jammy cli stable no
|
|
|
|
|
|
# Bananapi Pro A20
|
|
bananapipro current focal minimal stable yes
|
|
bananapipro current buster cli stable yes
|
|
bananapipro current bullseye cli stable yes
|
|
bananapipro current buster desktop stable yes xfce config_base browsers
|
|
bananapipro current focal cli stable yes
|
|
bananapipro current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
bananapipro edge jammy cli stable no
|
|
|
|
|
|
# Bananapi M2+ H3
|
|
bananapim2plus current bullseye cli stable yes
|
|
bananapim2plus current focal cli stable yes
|
|
bananapim2plus current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
bananapim2plus edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
|
|
|
|
# Bananapi M2 Zero H2+
|
|
bananapim2zero current focal minimal stable yes
|
|
bananapim2zero current buster cli stable yes
|
|
bananapim2zero current bullseye cli stable yes
|
|
bananapim2zero current focal cli stable yes
|
|
bananapim2zero edge jammy cli stable yes
|
|
|
|
|
|
# Bananapi M2U R40
|
|
bananapim2ultra current focal minimal stable yes
|
|
bananapim2ultra current buster cli stable yes
|
|
bananapim2ultra current bullseye cli stable yes
|
|
bananapim2ultra current focal cli stable yes
|
|
bananapim2ultra edge jammy cli stable yes
|
|
|
|
|
|
# Bananapi M3
|
|
bananapim3 current focal minimal stable yes
|
|
bananapim3 current buster cli stable yes
|
|
bananapim3 current bullseye cli stable yes
|
|
bananapim3 current focal cli stable yes
|
|
bananapim3 edge jammy cli stable yes
|
|
|
|
|
|
# Bananapi M64
|
|
bananapim64 current focal minimal stable yes
|
|
bananapim64 current buster cli stable yes
|
|
bananapim64 current bullseye cli stable yes
|
|
bananapim64 current focal cli stable yes
|
|
bananapim64 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
bananapim64 edge jammy cli stable no
|
|
|
|
|
|
# Bananapi R2
|
|
bananapir2 legacy buster cli stable yes
|
|
bananapir2 legacy bullseye cli stable yes
|
|
bananapir2 legacy jammy cli stable yes
|
|
|
|
|
|
# Helios4
|
|
helios4 current focal minimal stable yes
|
|
helios4 current buster cli stable yes
|
|
helios4 current bullseye cli stable yes
|
|
helios4 current focal cli stable yes
|
|
helios4 edge jammy cli stable yes
|
|
|
|
|
|
# Helios64
|
|
helios64 current focal minimal stable yes
|
|
helios64 legacy buster cli stable yes
|
|
helios64 current buster cli stable yes
|
|
helios64 current bullseye cli stable yes
|
|
helios64 current focal cli stable yes
|
|
helios64 edge jammy cli stable yes
|
|
|
|
|
|
# Clearfog Base
|
|
clearfogbase current focal minimal stable yes
|
|
clearfogbase current buster cli stable yes
|
|
clearfogbase current bullseye cli stable yes
|
|
clearfogbase current focal cli stable yes
|
|
|
|
|
|
# Clearfog Pro
|
|
clearfogpro current focal minimal stable yes
|
|
clearfogpro current buster cli stable yes
|
|
clearfogpro current bullseye cli stable yes
|
|
clearfogpro current focal cli stable yes
|
|
|
|
|
|
# Cubieboard1
|
|
cubieboard current focal minimal stable yes
|
|
cubieboard current buster cli stable yes
|
|
cubieboard current bullseye cli stable yes
|
|
cubieboard current focal cli stable yes
|
|
cubieboard edge jammy cli stable yes
|
|
|
|
|
|
# Cubieboard2
|
|
cubieboard2 current focal minimal stable yes
|
|
cubieboard2 current buster cli stable yes
|
|
cubieboard2 current bullseye cli stable yes
|
|
cubieboard2 current focal cli stable yes
|
|
cubieboard2 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
cubieboard2 edge jammy cli stable yes
|
|
|
|
|
|
# Cubietruck
|
|
cubietruck current focal minimal stable yes
|
|
cubietruck current buster cli stable yes
|
|
cubietruck current bullseye cli stable yes
|
|
cubietruck current focal cli stable yes
|
|
cubietruck current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
cubietruck edge jammy cli stable yes
|
|
|
|
|
|
# Cubox-i
|
|
cubox-i current focal minimal stable yes
|
|
cubox-i current buster cli stable yes
|
|
cubox-i current bullseye cli stable yes
|
|
cubox-i current focal cli stable yes
|
|
cubox-i current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
cubox-i current jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
cubox-i edge jammy cli stable yes
|
|
|
|
|
|
# Espressobin
|
|
espressobin current focal minimal stable yes
|
|
espressobin current buster cli stable yes
|
|
espressobin current bullseye cli stable yes
|
|
espressobin current focal cli stable yes
|
|
espressobin edge jammy cli stable yes
|
|
|
|
|
|
# Firefly rk3399
|
|
firefly-rk3399 current focal minimal stable yes
|
|
firefly-rk3399 legacy buster desktop stable yes xfce config_base browsers
|
|
firefly-rk3399 current buster cli stable yes
|
|
firefly-rk3399 current bullseye cli stable yes
|
|
firefly-rk3399 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
firefly-rk3399 current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
firefly-rk3399 current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
firefly-rk3399 edge jammy cli stable yes
|
|
|
|
|
|
#Friendlyelec SOM RK3399
|
|
fe-som-rk3399 current focal minimal stable yes
|
|
fe-som-rk3399 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
fe-som-rk3399 edge jammy cli stable yes
|
|
|
|
|
|
# Khadas Vim1
|
|
khadas-vim1 current focal minimal stable yes
|
|
khadas-vim1 current buster cli stable yes
|
|
khadas-vim1 current bullseye cli stable yes
|
|
khadas-vim1 current focal cli stable yes
|
|
khadas-vim1 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
khadas-vim1 current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
khadas-vim1 current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
khadas-vim1 edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
khadas-vim1 edge jammy desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
khadas-vim1 edge jammy desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
|
|
|
|
# Khadas Vim2
|
|
khadas-vim2 current focal minimal stable yes
|
|
khadas-vim2 current buster cli stable yes
|
|
khadas-vim2 current bullseye cli stable yes
|
|
khadas-vim2 current focal cli stable yes
|
|
khadas-vim2 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
khadas-vim2 current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
khadas-vim2 current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
khadas-vim2 edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
khadas-vim2 edge jammy desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
khadas-vim2 edge jammy desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
|
|
|
|
# Khadas Vim3l
|
|
khadas-vim3l current focal minimal stable yes
|
|
khadas-vim3l current buster cli stable yes
|
|
khadas-vim3l current bullseye cli stable yes
|
|
khadas-vim3l current focal cli stable yes
|
|
khadas-vim3l current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
khadas-vim3l current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
khadas-vim3l current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
khadas-vim3l edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
khadas-vim3l edge jammy desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
khadas-vim3l edge jammy desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
|
|
|
|
# Khadas Vim3
|
|
khadas-vim3 current focal minimal stable yes
|
|
khadas-vim3 current buster cli stable yes
|
|
khadas-vim3 current bullseye cli stable yes
|
|
khadas-vim3 current focal cli stable yes
|
|
khadas-vim3 edge jammy desktop stable yes xfce config_base browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
khadas-vim3 edge jammy desktop stable yes budgie config_base browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
khadas-vim3 edge jammy desktop stable yes cinnamon config_base browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
|
|
|
|
# Khadas Edge V
|
|
khadas-edge current focal minimal stable yes
|
|
khadas-edge current buster cli stable yes
|
|
khadas-edge current bullseye cli stable yes
|
|
khadas-edge current focal cli stable yes
|
|
khadas-edge current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
khadas-edge current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
khadas-edge edge hirsute desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
khadas-edge edge hirsute cli stable yes
|
|
|
|
|
|
# La frite
|
|
lafrite current focal minimal stable yes
|
|
lafrite current buster cli stable yes
|
|
lafrite current bullseye cli stable yes
|
|
lafrite current focal cli stable yes
|
|
lafrite current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
lafrite current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
lafrite current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
lafrite edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
lafrite edge jammy desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
lafrite edge jammy desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
lafrite edge jammy cli stable yes
|
|
|
|
|
|
# Lepotato
|
|
lepotato current focal minimal stable yes
|
|
lepotato current buster cli stable yes
|
|
lepotato current bullseye cli stable yes
|
|
lepotato current focal cli stable yes
|
|
lepotato current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
lepotato current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
lepotato current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
lepotato edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
lepotato edge jammy desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
lepotato edge jammy desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
lepotato edge jammy cli stable yes
|
|
|
|
|
|
# Olimex Lime
|
|
lime current focal minimal stable yes
|
|
lime current buster cli stable yes
|
|
lime current bullseye cli stable yes
|
|
lime current focal cli stable yes
|
|
lime edge jammy cli stable yes
|
|
|
|
|
|
# Olimex Lime A-10
|
|
lime-a10 current focal minimal stable yes
|
|
lime-a10 current buster cli stable yes
|
|
lime-a10 current bullseye cli stable yes
|
|
lime-a10 current focal cli stable yes
|
|
lime-a10 edge jammy cli stable yes
|
|
|
|
|
|
# Olimex Micro
|
|
micro current focal minimal stable yes
|
|
micro current buster cli stable yes
|
|
micro current bullseye cli stable yes
|
|
micro current focal cli stable yes
|
|
micro edge jammy cli stable yes
|
|
|
|
|
|
# Olimex Lime2
|
|
lime2 current focal minimal stable yes
|
|
lime2 current buster cli stable yes
|
|
lime2 current bullseye cli stable yes
|
|
lime2 current focal cli stable yes
|
|
lime2 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
lime2 edge jammy cli stable yes
|
|
|
|
|
|
# Olimex Lime A64
|
|
lime-a64 current focal minimal stable yes
|
|
lime-a64 current buster cli stable yes
|
|
lime-a64 current bullseye cli stable yes
|
|
lime-a64 current focal cli stable yes
|
|
lime-a64 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
lime-a64 edge jammy cli stable yes
|
|
|
|
|
|
# MACCHIATObin DS
|
|
macchiatobin-doubleshot legacy buster cli stable yes
|
|
macchiatobin-doubleshot legacy bullseye cli stable yes
|
|
macchiatobin-doubleshot legacy focal cli stable yes
|
|
|
|
|
|
# MiQi
|
|
miqi current focal minimal stable yes
|
|
miqi current buster cli stable yes
|
|
miqi current bullseye cli stable yes
|
|
miqi current buster desktop stable yes xfce config_base browsers
|
|
miqi current focal cli stable yes
|
|
miqi current focal desktop stable yes xfce config_base browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
|
|
|
|
# nanopct4
|
|
nanopct4 current focal minimal stable yes
|
|
nanopct4 legacy buster desktop stable yes xfce config_base browsers
|
|
nanopct4 current buster cli stable yes
|
|
nanopct4 current bullseye cli stable yes
|
|
nanopct4 current buster desktop stable yes xfce config_base browsers
|
|
nanopct4 current focal cli stable yes
|
|
nanopct4 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
nanopct4 current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
nanopct4 current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
nanopct4 edge jammy cli stable yes
|
|
|
|
|
|
# nanopi-r1
|
|
nanopi-r1 current focal minimal stable yes
|
|
nanopi-r1 current buster cli stable yes
|
|
nanopi-r1 current bullseye cli stable yes
|
|
nanopi-r1 current focal cli stable yes
|
|
nanopi-r1 edge jammy cli stable yes
|
|
|
|
|
|
# nanopi-r2s
|
|
nanopi-r2s current focal minimal stable yes
|
|
nanopi-r2s current buster cli stable yes
|
|
nanopi-r2s current bullseye cli stable yes
|
|
nanopi-r2s current focal cli stable yes
|
|
nanopi-r2s edge jammy cli stable yes
|
|
|
|
# nanopi-r2c
|
|
nanopi-r2c current focal minimal stable yes
|
|
nanopi-r2c current buster cli stable yes
|
|
nanopi-r2c current bullseye cli stable yes
|
|
nanopi-r2c current focal cli stable yes
|
|
|
|
# nanopi-r4s
|
|
nanopi-r4s current focal minimal stable yes
|
|
nanopi-r4s current buster cli stable yes
|
|
nanopi-r4s current bullseye cli stable yes
|
|
nanopi-r4s current focal cli stable yes
|
|
nanopi-r4s edge jammy cli stable yes
|
|
|
|
|
|
# nanopiair
|
|
nanopiair current focal minimal stable yes
|
|
nanopiair current buster cli stable yes
|
|
nanopiair current bullseye cli stable yes
|
|
nanopiair current focal cli stable yes
|
|
nanopiair edge jammy cli stable yes
|
|
|
|
|
|
# nanopiduo
|
|
nanopiduo current focal minimal stable yes
|
|
nanopiduo current buster cli stable yes
|
|
nanopiduo current bullseye cli stable yes
|
|
nanopiduo current focal cli stable yes
|
|
nanopiduo edge jammy cli stable yes
|
|
|
|
|
|
# nanopiduo2
|
|
nanopiduo2 current focal minimal stable yes
|
|
nanopiduo2 current buster cli stable yes
|
|
nanopiduo2 current bullseye cli stable yes
|
|
nanopiduo2 current focal cli stable yes
|
|
nanopiduo2 edge jammy cli stable yes
|
|
|
|
|
|
# nanopik1plus
|
|
nanopik1plus current focal minimal stable yes
|
|
nanopik1plus current buster cli stable yes
|
|
nanopik1plus current bullseye cli stable yes
|
|
nanopik1plus current focal cli stable yes
|
|
nanopik1plus current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
nanopik1plus edge jammy cli stable yes
|
|
|
|
|
|
# nanopik2-905
|
|
nanopik2-s905 current focal minimal stable yes
|
|
nanopik2-s905 current buster cli stable yes
|
|
nanopik2-s905 current bullseye cli stable yes
|
|
nanopik2-s905 current focal cli stable yes
|
|
nanopik2-s905 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
nanopik2-s905 edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
|
|
|
|
# nanopim1
|
|
nanopim1 current focal minimal stable yes
|
|
nanopim1 current buster cli stable yes
|
|
nanopim1 current bullseye cli stable yes
|
|
nanopim1 current buster desktop stable yes xfce config_base browsers
|
|
nanopim1 current focal cli stable yes
|
|
|
|
|
|
# nanopim1plus
|
|
nanopim1plus current focal minimal stable yes
|
|
nanopim1plus current buster cli stable yes
|
|
nanopim1plus current bullseye cli stable yes
|
|
nanopim1plus current buster desktop stable yes xfce config_base browsers
|
|
nanopim1plus current focal cli stable yes
|
|
|
|
|
|
# nanopim4
|
|
nanopim4 current focal minimal stable yes
|
|
nanopim4 legacy buster desktop stable yes xfce config_base browsers
|
|
nanopim4 current focal cli stable yes
|
|
nanopim4 current bullseye cli stable yes
|
|
nanopim4 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
nanopim4 current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
nanopim4 current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
nanopim4 edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
nanopim4 edge jammy desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
nanopim4 edge jammy desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
nanopim4 edge jammy cli stable yes
|
|
|
|
|
|
# nanopim4v2
|
|
nanopim4v2 current focal minimal stable yes
|
|
nanopim4v2 legacy buster desktop stable yes xfce config_base browsers
|
|
nanopim4v2 current focal cli stable yes
|
|
nanopim4v2 current bullseye cli stable yes
|
|
nanopim4v2 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
nanopim4v2 current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
nanopim4v2 current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
nanopim4v2 edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
nanopim4v2 edge jammy desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
nanopim4v2 edge jammy desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
nanopim4v2 edge jammy cli stable yes
|
|
|
|
|
|
# nanopineo
|
|
nanopineo current focal minimal stable yes
|
|
nanopineo current buster cli stable yes
|
|
nanopineo current bullseye cli stable yes
|
|
nanopineo current focal cli stable yes
|
|
nanopineo edge jammy cli stable yes
|
|
|
|
|
|
# nanopineocore2
|
|
nanopineo2 current focal minimal stable yes
|
|
nanopineo2 current buster cli stable yes
|
|
nanopineo2 current bullseye cli stable yes
|
|
nanopineo2 current focal cli stable yes
|
|
nanopineo2 edge jammy cli stable yes
|
|
|
|
|
|
# nanopineo2black
|
|
nanopineo2black current focal minimal stable yes
|
|
nanopineo2black current buster cli stable yes
|
|
nanopineo2black current bullseye cli stable yes
|
|
nanopineo2black current focal cli stable yes
|
|
nanopineo2black edge jammy cli stable yes
|
|
|
|
|
|
# nanopineo3
|
|
nanopineo3 current focal minimal stable yes
|
|
nanopineo3 current buster cli stable yes
|
|
nanopineo3 current bullseye cli stable yes
|
|
nanopineo3 current focal cli stable yes
|
|
nanopineo3 edge jammy cli stable yes
|
|
|
|
|
|
# nanopineo4
|
|
nanopineo4 current focal minimal stable yes
|
|
nanopineo4 current buster desktop stable yes xfce config_base browsers
|
|
nanopineo4 current focal cli stable yes
|
|
nanopineo4 current bullseye cli stable yes
|
|
nanopineo4 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
nanopineo4 edge jammy cli stable yes
|
|
|
|
|
|
# nanopineocore2
|
|
nanopineocore2 current focal minimal stable yes
|
|
nanopineocore2 current buster cli stable yes
|
|
nanopineocore2 current bullseye cli stable yes
|
|
nanopineocore2 current focal cli stable yes
|
|
nanopineocore2 edge jammy cli stable yes
|
|
|
|
|
|
# nanopineoplus2
|
|
nanopineoplus2 current focal minimal stable yes
|
|
nanopineoplus2 current buster cli stable yes
|
|
nanopineoplus2 current bullseye cli stable yes
|
|
nanopineoplus2 current focal cli stable yes
|
|
nanopineoplus2 edge jammy cli stable yes
|
|
|
|
|
|
# nanopia64
|
|
nanopia64 current focal minimal stable yes
|
|
nanopia64 current buster cli stable yes
|
|
nanopia64 current bullseye cli stable yes
|
|
nanopia64 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
nanopia64 edge jammy cli stable yes
|
|
|
|
|
|
# Odroid C2
|
|
odroidc2 current focal minimal stable yes
|
|
odroidc2 current buster cli stable yes
|
|
odroidc2 current bullseye cli stable yes
|
|
odroidc2 current focal cli stable yes
|
|
odroidc2 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
odroidc2 current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
odroidc2 current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
odroidc2 edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
odroidc2 edge jammy desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
odroidc2 edge jammy desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
odroidc2 edge jammy cli stable yes
|
|
|
|
|
|
# Odroid N2 / N2+
|
|
odroidn2 current focal minimal stable yes
|
|
odroidn2 legacy buster cli stable yes
|
|
odroidn2 current buster cli stable yes
|
|
odroidn2 current bullseye cli stable yes
|
|
odroidn2 current focal cli stable yes
|
|
odroidn2 edge jammy desktop stable yes xfce config_base browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
odroidn2 edge jammy desktop stable yes budgie config_base browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
odroidn2 edge jammy desktop stable yes cinnamon config_base browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
odroidn2 edge jammy cli stable yes
|
|
|
|
|
|
# Odroid C4
|
|
odroidc4 current focal minimal stable yes
|
|
odroidc4 legacy buster cli stable yes
|
|
odroidc4 current buster cli stable yes
|
|
odroidc4 current bullseye cli stable yes
|
|
odroidc4 current focal cli stable yes
|
|
odroidc4 edge jammy desktop stable yes xfce config_base browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
odroidc4 edge jammy desktop stable yes budgie config_base browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
odroidc4 edge jammy desktop stable yes cinnamon config_base browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
odroidc4 edge jammy cli stable yes
|
|
|
|
|
|
# Odroid HC4
|
|
odroidhc4 current focal minimal stable yes
|
|
odroidhc4 legacy buster cli stable yes
|
|
odroidhc4 current buster cli stable yes
|
|
odroidhc4 current bullseye cli stable yes
|
|
odroidhc4 current focal cli stable yes
|
|
odroidhc4 edge jammy desktop stable yes xfce config_base browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
odroidhc4 edge jammy desktop stable yes budgie config_base browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
odroidhc4 edge jammy desktop stable yes cinnamon config_base browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
odroidhc4 edge jammy cli stable yes
|
|
|
|
|
|
# Odroid XU4
|
|
odroidxu4 current focal cli stable yes
|
|
odroidxu4 current buster cli stable yes
|
|
odroidxu4 current bullseye cli stable yes
|
|
odroidxu4 current jammy cli stable yes
|
|
odroidxu4 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
odroidxu4 edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
|
|
|
|
# orangepi2
|
|
orangepi2 current focal minimal stable yes
|
|
orangepi2 current buster cli stable yes
|
|
orangepi2 current bullseye cli stable yes
|
|
orangepi2 current buster desktop stable yes xfce config_base browsers
|
|
orangepi2 current focal cli stable yes
|
|
orangepi2 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepi2 edge jammy cli stable yes
|
|
|
|
|
|
# orangepi 3
|
|
orangepi3 current focal minimal stable yes
|
|
orangepi3 current buster cli stable yes
|
|
orangepi3 current bullseye cli stable yes
|
|
orangepi3 current buster desktop stable yes xfce config_base browsers
|
|
orangepi3 current focal cli stable yes
|
|
orangepi3 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepi3 edge jammy cli stable yes
|
|
|
|
|
|
# Orangepi 4
|
|
orangepi4 current focal minimal stable yes
|
|
orangepi4 legacy buster desktop stable yes xfce config_base browsers
|
|
orangepi4 current focal cli stable yes
|
|
orangepi4 current bullseye cli stable yes
|
|
orangepi4 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepi4 current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepi4 current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepi4 edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepi4 edge jammy desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepi4 edge jammy desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepi4 edge jammy cli stable yes
|
|
|
|
|
|
# Orangepi R1
|
|
orangepi-r1 current focal minimal stable yes
|
|
orangepi-r1 current buster cli stable yes
|
|
orangepi-r1 current bullseye cli stable yes
|
|
orangepi-r1 current focal cli stable yes
|
|
orangepi-r1 edge jammy cli stable yes
|
|
|
|
|
|
# orangepi R1+
|
|
orangepi-r1plus current focal minimal stable yes
|
|
orangepi-r1plus current buster cli stable yes
|
|
orangepi-r1plus current bullseye cli stable yes
|
|
orangepi-r1plus current focal cli stable yes
|
|
|
|
|
|
# Orangepi rk3399
|
|
orangepi-rk3399 current focal minimal stable yes
|
|
orangepi-rk3399 legacy buster desktop stable yes xfce config_base browsers
|
|
orangepi-rk3399 current buster cli stable yes
|
|
orangepi-rk3399 current bullseye cli stable yes
|
|
orangepi-rk3399 current focal cli stable yes
|
|
orangepi-rk3399 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
|
|
|
|
# orangepilite
|
|
orangepilite current focal minimal stable yes
|
|
orangepilite current buster cli stable yes
|
|
orangepilite current bullseye cli stable yes
|
|
orangepilite current buster desktop stable yes xfce config_base browsers
|
|
orangepilite current focal cli stable yes
|
|
orangepilite edge jammy cli stable yes
|
|
|
|
|
|
# orangepilite2
|
|
orangepilite2 current focal minimal stable yes
|
|
orangepilite2 current buster cli stable yes
|
|
orangepilite2 current bullseye cli stable yes
|
|
orangepilite2 current focal cli stable yes
|
|
orangepilite2 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepilite2 edge jammy cli stable yes
|
|
|
|
|
|
# orangepioneplus
|
|
orangepioneplus current focal minimal stable yes
|
|
orangepioneplus current buster cli stable yes
|
|
orangepioneplus current bullseye cli stable yes
|
|
orangepioneplus current focal cli stable yes
|
|
orangepioneplus current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepioneplus edge jammy cli stable yes
|
|
|
|
|
|
# orangepione
|
|
orangepione current focal minimal stable yes
|
|
orangepione current buster cli stable yes
|
|
orangepione current bullseye cli stable yes
|
|
orangepione current buster desktop stable yes xfce config_base browsers
|
|
orangepione current focal cli stable yes
|
|
orangepione edge jammy cli stable yes
|
|
|
|
|
|
# orangepipc
|
|
orangepipc current focal minimal stable yes
|
|
orangepipc current buster cli stable yes
|
|
orangepipc current bullseye cli stable yes
|
|
orangepipc current buster desktop stable yes xfce config_base browsers
|
|
orangepipc current focal cli stable yes
|
|
orangepipc current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepipc edge jammy cli stable yes
|
|
|
|
|
|
# orangepipc2
|
|
orangepipc2 current focal minimal stable yes
|
|
orangepipc2 current buster cli stable yes
|
|
orangepipc2 current bullseye cli stable yes
|
|
orangepipc2 current buster desktop stable yes xfce config_base browsers
|
|
orangepipc2 current focal cli stable yes
|
|
orangepipc2 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepipc2 edge jammy cli stable yes
|
|
|
|
|
|
# orangepipcplus
|
|
orangepipcplus current focal minimal stable yes
|
|
orangepipcplus current buster cli stable yes
|
|
orangepipcplus current bullseye cli stable yes
|
|
orangepipcplus current buster desktop stable yes xfce config_base browsers
|
|
orangepipcplus current focal cli stable yes
|
|
orangepipcplus current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepipcplus edge jammy cli stable yes
|
|
|
|
|
|
# orangepiplus
|
|
orangepiplus current focal minimal stable yes
|
|
orangepiplus current buster cli stable yes
|
|
orangepiplus current bullseye cli stable yes
|
|
orangepiplus current buster desktop stable yes xfce config_base browsers
|
|
orangepiplus current focal cli stable yes
|
|
orangepiplus current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepiplus edge jammy cli stable yes
|
|
|
|
|
|
# orangepiplus2e
|
|
orangepiplus2e current focal minimal stable yes
|
|
orangepiplus2e current buster cli stable yes
|
|
orangepiplus2e current bullseye cli stable yes
|
|
orangepiplus2e current buster desktop stable yes xfce config_base browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepiplus2e current focal cli stable yes
|
|
orangepiplus2e current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepiplus2e edge jammy cli stable yes
|
|
|
|
|
|
# Orangepi Prime
|
|
orangepiprime current focal minimal stable yes
|
|
orangepiprime current buster cli stable yes
|
|
orangepiprime current bullseye cli stable yes
|
|
orangepiprime current focal cli stable yes
|
|
orangepiprime current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepiprime current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepiprime current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepiprime edge jammy cli stable yes
|
|
|
|
|
|
# Orangepi Win
|
|
orangepiwin current focal minimal stable yes
|
|
orangepiwin current buster cli stable yes
|
|
orangepiwin current bullseye cli stable yes
|
|
orangepiwin current focal cli stable yes
|
|
orangepiwin current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepiwin current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepiwin current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
orangepiwin edge jammy cli stable yes
|
|
|
|
|
|
# orangepizero
|
|
orangepizero current focal minimal stable yes
|
|
orangepizero current buster cli stable yes
|
|
orangepizero current bullseye cli stable yes
|
|
orangepizero current focal cli stable yes
|
|
orangepizero edge jammy cli stable yes
|
|
|
|
|
|
# orangepizero2
|
|
orangepizero2 legacy buster cli stable yes
|
|
orangepizero2 legacy bullseye cli stable yes
|
|
orangepizero2 legacy focal cli stable yes
|
|
orangepizero2 edge buster cli stable yes
|
|
orangepizero2 edge focal cli stable yes
|
|
orangepizero2 edge jammy cli stable yes
|
|
|
|
|
|
# orangepizeroplus
|
|
orangepizeroplus current focal minimal stable yes
|
|
orangepizeroplus current buster cli stable yes
|
|
orangepizeroplus current bullseye cli stable yes
|
|
orangepizeroplus current focal cli stable yes
|
|
orangepizeroplus edge jammy cli stable yes
|
|
|
|
|
|
# orangepizeroplus2-h3
|
|
orangepizeroplus2-h3 current focal minimal stable yes
|
|
orangepizeroplus2-h3 current buster cli stable yes
|
|
orangepizeroplus2-h3 current bullseye cli stable yes
|
|
orangepizeroplus2-h3 current focal cli stable yes
|
|
orangepizeroplus2-h3 edge jammy cli stable yes
|
|
|
|
|
|
# orangepizeroplus2-h5
|
|
orangepizeroplus2-h5 current focal minimal stable yes
|
|
orangepizeroplus2-h5 current buster cli stable yes
|
|
orangepizeroplus2-h5 current bullseye cli stable yes
|
|
orangepizeroplus2-h5 current focal cli stable yes
|
|
orangepizeroplus2-h5 edge jammy cli stable yes
|
|
|
|
|
|
# LinkSprite pcDuino3
|
|
pcduino3 current focal minimal stable yes
|
|
pcduino3 current buster cli stable yes
|
|
pcduino3 current bullseye cli stable yes
|
|
pcduino3 current focal cli stable yes
|
|
|
|
|
|
# Pine64
|
|
pine64 current focal minimal stable yes
|
|
pine64 current buster cli stable yes
|
|
pine64 current bullseye cli stable yes
|
|
pine64 current focal cli stable yes
|
|
pine64 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
pine64 current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
pine64 current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
|
|
|
|
# Pine64so
|
|
pine64so current focal minimal stable yes
|
|
pine64so current buster cli stable yes
|
|
pine64so current bullseye cli stable yes
|
|
pine64so current focal cli stable yes
|
|
|
|
|
|
# Pinecube
|
|
pinecube current focal minimal stable yes
|
|
pinecube current buster minimal stable yes
|
|
pinecube current bullseye minimal stable yes
|
|
|
|
|
|
# Pinebook A64
|
|
pinebook-a64 current focal minimal stable yes
|
|
pinebook-a64 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
pinebook-a64 current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
pinebook-a64 current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
pinebook-a64 edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
pinebook-a64 edge jammy desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
pinebook-a64 edge jammy desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
|
|
|
|
# Pinebook PRO
|
|
pinebook-pro current focal minimal stable yes
|
|
pinebook-pro current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
pinebook-pro current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
pinebook-pro current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
pinebook-pro edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
pinebook-pro edge jammy desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
pinebook-pro edge jammy desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
|
|
|
|
# Pine H64
|
|
pineh64 current focal minimal stable yes
|
|
pineh64 current buster cli stable yes
|
|
pineh64 current bullseye cli stable yes
|
|
pineh64 current buster desktop stable yes xfce config_base browsers
|
|
pineh64 current focal cli stable yes
|
|
pineh64 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
|
|
|
|
# Pine H64 B
|
|
pineh64-b current focal minimal stable yes
|
|
pineh64-b current buster cli stable yes
|
|
pineh64-b current bullseye cli stable yes
|
|
pineh64-b current buster desktop stable yes xfce config_base browsers
|
|
pineh64-b current focal cli stable yes
|
|
pineh64-b current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
|
|
|
|
# Renegade
|
|
renegade current focal minimal stable yes
|
|
renegade legacy buster desktop stable yes xfce config_base browsers
|
|
renegade current buster cli stable yes
|
|
renegade current bullseye cli stable yes
|
|
renegade current focal cli stable yes
|
|
renegade current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
|
|
|
|
# rk322x-box
|
|
rk322x-box current focal minimal stable yes
|
|
rk322x-box legacy buster desktop stable yes xfce config_base browsers
|
|
rk322x-box current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rk322x-box edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
|
|
|
|
# Rock64
|
|
rock64 current focal minimal stable yes
|
|
rock64 legacy buster desktop stable yes xfce config_base browsers
|
|
rock64 current buster cli stable yes
|
|
rock64 current bullseye cli stable yes
|
|
rock64 current focal cli stable yes
|
|
rock64 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rock64 current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rock64 edge jammy cli stable yes
|
|
|
|
|
|
# Rockpi 4a
|
|
rockpi-4a current focal minimal stable yes
|
|
rockpi-4a legacy buster desktop stable yes xfce config_base browsers
|
|
rockpi-4a current focal cli stable yes
|
|
rockpi-4a current buster cli stable yes
|
|
rockpi-4a current bullseye cli stable yes
|
|
rockpi-4a current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpi-4a current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpi-4a current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpi-4a edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpi-4a edge jammy desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpi-4a edge jammy desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpi-4a edge jammy cli stable yes
|
|
|
|
|
|
# Rockpi 4b
|
|
rockpi-4b current focal minimal stable yes
|
|
rockpi-4b legacy buster desktop stable yes xfce config_base browsers
|
|
rockpi-4b current focal cli stable yes
|
|
rockpi-4b current buster cli stable yes
|
|
rockpi-4b current bullseye cli stable yes
|
|
rockpi-4b current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpi-4b current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpi-4b current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpi-4b edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpi-4b edge jammy desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpi-4b edge jammy desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpi-4b edge jammy cli stable yes
|
|
|
|
|
|
# Rockpi 4c
|
|
rockpi-4c current focal minimal stable yes
|
|
rockpi-4c legacy buster desktop stable yes xfce config_base browsers
|
|
rockpi-4c current focal cli stable yes
|
|
rockpi-4c current buster cli stable yes
|
|
rockpi-4c current bullseye cli stable yes
|
|
rockpi-4c current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpi-4c current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpi-4c current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpi-4c edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpi-4c edge jammy desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpi-4c edge jammy desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpi-4c edge jammy cli stable yes
|
|
|
|
|
|
# Rockpi E
|
|
rockpi-e current focal minimal stable yes
|
|
rockpi-e current buster cli stable yes
|
|
rockpi-e current bullseye cli stable yes
|
|
rockpi-e current focal cli stable yes
|
|
rockpi-e edge jammy cli stable yes
|
|
|
|
|
|
# Radxa Zero
|
|
radxa-zero current focal minimal stable yes
|
|
radxa-zero current buster cli stable yes
|
|
radxa-zero current focal cli stable yes
|
|
radxa-zero edge bullseye cli stable yes
|
|
radxa-zero edge hirsute cli stable yes
|
|
radxa-zero current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
radxa-zero edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
|
|
|
|
# Rockpi N10
|
|
rockpi-n10 current focal minimal stable yes
|
|
rockpi-n10 current buster cli stable yes
|
|
rockpi-n10 current bullseye cli stable yes
|
|
rockpi-n10 current focal cli stable yes
|
|
rockpi-n10 edge jammy cli stable yes
|
|
|
|
|
|
# Radxa rock-3a
|
|
rock-3a legacy jammy cli stable no
|
|
|
|
|
|
# Rock64pro
|
|
rockpro64 current focal minimal stable yes
|
|
rockpro64 legacy buster desktop stable yes xfce config_base browsers
|
|
rockpro64 current focal cli stable yes
|
|
rockpro64 current buster cli stable yes
|
|
rockpro64 current bullseye cli stable yes
|
|
rockpro64 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpro64 current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpro64 current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpro64 edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpro64 edge jammy desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpro64 edge jammy desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
rockpro64 edge jammy cli stable yes
|
|
|
|
|
|
# Teres A64
|
|
teres-a64 current focal minimal stable yes
|
|
teres-a64 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
teres-a64 current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
teres-a64 edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
teres-a64 edge jammy desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
|
|
|
|
# Tinkerboard
|
|
tinkerboard current focal minimal stable yes
|
|
tinkerboard legacy buster desktop stable yes xfce config_base browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
tinkerboard current buster cli stable yes
|
|
tinkerboard current bullseye cli stable yes
|
|
tinkerboard current focal cli stable yes
|
|
tinkerboard current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
tinkerboard edge jammy cli stable yes
|
|
|
|
|
|
# Tinkerboard 2
|
|
tinkerboard-2 current focal minimal stable yes
|
|
tinkerboard-2 current focal cli stable no
|
|
tinkerboard-2 current bullseye cli stable no
|
|
tinkerboard-2 edge jammy cli stable no
|
|
|
|
|
|
# Station M1
|
|
station-m1 current focal minimal stable yes
|
|
station-m1 legacy buster desktop stable yes xfce config_base browsers
|
|
station-m1 current buster cli stable yes
|
|
station-m1 current bullseye cli stable yes
|
|
station-m1 current focal cli stable yes
|
|
station-m1 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
station-m1 current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
station-m1 edge jammy cli stable yes
|
|
|
|
|
|
# Station P1
|
|
station-p1 current focal minimal stable yes
|
|
station-p1 legacy buster desktop stable yes xfce config_base browsers
|
|
station-p1 current focal cli stable yes
|
|
station-p1 current buster cli stable yes
|
|
station-p1 current bullseye cli stable yes
|
|
station-p1 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
station-p1 current focal desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
station-p1 current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
station-p1 edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
station-p1 edge jammy desktop stable yes budgie config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
station-p1 edge jammy desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
station-p1 edge jammy cli stable yes
|
|
|
|
|
|
# tritium-h3
|
|
tritium-h3 current focal minimal stable yes
|
|
tritium-h3 current buster desktop stable yes xfce config_base browsers
|
|
tritium-h3 current buster cli stable yes
|
|
tritium-h3 current bullseye cli stable yes
|
|
tritium-h3 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
tritium-h3 current focal cli stable yes
|
|
|
|
|
|
# tritium-h5
|
|
tritium-h5 current focal minimal stable yes
|
|
tritium-h5 current buster cli stable yes
|
|
tritium-h5 current bullseye cli stable yes
|
|
tritium-h5 current focal cli stable yes
|
|
tritium-h5 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
tritium-h5 current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
tritium-h5 edge jammy desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
tritium-h5 edge jammy desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
tritium-h5 edge jammy cli stable yes
|
|
|
|
|
|
# Udoo
|
|
udoo current focal minimal stable yes
|
|
udoo current buster cli stable yes
|
|
udoo current bullseye cli stable yes
|
|
udoo current buster desktop stable yes xfce config_base browsers
|
|
udoo current focal cli stable yes
|
|
udoo current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
udoo edge jammy cli stable yes
|
|
|
|
|
|
# xt-q8l-v10
|
|
xt-q8l-v10 current focal minimal stable yes
|
|
xt-q8l-v10 legacy buster desktop stable yes xfce config_base browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
xt-q8l-v10 current buster cli stable yes
|
|
xt-q8l-v10 current bullseye cli stable yes
|
|
xt-q8l-v10 current focal cli stable yes
|
|
xt-q8l-v10 current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
xt-q8l-v10 edge jammy cli stable yes
|
|
|
|
|
|
# Z28 pro
|
|
z28pro current focal minimal stable yes
|
|
z28pro legacy buster desktop stable yes xfce config_base browsers
|
|
z28pro current buster cli stable yes
|
|
z28pro current bullseye cli stable yes
|
|
z28pro current focal cli stable yes
|
|
z28pro current focal desktop stable yes xfce config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
z28pro current focal desktop stable yes cinnamon config_base 3dsupport,browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
|
|
|
|
# zeropi
|
|
zeropi current focal minimal stable yes
|
|
zeropi current buster cli stable yes
|
|
zeropi current bullseye cli stable yes
|
|
zeropi current focal cli stable yes
|
|
zeropi edge jammy cli stable yes
|
|
|
|
|
|
# JetHub H1 (j80)
|
|
jethubj80 current focal cli stable yes
|
|
jethubj80 edge focal cli stable yes
|
|
jethubj80 current jammy cli stable yes
|
|
jethubj80 edge jammy cli stable yes
|
|
|
|
|
|
# JetHub D1 (j100)
|
|
jethubj100 current focal cli stable yes
|
|
jethubj100 edge focal cli stable yes
|
|
jethubj100 current jammy cli stable yes
|
|
jethubj100 edge jammy cli stable yes
|
|
|
|
|
|
# Jetson Nano
|
|
jetson-nano current focal minimal stable yes
|
|
jetson-nano legacy buster desktop stable yes xfce config_base browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
jetson-nano legacy focal desktop stable yes xfce config_base browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
jetson-nano current focal cli stable yes
|
|
jetson-nano current bullseye cli stable yes
|
|
jetson-nano current buster desktop stable yes xfce config_base browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
jetson-nano current focal desktop stable yes xfce config_base browsers,chat,desktop_tools,editors,email,internet,multimedia,office,programming,remote_desktop
|
|
jetson-nano edge jammy cli stable yes
|
|
|
|
|
|
# Raspberry Pi4
|
|
rpi4b edge jammy cli stable no
|
|
|
|
|
|
# uefi-x86
|
|
uefi-x86 edge jammy cli stable no
|
|
|
|
|
|
# uefi-arm64
|
|
uefi-arm64 edge jammy cli stable no
|
|
|
|
|
|
# Virtual qemu
|
|
virtual-qemu current jammy cli stable no
|