Skip to content
Snippets Groups Projects
Unverified Commit 87aa1c52 authored by Michal Hrusecky's avatar Michal Hrusecky :mouse:
Browse files

Disable node


Signed-off-by: default avatarMichal Hrusecky <Michal@Hrusecky.net>
parent 211a9e4e
Branches
Tags
No related merge requests found
......@@ -320,6 +320,11 @@ get_feeds() {
perl $PERL_DEBUG ./scripts/feeds clean -a
perl $PERL_DEBUG ./scripts/feeds update -a
perl $PERL_DEBUG ./scripts/feeds install -a
set +e
DISABLED_PACKAGES="$(cat disabled_packages/common disabled_packages/${TARGET_BOARD} 2> /dev/null)"
DISABLED_PACKAGES="$(echo "$DISABLED_PACKAGES" | sed 's|#.*||' | grep .)"
set -e
[ -z "$DISABLED_PACKAGES" ] || perl $PERL_DEBUG ./scripts/feeds uninstall $DISABLED_PACKAGES
}
repatch_feeds_help="Cleanup feeds, update them and patch them"
......
node
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment