-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
53 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Shell script for building Phoenix-RTOS firmware | ||
# | ||
# Builder for Phoenix-RTOS core components | ||
# | ||
# Copyright 2024 Phoenix Systems | ||
# Author: Lukasz Leczkowski | ||
# | ||
|
||
# fail immediately if any of the commands fails | ||
set -e | ||
|
||
b_log "Building phoenix-rtos-kernel" | ||
make -C "phoenix-rtos-kernel" all | ||
|
||
if [ "$LIBPHOENIX_DEVEL_MODE" = "y" ]; then | ||
make -C "phoenix-rtos-kernel" install-headers | ||
|
||
b_log "Building libphoenix" | ||
make -C "libphoenix" all install | ||
fi | ||
|
||
b_log "Building phoenix-rtos-corelibs" | ||
make -C "phoenix-rtos-corelibs" all | ||
|
||
b_log "Building phoenix-rtos-filesystems" | ||
make -C "phoenix-rtos-filesystems" all install | ||
|
||
b_log "Building phoenix-rtos-devices" | ||
make -C "phoenix-rtos-devices" all install | ||
|
||
b_log "Building coreutils" | ||
make -C "phoenix-rtos-utils" all install | ||
|
||
b_log "Building posixsrv" | ||
make -C "phoenix-rtos-posixsrv" all install |
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
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