Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
slapos
Commits
9f8e2506
Commit
9f8e2506
authored
Aug 21, 2023
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
4f92bcbc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
software/ors-amarisoft/config/enb.jinja2.cfg
software/ors-amarisoft/config/enb.jinja2.cfg
+3
-3
No files found.
software/ors-amarisoft/config/enb.jinja2.cfg
View file @
9f8e2506
...
...
@@ -152,7 +152,7 @@
# LTE cells
cell_list: [
{%- for
i, cell in enumerate(cell_list)
%}
{%- for
cell_ref, cell in cell_dict|dictsort
%}
{%- if cell['cell_type'] == 'lte' %}
XXX set rrh = cell.rrh + dereference if needed
{
...
...
@@ -168,8 +168,8 @@
{#- CA in between all LTE cells #}
scell_list: [
{%- for
j, cell2 in enumerate(cell_list)
%}
{%- if
j != i and cell2['type'] == 'cell_
lte' %}
{%- for
cell2_ref, cell2 in cell_dict|dictsort
%}
{%- if
cell2_ref != cell_ref and cell2['type'] == '
lte' %}
{
cell_id: {{ cell2['cell_id'] }},
cross_carrier_scheduling: false,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment