This document describes how to update the Arm Mbed OS LWIP stack. The Mbed OS LWIP stack is a copy of the LWIP master repository. Stack is located in connectivity/lwipstack/lwip
directory.
When you add new releases or single commits from the LWIP master repository, you must fetch them using the Mbed OS LWIP fork repository. Use the repository to rename LWIP source files with the lwip_
prefix to make them compatible with the Mbed OS build system.
- The LWIP master repository is part of the LWIP project.
- The Mbed OS LWIP fork repository is part of
ARMmbed
.
You can integrate a new release using the following steps.
- Fetch the release to the Mbed OS LWIP fork.
- Prefix files in the Mbed OS LWIP fork with the
lwip_
prefix. - Merge the release to the Mbed OS repository.
-
Clone the Mbed OS LWIP fork repository.
git clone [email protected]:ARMmbed/lwip.git
-
Go to the Mbed OS LWIP fork root directory, and add the LWIP master repository as remote.
git remote add <remote name> https://git.savannah.nongnu.org/git/lwip.git
e.g. git remote add lwip https://git.savannah.nongnu.org/git/lwip.git
-
Pull the release from the LWIP master repository using the release tag. You can find tags here.
git pull <remote name> <tag>
e.g. git pull lwip STABLE-2_0_2_RELEASE_VER
-
Push the tag to the Mbed OS LWIP fork repository to keep the fork in sync.
git push origin <tag>
e.g. git push origin STABLE-2_0_2_RELEASE_VER
-
Create a branch for release. Use the same naming convention as previous branches.
git branch <branch name> <tag>
e.g. git branch mbed-os-lwip-stable-2_0_2 STABLE-2_0_2_RELEASE_VER
-
Push the branch to the Mbed OS LWIP fork repository to keep the fork in sync.
git push origin <branch name>
e.g. git push origin mbed-os-lwip-stable-2_0_2
-
Fetch the previous prefixed branch from the Mbed OS LWIP fork repository.
git fetch <remote name> <remote branch>:<local branch>
e.g. git fetch origin mbed-os-lwip-stable-2_0_1-prefixed:mbed-os-lwip-stable-2_0_1-prefixed
-
Checkout the latest prefixed branch.
git checkout <prefixed branch>
e.g. git checkout mbed-os-lwip-stable-2_0_1-prefixed
-
Merge the new branch to the prefixed branch.
git merge <branch name>
e.g. git merge mbed-os-lwip-stable-2_0_2
-
Check if there are any new or colliding files.
If there are new c-files rename those with
lwip_
prefix and make a commit about changes to the prefixed branch. Also, check that LWIP stack header file names do not collide with headers under the Mbed OS directory tree. If there are collisions, rename the colliding LWIP headers withlwip_
prefix.If needed, rename files, and make a commit. Update the C-files to include any renamed header files.
git mv <old filename> <new filename>
git commit
-
Rename the local prefixed branch to the new version. (Do not change branch names on remotes.)
git branch -m <new prefixed branch>
e.g. git branch -m mbed-os-lwip-stable-2_0_2-prefixed
-
Push the new local prefixed branch to the Mbed OS LWIP fork repository.
git push origin <new prefixed branch>
e.g. git push origin mbed-os-lwip-stable-2_0_2-prefixed
-
Clone the Mbed OS repository.
git clone [email protected]:ARMmbed/mbed-os.git
-
Go to the Mbed OS root directory, and add the Mbed OS LWIP fork repository as remote. Fetch branches from fork.
git remote add <remote name> https://github.com/ARMmbed/lwip.git
e.g. git remote add lwip-fork https://github.com/ARMmbed/lwip.git
git fetch <remote name>
e.g. git fetch lwip-fork
-
Do a subtree pull for LWIP prefixed branch in the Mbed OS root directory.
git subtree pull --squash -P connectivity/lwipstack/lwip <remote name> <new prefixed branch> -m "<commit message>"
e.g. git subtree pull --squash -P connectivity/lwipstack/lwip lwip-fork mbed-os-lwip-stable-2_0_2-prefixed -m "Merged lwip 2.0.2 stable"
After this step, there is a new commit visible in the Mbed OS master branch that contains the changes.
-
Verify that changes in the new commit are correct, and create a new branch. Push the branch to your Mbed OS fork for GitHub review.