-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cfe2cos, the mega-merge #333
base: ppos
Are you sure you want to change the base?
Changes from 138 commits
9388ff3
a5a4420
8214daa
01b1f19
5132ac3
4362aa2
545f25d
454243b
4087a1d
a06dab4
efcf1de
b365e98
0b80327
786ba2b
fdc75ab
449b2d6
1fce2f5
9a51c19
7ee5df4
b43d2ef
9258b1a
6077404
77bab05
69b4266
a532cec
e9b0183
ba48792
af7d350
313afb1
0884f59
12251d6
9690464
b75a93a
bc402ea
14552bd
60042be
ad69a1a
939e44e
62655e3
2ea12ed
323c382
3642436
1cc24c6
027e727
d8cdca3
2552fc0
a34e6d5
3d8a74b
bf8bd5d
8e15b2c
69938ee
30ea6b6
fa71ced
0d5c45e
a6f3148
f352952
f9f0c75
b9a0c8e
298660c
8ac36a6
75e0315
ba87ec9
6afe189
b3f3e78
9491cba
bfedf77
0a16241
5f3ae27
aef5c63
aa092ee
170a02f
8648c1d
9eb4bcc
32326a4
758dfdb
beab83b
40a9bb9
effa171
5a533f5
7146b84
5fc4f0f
4d650bc
6852394
0f5be70
205956c
cf43ad8
30bb538
01a70ef
381ab1a
232627d
437088d
f330c26
d91ab81
bea3a91
25c5e4a
742b4a3
5a5ba6e
7dd5112
6caddb5
06b7f8f
db97cdd
497f0eb
a5d45cb
9a366d8
3c91590
75af8e6
d2b1a6f
b34d539
993190f
4392a50
cf3f3a8
4c557d6
e743543
dcdddf1
a60b702
610cec6
12b3926
4b5be40
9993fdc
3a5920b
dbff2f5
71a8d17
9db1fba
02293f9
284585f
8e24b16
cb3b1ac
8622869
cd45f00
453b680
6fe1bb7
0aa12f3
aa50fd7
6bb6eb5
480e92c
badba1a
99dba05
edcdb78
bb134b1
16896bd
1fecd4a
1067a29
67fb31e
fc1095b
6869ec4
1913e01
939705b
80e6639
419497e
3b183d1
5df1cda
51051c8
6d5c47f
caf490c
acd7422
176901c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[submodule "src/components/lib/ps"] | ||
path = src/components/lib/ps | ||
url = https://github.com/gwsystems/ps.git | ||
[submodule "src/extern/cFE"] | ||
path = src/extern/cFE | ||
url = https://github.com/Others/cFE.git | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
MAKEFLAGS=--no-print-directory --section-alignment 0x1000 -I$(PWD) | ||
#$(info Make flags $(MAKEFLAGS)) | ||
|
||
.PHONY: default all extern comps plat init_extern | ||
default: | all cp | ||
|
||
all: comps plat | ||
all: | extern comps plat | ||
|
||
extern: | ||
$(MAKE) $(MAKEFLAGS) -C extern | ||
|
||
comps: | ||
$(info ) | ||
|
@@ -36,8 +40,15 @@ distclean: clean | |
$(MAKE) $(MAKEFLAGS) -C components distclean | ||
@rm -f `pwd`/../transfer/* | ||
|
||
init: | ||
init: | ensure_config init_extern init_composite | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Never used There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It sequences the dependencies |
||
|
||
ensure_config: | ||
test -f PLATFORM_ID || $(MAKE) $(MAKEFLAGS) config | ||
|
||
init_extern: | ||
$(MAKE) $(MAKEFLAGS) -C extern init | ||
|
||
init_composite: | ||
$(MAKE) $(MAKEFLAGS) -C components init | ||
$(MAKE) $(MAKEFLAGS) PLATFORM=$(shell cat PLATFORM_ID) -C platform init | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
gen | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why another .gitignore in the same git repo? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's more flexible. We don't need super long paths in the top level There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see. I'm not sure how this works, does git ignore files from both local .gitignore and the global repository .gitignore? |
||
test | ||
*.d.[0-9]* |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# C_OBJS=cFE_entrypoint.o cFE_stub.o osapi.o osfiles.o osloader.o osqueue.o ostask.o ostimer.o osnetwork.o psp.o scheddev/sl.c scheddev/sl_mod_fprr.c | ||
ASM_OBJS= | ||
COMPONENT=cFE_booter.o | ||
INTERFACES=cFE | ||
DEPENDENCIES=capmgr | ||
IF_LIB:=./composite_cFE.o ./cFE_fs.o $(wildcard test/*.o) | ||
ADDITIONAL_LIBS=-lcobj_format $(LIBSLCAPMGR) -lheap -lsl_lock -lsl_thd_static_backend | ||
|
||
include ../../Makefile.subsubdir | ||
CFLAGS += -I./gen -I ./test/shared $(CPPFLAGS) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. don't think there's supposed to be a space between |
||
|
||
MANDITORY_LIB=simple_stklib.o |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be sourced from gwsystems instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No. This is not the cFE repository on gwsystems. (Which really should be changed back to
cFE2cos
...) This cFE repo just has cFE code in it.