-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce macOS (partial) and Windows support (#125)
* add debug defconfig, remove symlink * Update README.md * eol gitattr * add note about nanomq * misc nrc params fixes, nero debug update
- Loading branch information
Showing
13 changed files
with
92 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
*.sh text eol=lf | ||
* text=auto eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
version: "3.8" | ||
services: | ||
odysseus: | ||
build: . | ||
command: /bin/bash | ||
privileged: true | ||
tty: true | ||
# for fakeroot failure | ||
ulimits: | ||
nofile: | ||
soft: 1024 | ||
hard: 1048576 | ||
volumes: | ||
- ./odysseus_tree:/home/odysseus/build/odysseus_tree | ||
- shared_data:/home/odysseus/shared_data | ||
- outputs:/home/odysseus/outputs | ||
environment: | ||
- BR2_DL_DIR=/home/odysseus/shared_data/dl | ||
- BR2_CCACHE_DIR=/home/odysseus/shared_data/ccache | ||
volumes: | ||
# required for mac as no hard linking:( | ||
outputs: | ||
labels: | ||
com.northeastern_electric_racing.description: "Buildroot outputs, including disk images" | ||
shared_data: | ||
labels: | ||
com.northeastern_electric_racing.description: "Shared output between buildroot runs" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
odysseus/odysseus_tree/configs/raspberrypi4_64_nero_debug_defconfig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
BR2_aarch64=y | ||
BR2_cortex_a72=y | ||
BR2_ARM_FPU_VFPV4=y | ||
BR2_TOOLCHAIN_BUILDROOT_CXX=y | ||
BR2_CCACHE=y | ||
BR2_GLOBAL_PATCH_DIR="$(BR2_EXTERNAL_ODY_TREE_PATH)/patches" | ||
BR2_PER_PACKAGE_DIRECTORIES=y | ||
BR2_PACKAGE_DEJAVU=y | ||
# BR2_PACKAGE_DEJAVU_SANS is not set | ||
# BR2_PACKAGE_DEJAVU_SERIF is not set | ||
# BR2_PACKAGE_DEJAVU_SANS_CONDENSED is not set | ||
# BR2_PACKAGE_DEJAVU_SERIF_CONDENSED is not set | ||
BR2_PACKAGE_KMSCUBE=y | ||
BR2_PACKAGE_MESA3D=y | ||
BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_V3D=y | ||
BR2_PACKAGE_MESA3D_OPENGL_ES=y | ||
BR2_PACKAGE_NERO2=y | ||
BR2_PACKAGE_NERQT6=y | ||
BR2_PACKAGE_NERQT6BASE_EGLFS=y | ||
BR2_PACKAGE_NERQT6BASE_DEFAULT_QPA="eglfs" | ||
BR2_PACKAGE_NERQT6BASE_JPEG=y | ||
BR2_PACKAGE_NERQT6BASE_PNG=y | ||
BR2_PACKAGE_NERQT6BASE_WIDGETS=y | ||
BR2_PACKAGE_NERQT6BASE_NETWORK=y | ||
BR2_PACKAGE_NERQT6BASE_SYSLOG=y | ||
BR2_PACKAGE_NERQT6CORE5COMPAT=y | ||
BR2_PACKAGE_NERQT6SVG=y | ||
BR2_PACKAGE_NERQT6DECLARATIVE=y | ||
BR2_PACKAGE_NERQT6DECLARATIVE_QUICK=y | ||
BR2_PACKAGE_NERQT6MQTT=y | ||
BR2_PACKAGE_NERQT6GRPC=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
odysseus/odysseus_tree/overlays/rootfs_overlay_ap/etc/modprobe.d/nrc.conf
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
odysseus/odysseus_tree/overlays/rootfs_overlay_tpu/etc/modprobe.d/nrc.conf
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/sh | ||
|
||
python3 "$BR2_EXTERNAL_ODY_TREE_PATH"/overlays/rootfs_overlay_nrc_common/usr/bin/build_nrc_params.py 1 "$BR2_EXTERNAL_ODY_TREE_PATH"/overlays/rootfs_overlay_ap/etc/nrc_opts_ap.ini "$TARGET_DIR"/etc/modprobe.d/nrc.conf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/sh | ||
|
||
python3 "$BR2_EXTERNAL_ODY_TREE_PATH"/overlays/rootfs_overlay_nrc_common/usr/bin/build_nrc_params.py 0 "$BR2_EXTERNAL_ODY_TREE_PATH"/overlays/rootfs_overlay_tpu/etc/nrc_opts_sta.ini "$TARGET_DIR"/etc/modprobe.d/nrc.conf |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.