This repository was archived by the owner on Mar 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 59
Networking: Adding Base Networking Support for CC using iproute2 #44
Merged
Merged
Changes from all commits
Commits
Show all changes
46 commits
Select commit
Hold shift + click to select a range
989bdb7
Initial draft of redesign necessary to support networking.
jodh-intel 803338a
Merge branch 'master' into networking
jodh-intel e320d0d
Merge branch 'master' into networking
jodh-intel 3899585
Merge branch 'master' into networking
jodh-intel 416b11e
Recreate state file to allow "start" to work.
jodh-intel 14e4eed
Merge branch 'master' into networking
jodh-intel f1f7773
Merge branch 'master' into networking
jodh-intel c175dae
Merge branch 'master' into networking
jodh-intel 9482c47
Merge branch 'master' into networking
jodh-intel 50a8de7
Merge branch 'master' into networking
jodh-intel dddd5bf
Merge branch 'master' into networking
jodh-intel b0dc2fb
Merge branch 'master' into networking
jodh-intel 7de5308
Merge branch 'master' into networking
jodh-intel 553d3b1
Merge branch 'master' into networking
jodh-intel fc62d6b
Merge branch 'master' into networking
jodh-intel 97cb5f7
Merge branch 'master' into networking
jodh-intel 7d49cf6
Merge branch 'master' into networking
jodh-intel 6029b1c
Merge branch 'master' into networking
jodh-intel 863b887
Merge branch 'master' into networking
jodh-intel 9ba1eed
Merge branch 'master' into networking
jodh-intel a58122e
Merge branch 'master' into networking
jodh-intel c2da04a
Merge branch 'master' into networking
jodh-intel 834cd4f
Merge branch 'master' into networking
jodh-intel 267c7f2
Merge branch 'master' into networking
jodh-intel cba7da5
Merge branch 'master' into networking
jodh-intel a41c96e
Merge branch 'master' into networking
jodh-intel aca3568
Networking: Basic Networking Support
mcastelino bd6ba81
Networking: Fix prehook invocation
mcastelino 91d31cd
Networking: Adding support for docker --net=none
mcastelino 48c9096
Networking: free network config parameters
mcastelino f942e18
Merge pull request #43 from mcastelino/networking
mcastelino d19098a
Networking: Incorporate code review feedback
mcastelino a78ccdd
Merge pull request #45 from mcastelino/networking
mcastelino ce6117d
configure.ac: add libnetlink check from iproute2
miguelinux e94ceb7
Merge pull request #46 from miguelinux/networking-add-libnetlink-requ…
mcastelino 31d1714
DOCS: Add iproute2 dependency to build cc-oci-runtime
gorozco1 90c6efc
Merge pull request #52 from gorozco1/networking
f699092
Merge branch 'master' into networking
jodh-intel c5540bd
Merge branch 'master' into networking
jodh-intel 40dbfcd
Remove duplicate net cfg variable expansion code caused by bad merge.
jodh-intel ac08179
Networking: Address code review comments
mcastelino c17c9b9
Merge branch 'master' into networking
jodh-intel fa9a42b
Networking: Default gateway support
mcastelino 2fbfd7f
Merge pull request #75 from mcastelino/networking
mcastelino e90b253
Networking: Remove netlink dependency
mcastelino e376cf6
Merge pull request #76 from mcastelino/networking
mcastelino File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -211,6 +211,7 @@ installed on your system: | |
- glib | ||
- json-glib | ||
- uuid | ||
- iproute2 | ||
|
||
Configure Stage | ||
~~~~~~~~~~~~~~~ | ||
|
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Why do not put KERNEL_NET_PARAMS in a new line?
Uh oh!
There was an error while loading. Please reload this page.
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.
@devimc That is because it is actually a concatenation to the same param (i.e kernel command line). Hence we have to put it in the same line. The way the current param expansion logic works it has to be on the same line AFAIK