Skip to content
Snippets Groups Projects
Unverified Commit 319ce5d8 authored by Simão Gomes Viana's avatar Simão Gomes Viana
Browse files

Add breakfast support (roomservice)

parent 09e594af
No related branches found
No related tags found
No related merge requests found
......@@ -23,3 +23,13 @@ if [[ "$CUSTOM_PRODUCT" == "$this_product_name" ]]; then
export ROM_VERSION="$( (xmlstarlet sel -t -v "/manifest/remote[@name='XOS']/@revision" "$TOP/.repo/manifests/snippets/XOS.xml" | sed -e 's/refs\/heads\///') || \
(repo branch | grep '^\*' | awk '{ print $2 }') )"
fi
breakfast() {
if [ -z "$1" ]; then
echo "Please specify a device"
return 1
fi
PWD=$(pwd)
${CUSTOM_PRODUCT_DIR}/build/tools/roomservice.py $1
cd "$PWD"
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment