{"id":24811176,"url":"https://github.com/thin-edge/buildroot-tedge","last_synced_at":"2026-02-18T02:02:37.434Z","repository":{"id":234538966,"uuid":"775526207","full_name":"thin-edge/buildroot-tedge","owner":"thin-edge","description":"WIP: Buildroot thin-edge.io package","archived":false,"fork":false,"pushed_at":"2024-05-09T22:22:53.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-10-16T04:03:16.023Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Makefile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thin-edge.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-03-21T14:55:48.000Z","updated_at":"2024-05-09T22:22:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"88cf2cb0-12da-4b06-872e-53d35835271f","html_url":"https://github.com/thin-edge/buildroot-tedge","commit_stats":null,"previous_names":["thin-edge/buildroot-tedge"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thin-edge/buildroot-tedge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thin-edge%2Fbuildroot-tedge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thin-edge%2Fbuildroot-tedge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thin-edge%2Fbuildroot-tedge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thin-edge%2Fbuildroot-tedge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thin-edge","download_url":"https://codeload.github.com/thin-edge/buildroot-tedge/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thin-edge%2Fbuildroot-tedge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29566366,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T00:47:08.760Z","status":"online","status_checked_at":"2026-02-18T02:00:09.468Z","response_time":162,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-30T12:19:34.768Z","updated_at":"2026-02-18T02:02:37.419Z","avatar_url":"https://github.com/thin-edge.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# buildroot-tedge\nBuildroot thin-edge.io package\n\n## Quick Start\n\u003e Before you start using Buildroot check [official Buildroot guide](https://buildroot.org/downloads/manual/manual.html#_getting_started) to make sure all dependencies are installed.\n\n### Build image using default config\nCurrently `buildroot-tedge` supports default config for the following boards:\n* Raspberry pi 3 64-bit\n* Raspberry pi 4\n\nYou can apply one of the existing configs to provide all necessary packages and modifications to run image with `thin-edge` on desired board:\n\n```bash\nmake BR2_EXTERNAL=$PWD/br-external -C buildroot thin_edge_\u003cboardname\u003e_defconfig\n```\n\ne.g:\n\n```bash\nmake BR2_EXTERNAL=$PWD/br-external -C buildroot thin_edge_rpi3_64_defconfig\n```\n\n\u003eNote: You need to provide BR2_EXTERNAL location only once as it gets cached for further invocations of `make` command.\n\nYou can check available configs under `br-external/configs` directory or with `list-defconfigs` command:\n\n```bash\nmake -C buildroot list-defconfigs\n```\n\nAll the configs provided by the `tedge-buildroot` will be located under `External configs in \"Thin-edge external tree\"` module. \n\nOnce you apply config, build the image\n```bash\nmake -C buildroot all\n```\n\nYour image will be stored under `buildroot/output/images` directory.\n\n### Build image using default config\n\nIf thin-edge config is not available for your board, you can add all necessary packages using default configs and Buildroot's `menuconfig`\n\nFirst, apply one of the board configs that are delivered by Buildroot. You can find them under `buildroot/configs` directory or with `list-defconfigs` command:\n\n```bash\nmake -C buildroot list-defconfigs \n```\n\nThen do all necessary changes to run `thin-edge` using `menuconfig`:\n```bash\nmake -C buildroot menuconfig\n```\n\nChange init system to systemd:\n```\nSystem configuration -\u003e Init system -\u003e systemd\n```\n\nInstall glibc utilities:\n```\nToolchain -\u003e Install glibc utilities\n```\n\nInstall sudo:\n```\nTarget packages -\u003e Shell and utilities -\u003e sudo\n```\n\nInstall mosquitto:\n```\nTarget packages -\u003e Networking applications -\u003e mosquitto\n```\n\nInstall CA certificates library:\n```\nTarget packages -\u003e Libraries -\u003e Crypto -\u003e Ca_certificates\n```\n\nInstall libxcrypt library:\n```\nTarget packages -\u003e Libraries -\u003e Crypto -\u003e libxcrypt\n```\n\nOnce all necessary packages are installed, you will be able to add `thin-edge`:\n```\nExternal options -\u003e thin-edge\n```\n\nYou can leave `menuconfig` using `Exit` and build the image:\n```bash\nmake -C buildroot all\n```\n\nYour image will be stored under `buildroot/output/images` directory.\n\n### Additional packages\nIf you want to connect to your device via SSH, you need to provide one of the SSH package, e.g `dropbear`. You can find it in `menuconfig`:\n```\nTarget packages -\u003e Networking appliocations -\u003e dropbear\n```\n\n\u003e Note: the dropbear package is not attached to thin-edge configs! You need to add it manually.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthin-edge%2Fbuildroot-tedge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthin-edge%2Fbuildroot-tedge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthin-edge%2Fbuildroot-tedge/lists"}