diff --git a/aokp.devices b/aokp.devices new file mode 100644 index 0000000000..ff83946723 --- /dev/null +++ b/aokp.devices @@ -0,0 +1,11 @@ +angler +bacon +bullhead +condor +falcon +flo +hammerhead +hammerheadcaf +mako +m8 +oneplus2 diff --git a/vendorsetup.sh b/vendorsetup.sh index df7a7c0ba5..10d71e2196 100755 --- a/vendorsetup.sh +++ b/vendorsetup.sh @@ -1,9 +1,4 @@ -add_lunch_combo aokp_angler-userdebug -add_lunch_combo aokp_bacon-userdebug -add_lunch_combo aokp_bullhead-userdebug -add_lunch_combo aokp_flo-userdebug -add_lunch_combo aokp_hammerhead-userdebug -add_lunch_combo aokp_hammerheadcaf-userdebug -add_lunch_combo aosp_mako-userdebug -add_lunch_combo aokp_m8-userdebug -add_lunch_combo aokp_oneplus2-userdebug \ No newline at end of file +for device in $(cat vendor/aokp/aokp.devices) +do +add_lunch_combo aokp_$device-userdebug +done