Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@
[submodule "Bjorn-blackhat"]
path = package/bjorn/bjorn
url = git@github.com:o7-machinehum/Bjorn-blackhat.git
[submodule "armbian"]
path = armbian
url = https://github.com/armbian/build
255 changes: 0 additions & 255 deletions BLACKHAT_REFERENCE.md

This file was deleted.

8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ For complete functionality reference and usage examples, see [BLACKHAT_REFERENCE
## Releases
The best way to get your hands on all the most recent features is the [nightly build](https://github.com/o7-machinehum/flipper-blackhat-os/actions) here. Just click the most recent "Nightly" and you will find the OS artifacts at the bottom. These can then be flashed to an SD card using unix dd, or whatever Windows application you would use to flash a RPI SD card.

## Build
## Build (Buildroot)
Make sure submodules are initialized:

git submodule update --init
Expand All @@ -23,3 +23,9 @@ Initialize the configuration, including the defconfig and this external director
And compile:

make

## Build (Armbian)
The armbian build is pretty simple...
./armbian_build.sh


1 change: 1 addition & 0 deletions armbian
Submodule armbian added at f9cf9a
29 changes: 29 additions & 0 deletions armbian_config/config/boards/flipper-blackhat.csc
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Allwinner A33 quad core 512MB SoC module
BOARD_NAME="Flipper Blackhat"
BOARDFAMILY="sun8i"
BOARD_MAINTAINER=""
HAS_VIDEO_OUTPUT="no"

# U-Boot
BOOTCONFIG="flipper_blackhat_defconfig"

# Kernel DTB that should be used by default
BOOT_FDT_FILE="sun8i-a33-flipper-blackhat.dtb"

# Device-tree overlay prefix for this SoC family
OVERLAY_PREFIX="sun8i-a33"

# Kernel flavours to build
KERNEL_TARGET="current,edge,legacy"
KERNEL_TEST_TARGET="edge"

# --- Enable Raspberry-Pi-style dual partition layout ---

BOOTFS_TYPE="fat"
BOOTSIZE="256"
BOOTFS_LABEL="BOOT"

ROOTFS_TYPE="ext4"
ROOTFS_LABEL="ROOTFS"

IMAGE_PARTITION_TABLE_TYPE="dos"
Loading
Loading