Move all gapps to a system/ folder

Signed-off-by: Paul Keith <javelinanddart@bestas.gr>
This commit is contained in:
Paul Keith 2017-04-06 16:29:53 -05:00
parent 2c6d5966f7
commit d5900b2891
No known key found for this signature in database
GPG Key ID: AB0BF746E05523CF

View File

@ -47,11 +47,12 @@ function create() {
PREBUILT=$TOP/$GARCH/proprietary
test -d $OUT || mkdir $OUT;
test -d $OUT/$GARCH || mkdir -p $OUT/$GARCH
test -d $OUT/$GARCH/system || mkdir -p $OUT/$GARCH/system
echo "Build directories are now ready" >> $GLOG
echo "Getting prebuilts..."
echo "Copying stuff" >> $GLOG
cp -r $PREBUILT/* $OUT/$GARCH >> $GLOG
cp -r $COMMON/* $OUT/$GARCH >> $GLOG
cp -r $PREBUILT/* $OUT/$GARCH/system >> $GLOG
cp -r $COMMON/* $OUT/$GARCH/system >> $GLOG
}
function zipit() {