generated from jeonghanlee/env-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e59c496
commit 6549df7
Showing
5 changed files
with
60 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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 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 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 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 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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# New Module | ||
|
||
I would like to add the following repository for the production environemnt. | ||
|
||
https://github.com/DiamondLightSource/pmac | ||
|
||
## | ||
|
||
The commit is July 15, 2024 at the `dls-master` branch | ||
In `configure/RELEASE` | ||
|
||
|
||
```bash | ||
# https://github.com/DiamondLightSource/pmac | ||
# 2024-07-15 dls-master | ||
SRC_URL_PMAC:=https://github.com/DiamondLightSource/pmac¶ | ||
SRC_NAME_PMAC:=pmac | ||
SRC_TAG_PMAC:=3d2e73f | ||
SRC_VER_PMAC:=3d2e73f | ||
``` | ||
|
||
Edit `configure/CONFIG_MODS` if the module URL is not `github/epics-modules` | ||
|
||
``` | ||
SRC_GITURL_PMAC:=$(strip $(SRC_URL_PMAC))/$(strip $(SRC_NAME_PMAC)) | ||
``` | ||
|
||
Edit `configure/CONFIG_MODS_DEPS` | ||
|
||
```bash | ||
pmac_DEPS:=null.base build.asyn build.calc build.motor build.busy¶ | ||
``` | ||
|
||
|
||
|
||
* Edit `configure/RULES_MODS_CONFIG` | ||
|
||
Please consult `XXXApp/src/Makefile` to check its real dependency and add the proper configuration name in one of the following variables. | ||
|
||
- `MOD_ZERO_VARS` : This module has only EPICS base dependency. | ||
- `MOD_ONE_VARS` : This module has multiple EPICS modules dependencies. | ||
|
||
pmac has asyn, calc, motor, busy dependencies. So add conf.pmc into MODS_ONE_VARS | ||
|
||
```bash | ||
MODS_ZERO_VARS:=conf.iocStats conf.MCoreUtils conf.retools conf.caPutLog conf.recsync conf.autosave conf.sncseq conf.ether_ip conf.sscan conf.snmp conf.opcua conf.pyDevSup | ||
MODS_ONE_VARS:=conf.calc conf.asyn conf.modbus conf.lua conf.std conf.StreamDevice conf.busy conf.scaler conf.mca | ||
``` | ||
|
||
|