-
Notifications
You must be signed in to change notification settings - Fork 3
Easy way to sync changes between v0.3 and v0.4 halcogen.dils
Steven Huang edited this page Mar 11, 2018
·
1 revision
Using the Halcogen GUI, make modifications to either one of platform-obc-v0.3/halcogen.dil
or platform-obc-v0.4/halcogen.dil
For example, say platform-obc-v0.4/halcogen.dil
is modified and we want the same changes made to platform-obc-v0.3/halcogen.dil
- First create the diff
git diff -- *.dil > dil_diff
- Apply the diff to the other halcogen.dil
patch -p1 platform-obc-v0.3\halcogen.dil .\dil_diff
- Double check changes to make sure it worked right (it should)
git diff -- *.dil
- Make further modifications using the Halcogen GUI as needed