-
Notifications
You must be signed in to change notification settings - Fork 32
PPM-268: Add SAH feed to prplwrt builds #1595
base: feature/ppm-300-optional-dependency-on-BAAPI-to-prplMesh-CMakeLists
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,3 +25,5 @@ | |
| - name: feed_pending | ||
| uri: https://intel.prpl.dev/intel/feed-pending.git | ||
| hash: 352365b31f968ab37e772b23c30ea32dbff9e337 | ||
| - name: sah | ||
| uri: https://gitlab.com/soft.at.home/buildsystems/openwrt/sah-packages.git | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here, please include a |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,6 +22,7 @@ case $TARGET_DEVICE in | |
| *) | ||
| cp feeds.conf.default feeds.conf | ||
| echo "src-git prpl $PRPL_FEED" >> feeds.conf | ||
| echo "src-git sah $SAH_FEED" >> feeds.conf | ||
| scripts/feeds update -a | ||
| scripts/feeds install -a | ||
| { | ||
|
|
@@ -34,6 +35,23 @@ case $TARGET_DEVICE in | |
| echo "CONFIG_TARGET_${TARGET_SYSTEM}_${SUBTARGET}=y" | ||
| echo "CONFIG_TARGET_${TARGET_SYSTEM}_${SUBTARGET}_${TARGET_PROFILE}=y" | ||
| echo "CONFIG_PACKAGE_prplmesh${PRPLMESH_VARIANT}=y" | ||
| # AMBIORIX modules to work with u-bus | ||
| echo "CONFIG_PACKAGE_amxb-ubus=y" | ||
| # AMBIORIX applications for debug | ||
| echo "CONFIG_PACKAGE_amxb-inspect=y" | ||
| echo "CONFIG_PACKAGE_amxo-cg=y" | ||
| echo "CONFIG_PACKAGE_amxrt=y" | ||
| # AMBIORIX libs | ||
| echo "CONFIG_PACKAGE_libamxb=y" | ||
| echo "CONFIG_PACKAGE_libamxc=y" | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The same changes have to be introduced in prplwrt for the axepoint/rax40 in a profile file. |
||
| echo "CONFIG_PACKAGE_libamxd=y" | ||
| echo "CONFIG_PACKAGE_libamxj=y" | ||
| echo "CONFIG_PACKAGE_libamxo=y" | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You might also want to check if all the config lines are needed, or if some are depended on by others and can be removed (maybe you did already). |
||
| echo "CONFIG_PACKAGE_libamxp=y" | ||
| echo "CONFIG_PACKAGE_libevent2=y" | ||
| # Dependencies of AMBIORIX | ||
| echo "CONFIG_PACKAGE_uriparser=y" | ||
| echo "CONFIG_PACKAGE_yajl=y" | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The different I would understand if you don't want to do this as part of this PR though, so (nitpick) |
||
| } >> .config | ||
| make defconfig | ||
| printf '%s=%s\n' "PRPL_FEED" "$PRPL_FEED" >> files/etc/prplwrt-version | ||
|
|
||
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.
Please include a specific commit hash for it (by appending a
^character, then the commit hash) to try to improve the reproducibility of the images.