Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • shivaraj.kandhasamy/advligorts
  • gerritkuehn/advligorts
  • ezekiel.dohmen/advligorts
  • michael.thomas/advligorts
  • christopher.wipf/advligorts
  • erik.vonreis/advligorts
  • keith-thorne/advligorts
  • jonathan-hanks/advligorts
  • jameson.rollins/advligorts
  • rolf.bork/advligorts
  • cds/software/advligorts
11 results
Show changes
Commits on Source (4)
......@@ -17,6 +17,12 @@ $(shell cp -rp $(RCG_SRC)/src/fe/ $(mkfile_dir)/src/)
$(shell cp -rp $(RCG_SRC)/src/drv/ $(mkfile_dir)/src/)
$(shell cp -rp $(RCG_SRC)/src/shmem/ $(mkfile_dir)/src/)
# We always want to take these values from the below
# KernelVars.mk script and not the ENV
undefine IOP_MODEL
undefine BUILD_WITH_DOLPHIN
# Include the generated make variables, written by
# the feCodeGen.pl script.
include $(mkfile_dir)/KernelVars.mk
......
......@@ -643,7 +643,7 @@ sub node_processing {
return 1; # Do not call this function on leaves, we already did that
} elsif ($block_type eq "Reference") {
if ($source_block =~ /cdsIPCx/) {
if ($block_name !~ /[CGHKLMSX]\d\:/) {
if ($block_name !~ /[A-Z]\d\:/) {
die "***ERROR: Signal name of IPCx module must include IFO: $block_name\n";
}
}
......