|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>ebuild — Unified Build System | EmbeddedOS</title> |
| 7 | + <meta name="description" content="Unified build system with 18 CLI commands, cross-compilation, SDK generation, package management with YAML recipes, and deployable OS image creation."> |
| 8 | + <meta name="keywords" content="build system, cli, cross-compilation, sdk, cmake, embedded, package manager"> |
| 9 | + <meta name="author" content="EmbeddedOS Organization"> |
| 10 | + <link rel="canonical" href="https://embeddedos-org.github.io/ebuild/"> |
| 11 | + |
| 12 | + <!-- Open Graph --> |
| 13 | + <meta property="og:type" content="website"> |
| 14 | + <meta property="og:title" content="ebuild — Unified Build System | EmbeddedOS"> |
| 15 | + <meta property="og:description" content="Unified build system with 18 CLI commands, cross-compilation, SDK generation, package management with YAML recipes, and deployable OS image creation."> |
| 16 | + <meta property="og:url" content="https://embeddedos-org.github.io/ebuild/"> |
| 17 | + <meta property="og:site_name" content="EmbeddedOS"> |
| 18 | + <meta property="og:image" content="https://embeddedos-org.github.io/assets/ebuild-og.png"> |
| 19 | + |
| 20 | + <!-- Twitter Card --> |
| 21 | + <meta name="twitter:card" content="summary_large_image"> |
| 22 | + <meta name="twitter:title" content="ebuild — Unified Build System | EmbeddedOS"> |
| 23 | + <meta name="twitter:description" content="Unified build system with 18 CLI commands, cross-compilation, SDK generation, package management with YAML recipes, and deployable OS image creation."> |
| 24 | + <meta name="twitter:image" content="https://embeddedos-org.github.io/assets/ebuild-og.png"> |
| 25 | + |
| 26 | + <!-- JSON-LD Structured Data --> |
| 27 | + <script type="application/ld+json"> |
| 28 | + { |
| 29 | + "@context": "https://schema.org", |
| 30 | + "@type": "SoftwareApplication", |
| 31 | + "name": "ebuild", |
| 32 | + "alternateName": "Unified Build System", |
| 33 | + "description": "Unified build system with 18 CLI commands, cross-compilation, SDK generation, package management with YAML recipes, and deployable OS image creation.", |
| 34 | + "url": "https://embeddedos-org.github.io/ebuild/", |
| 35 | + "applicationCategory": "DeveloperApplication", |
| 36 | + "operatingSystem": "Linux, macOS, Windows", |
| 37 | + "offers": { |
| 38 | + "@type": "Offer", |
| 39 | + "price": "0", |
| 40 | + "priceCurrency": "USD" |
| 41 | + }, |
| 42 | + "sourceOrganization": { |
| 43 | + "@type": "Organization", |
| 44 | + "name": "EmbeddedOS", |
| 45 | + "url": "https://embeddedos-org.github.io/" |
| 46 | + }, |
| 47 | + "codeRepository": "https://github.com/embeddedos-org/ebuild" |
| 48 | + } |
| 49 | + </script> |
| 50 | + |
| 51 | + <link rel="stylesheet" href="style.css"> |
| 52 | +</head> |
| 53 | +<body> |
| 54 | + |
| 55 | + <!-- Navbar --> |
| 56 | + <nav class="navbar"> |
| 57 | + <div class="nav-inner"> |
| 58 | + <a href="https://embeddedos-org.github.io/" class="logo"> |
| 59 | + <div class="logo-icon" style="background: linear-gradient(135deg, #1a7a30, #3fb950);">eb</div> |
| 60 | + EmbeddedOS |
| 61 | + </a> |
| 62 | + <div class="nav-links"> |
| 63 | + <a href="https://embeddedos-org.github.io/">Home</a> |
| 64 | + <a href="https://embeddedos-org.github.io/ebuild/" class="active">Docs</a> |
| 65 | + <a href="https://github.com/embeddedos-org/ebuild">GitHub</a> |
| 66 | + </div> |
| 67 | + </div> |
| 68 | + </nav> |
| 69 | + |
| 70 | + <!-- Breadcrumb --> |
| 71 | + <div class="breadcrumb"> |
| 72 | + <a href="https://embeddedos-org.github.io/">EmbeddedOS</a> |
| 73 | + <span class="sep">/</span> |
| 74 | + <span>ebuild</span> |
| 75 | + </div> |
| 76 | + |
| 77 | + <!-- Hero --> |
| 78 | + <section class="hero" style="border-left: 4px solid #3fb950;"> |
| 79 | + <div class="hero-content"> |
| 80 | + <h1 style="background: linear-gradient(135deg, #3fb950, var(--purple), var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">ebuild — Unified Build System</h1> |
| 81 | + <p class="subtitle">Unified build system with 18 CLI commands, cross-compilation, SDK generation, package management with YAML recipes, and deployable OS image creation.</p> |
| 82 | + <div class="hero-badges"> |
| 83 | + <span class="badge badge-green">18 CLI Commands</span> |
| 84 | + <span class="badge badge-orange">Cross-Compilation</span> |
| 85 | + <span class="badge badge-blue">SDK Generation</span> |
| 86 | + <span class="badge badge-purple">Package Manager</span> |
| 87 | + <span class="badge badge-cyan">OS Images</span> |
| 88 | + </div> |
| 89 | + <div class="hero-buttons"> |
| 90 | + <a href="https://github.com/embeddedos-org/ebuild" class="btn btn-primary" style="background: var(--green);">View on GitHub</a> |
| 91 | + <a href="https://github.com/embeddedos-org/ebuild/releases/tag/v0.2.0-book" class="btn btn-outline">Download Book (PDF)</a> |
| 92 | + </div> |
| 93 | + </div> |
| 94 | + </section> |
| 95 | + |
| 96 | + <!-- Features --> |
| 97 | + <section class="section"> |
| 98 | + <h2 class="section-title">Key Features</h2> |
| 99 | + <p class="section-subtitle">One tool to build, package, and deploy embedded firmware</p> |
| 100 | + <div class="feature-grid"> |
| 101 | + <div class="feature-card" style="border-top: 3px solid #3fb950;"> |
| 102 | + <h3>18 CLI Commands</h3> |
| 103 | + <p>Complete command-line interface covering init, build, flash, test, clean, package, deploy, sdk, image, and more — all from a single tool.</p> |
| 104 | + </div> |
| 105 | + <div class="feature-card" style="border-top: 3px solid #f0883e;"> |
| 106 | + <h3>Cross-Compilation</h3> |
| 107 | + <p>Seamless cross-compilation with CMake, Make, Meson, and Cargo backends. Auto-detects and configures toolchains for ARM, RISC-V, Xtensa, and more.</p> |
| 108 | + </div> |
| 109 | + <div class="feature-card" style="border-top: 3px solid #58a6ff;"> |
| 110 | + <h3>Hardware Schematic Analysis</h3> |
| 111 | + <p>Parse KiCad and Altium schematics to auto-generate pin maps, peripheral configs, and device tree overlays for your custom hardware.</p> |
| 112 | + </div> |
| 113 | + <div class="feature-card" style="border-top: 3px solid #bc8cff;"> |
| 114 | + <h3>Yocto-Style SDK Generation</h3> |
| 115 | + <p>Generate self-contained, relocatable SDKs with cross-toolchain, sysroot, and headers for offline development and CI/CD pipelines.</p> |
| 116 | + </div> |
| 117 | + <div class="feature-card" style="border-top: 3px solid #79c0ff;"> |
| 118 | + <h3>Package Management (YAML)</h3> |
| 119 | + <p>Declarative YAML recipes for packages with dependency resolution, version pinning, license checking, and reproducible builds.</p> |
| 120 | + </div> |
| 121 | + <div class="feature-card" style="border-top: 3px solid #f778ba;"> |
| 122 | + <h3>6 Project Templates</h3> |
| 123 | + <p>Kickstart projects with templates for bare-metal, RTOS, Linux, hybrid, library, and bootloader — each with best-practice structure.</p> |
| 124 | + </div> |
| 125 | + <div class="feature-card" style="border-top: 3px solid #e3b341;"> |
| 126 | + <h3>OS Image Creation</h3> |
| 127 | + <p>Build deployable OS images with partition tables, filesystem generation, bootloader integration, and signing — ready for production.</p> |
| 128 | + </div> |
| 129 | + <div class="feature-card" style="border-top: 3px solid #f85149;"> |
| 130 | + <h3>Auto-Dependencies</h3> |
| 131 | + <p>Automatic dependency graph analysis with incremental rebuilds, parallel compilation, and build cache for faster iteration cycles.</p> |
| 132 | + </div> |
| 133 | + </div> |
| 134 | + </section> |
| 135 | + |
| 136 | + <!-- Quick Start --> |
| 137 | + <div class="section-alt"> |
| 138 | + <section class="section"> |
| 139 | + <h2 class="section-title">Quick Start</h2> |
| 140 | + <p class="section-subtitle">Install ebuild and build your first project</p> |
| 141 | + <pre><code><span style="color: var(--text-muted);"># Clone and install</span> |
| 142 | +git clone https://github.com/embeddedos-org/ebuild.git |
| 143 | +cd ebuild |
| 144 | +pip install -e . |
| 145 | + |
| 146 | +<span style="color: var(--text-muted);"># Build for Raspberry Pi 4 with AI and networking</span> |
| 147 | +ebuild build --target raspi4 --with eai,eni |
| 148 | + |
| 149 | +<span style="color: var(--text-muted);"># Generate deployable image</span> |
| 150 | +ebuild image --format sdcard</code></pre> |
| 151 | + </section> |
| 152 | + </div> |
| 153 | + |
| 154 | + <!-- API Highlights --> |
| 155 | + <section class="section"> |
| 156 | + <h2 class="section-title">CLI Reference</h2> |
| 157 | + <p class="section-subtitle">Key commands at a glance</p> |
| 158 | + <table> |
| 159 | + <thead> |
| 160 | + <tr> |
| 161 | + <th>Command</th> |
| 162 | + <th>Description</th> |
| 163 | + <th>Example</th> |
| 164 | + </tr> |
| 165 | + </thead> |
| 166 | + <tbody> |
| 167 | + <tr> |
| 168 | + <td><code>ebuild init</code></td> |
| 169 | + <td>Initialize a new project from template</td> |
| 170 | + <td><code>ebuild init --template rtos</code></td> |
| 171 | + </tr> |
| 172 | + <tr> |
| 173 | + <td><code>ebuild build</code></td> |
| 174 | + <td>Build firmware for target board</td> |
| 175 | + <td><code>ebuild build --target stm32f4</code></td> |
| 176 | + </tr> |
| 177 | + <tr> |
| 178 | + <td><code>ebuild flash</code></td> |
| 179 | + <td>Flash firmware to connected device</td> |
| 180 | + <td><code>ebuild flash --port /dev/ttyUSB0</code></td> |
| 181 | + </tr> |
| 182 | + <tr> |
| 183 | + <td><code>ebuild sdk</code></td> |
| 184 | + <td>Generate relocatable SDK</td> |
| 185 | + <td><code>ebuild sdk --arch arm-cortex-m4</code></td> |
| 186 | + </tr> |
| 187 | + <tr> |
| 188 | + <td><code>ebuild package</code></td> |
| 189 | + <td>Create or install YAML packages</td> |
| 190 | + <td><code>ebuild package install mqtt</code></td> |
| 191 | + </tr> |
| 192 | + <tr> |
| 193 | + <td><code>ebuild image</code></td> |
| 194 | + <td>Build deployable OS image</td> |
| 195 | + <td><code>ebuild image --format emmc</code></td> |
| 196 | + </tr> |
| 197 | + <tr> |
| 198 | + <td><code>ebuild test</code></td> |
| 199 | + <td>Run unit and integration tests</td> |
| 200 | + <td><code>ebuild test --coverage</code></td> |
| 201 | + </tr> |
| 202 | + <tr> |
| 203 | + <td><code>ebuild schematic</code></td> |
| 204 | + <td>Analyze hardware schematics</td> |
| 205 | + <td><code>ebuild schematic parse board.kicad</code></td> |
| 206 | + </tr> |
| 207 | + </tbody> |
| 208 | + </table> |
| 209 | + </section> |
| 210 | + |
| 211 | + <!-- Footer --> |
| 212 | + <footer class="footer"> |
| 213 | + <div class="footer-inner"> |
| 214 | + <div class="footer-grid"> |
| 215 | + <a href="https://embeddedos-org.github.io/eos/">EoS — Embedded OS</a> |
| 216 | + <a href="https://embeddedos-org.github.io/eBoot/">eBoot — Bootloader</a> |
| 217 | + <a href="https://embeddedos-org.github.io/ebuild/">ebuild — Build System</a> |
| 218 | + <a href="https://embeddedos-org.github.io/eIPC/">eIPC — IPC Framework</a> |
| 219 | + <a href="https://embeddedos-org.github.io/eAI/">eAI — AI Framework</a> |
| 220 | + <a href="https://github.com/embeddedos-org/eos">GitHub — EoS</a> |
| 221 | + <a href="https://github.com/embeddedos-org/eBoot">GitHub — eBoot</a> |
| 222 | + <a href="https://github.com/embeddedos-org/ebuild">GitHub — ebuild</a> |
| 223 | + <a href="https://github.com/embeddedos-org/eIPC">GitHub — eIPC</a> |
| 224 | + <a href="https://github.com/embeddedos-org/eAI">GitHub — eAI</a> |
| 225 | + </div> |
| 226 | + <div class="footer-bottom"> |
| 227 | + © 2025 EmbeddedOS Organization. Open-source under the MIT License. |
| 228 | + </div> |
| 229 | + </div> |
| 230 | + </footer> |
| 231 | + |
| 232 | +</body> |
| 233 | +</html> |
0 commit comments