Commit 7711e50
committed
Fix build system regressions
This commit consolidates multiple build system fixes:
1. DTB compilation regression
- Fixed unconditional DTB build in user-space mode
- Fixed WebAssembly build missing DTB dependencies
- Fixed DTB not being built on macOS-arm64 for SYSTEM mode
2. Makefile syntax error
- Fixed TAB characters before $(warning) in mk/toolchain.mk
- This prevented entire Makefile from parsing correctly
3. emcc configuration pollution
- Fixed .config persistence causing ENABLE_SYSTEM=1 to leak
- Added distclean before emcc builds to ensure clean state
4. Ubuntu ARM64 apt-get failures
- Ignore non-critical dep11 (AppStream metadata) failures
- Only retry on critical package index failures (Packages/Sources/Release)
- Use || true for apt install to prevent exit code 100 from dep11 issues
- Verify critical packages (make, git, curl, clang, bc) are installed
- Exit with error only if actual package installation fails1 parent 2cc7b01 commit 7711e50
4 files changed
+71
-18
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
135 | 135 | | |
136 | 136 | | |
137 | 137 | | |
| 138 | + | |
138 | 139 | | |
139 | 140 | | |
140 | 141 | | |
141 | 142 | | |
142 | 143 | | |
143 | 144 | | |
144 | 145 | | |
145 | | - | |
| 146 | + | |
146 | 147 | | |
147 | 148 | | |
148 | 149 | | |
| |||
301 | 302 | | |
302 | 303 | | |
303 | 304 | | |
304 | | - | |
305 | | - | |
306 | | - | |
| 305 | + | |
| 306 | + | |
| 307 | + | |
| 308 | + | |
| 309 | + | |
| 310 | + | |
| 311 | + | |
| 312 | + | |
| 313 | + | |
| 314 | + | |
| 315 | + | |
| 316 | + | |
| 317 | + | |
| 318 | + | |
| 319 | + | |
| 320 | + | |
| 321 | + | |
| 322 | + | |
| 323 | + | |
| 324 | + | |
| 325 | + | |
| 326 | + | |
| 327 | + | |
| 328 | + | |
| 329 | + | |
| 330 | + | |
| 331 | + | |
| 332 | + | |
307 | 333 | | |
308 | 334 | | |
309 | 335 | | |
310 | 336 | | |
311 | 337 | | |
312 | 338 | | |
313 | 339 | | |
314 | | - | |
| 340 | + | |
| 341 | + | |
| 342 | + | |
| 343 | + | |
| 344 | + | |
| 345 | + | |
| 346 | + | |
| 347 | + | |
| 348 | + | |
315 | 349 | | |
316 | 350 | | |
317 | 351 | | |
| |||
435 | 469 | | |
436 | 470 | | |
437 | 471 | | |
| 472 | + | |
438 | 473 | | |
439 | 474 | | |
440 | 475 | | |
441 | 476 | | |
442 | 477 | | |
443 | 478 | | |
444 | 479 | | |
445 | | - | |
| 480 | + | |
446 | 481 | | |
447 | 482 | | |
448 | 483 | | |
| |||
499 | 534 | | |
500 | 535 | | |
501 | 536 | | |
502 | | - | |
503 | | - | |
504 | | - | |
505 | | - | |
506 | | - | |
507 | | - | |
508 | | - | |
509 | | - | |
| 537 | + | |
| 538 | + | |
| 539 | + | |
| 540 | + | |
| 541 | + | |
| 542 | + | |
| 543 | + | |
| 544 | + | |
510 | 545 | | |
511 | 546 | | |
512 | 547 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
392 | 392 | | |
393 | 393 | | |
394 | 394 | | |
395 | | - | |
| 395 | + | |
396 | 396 | | |
397 | 397 | | |
398 | 398 | | |
| |||
437 | 437 | | |
438 | 438 | | |
439 | 439 | | |
440 | | - | |
| 440 | + | |
441 | 441 | | |
442 | 442 | | |
443 | 443 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
28 | | - | |
| 28 | + | |
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
166 | 166 | | |
167 | 167 | | |
168 | 168 | | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | + | |
| 179 | + | |
| 180 | + | |
| 181 | + | |
| 182 | + | |
| 183 | + | |
| 184 | + | |
| 185 | + | |
| 186 | + | |
0 commit comments