Skip to content

Commit

Permalink
build: Update device options
Browse files Browse the repository at this point in the history
Removed "--" for i9105 & i9105p
  • Loading branch information
andixlm committed Dec 26, 2014
1 parent d632327 commit ecd5aa9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ patch - patch ROM sources.

----------

build - build ROM. It asks for cleaning of 'out' directory (make clean) and device (i9105 or i9105p), then build for chosen device. Also it handles 1st option ('--i9105' or '--i9105p' or '--both'). To build with cleaning use --mc as a 2nd option. To build boot image (or recovery image) for device defined in 1st option w/o whole ROM building use 2nd option '--mb' ('--mr' for recovery).
build - build ROM. It asks for cleaning of 'out' directory (make clean) and device (i9105 or i9105p), then build for chosen device. Also it handles 1st option ('i9105' or 'i9105p' or '--both'). To build with cleaning use --mc as a 2nd option. To build boot image (or recovery image) for device defined in 1st option w/o whole ROM building use 2nd option '--mb' ('--mr' for recovery).

Credits:
pawitp - patches
Expand Down
8 changes: 4 additions & 4 deletions build
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ export USE_CCACHE=1

# Check 1st option
case "$1" in
--i9105 )
DEVICE=i9105
i9105 )
DEVICE=$1
FAST=1
;;
--i9105p )
DEVICE=i9105p
i9105p )
DEVICE=$1
FAST=1
;;
--both )
Expand Down

0 comments on commit ecd5aa9

Please sign in to comment.