-
Notifications
You must be signed in to change notification settings - Fork 158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use flag files to hack dependencies #146
Open
ThinkerYzu
wants to merge
12
commits into
andreasgal:master
Choose a base branch
from
ThinkerYzu:flag-files-hack-dependencies
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 7 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
a2ae256
Use flag files to define dependencies
ThinkerYzu 45250bb
Create a flag file for extracted files for galaxy-s2
ThinkerYzu f887206
Prevent removing the flag file of extracted files
ThinkerYzu 43a76b4
Make gecko as a part of building process of gonk
ThinkerYzu b68e62d
Merge from master
ThinkerYzu 44ed8e3
Add gaia to the building process of gonk
ThinkerYzu fd70e07
Remove an unused target
ThinkerYzu 61a5158
Add the comment for requisites of Gecko
ThinkerYzu 7742a10
Clean all flag files for config-* targets
ThinkerYzu 2babe43
Force to extract blobs from a galaxy s2
ThinkerYzu 30d8fe5
Install init.rc for gonk instead of default one
ThinkerYzu 68b5df8
Remove rules that is no more used
ThinkerYzu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
############################################################ | ||
# Integrate Gecko to the building process of gonk. | ||
############################################################ | ||
LOCAL_PATH:= $(call my-dir) | ||
|
||
include $(CLEAR_VARS) | ||
|
||
LOCAL_MODULE := gecko-gonk | ||
LOCAL_MODULE_CLASS := EXECUTABLES | ||
LOCAL_MODULE_PATH := $(TARGET_OUT)/b2g | ||
LOCAL_MODULE_TAGS := optional | ||
|
||
####################################### | ||
include $(BUILD_SYSTEM)/base_rules.mk | ||
####################################### | ||
|
||
$(LOCAL_BUILT_MODULE): libc libstdc++ libm libdl libthread_db | ||
$(LOCAL_BUILT_MODULE): $(OUT_DIR)/.gecko-chg | ||
$(hide) $(MAKE) -C $(B2G_PATH) gecko-gonk-install && \ | ||
mkdir -p $$(dirname $@) && \ | ||
touch $@ | ||
|
||
############################################################ | ||
# Integrate Gaia to the building process of gonk. | ||
############################################################ | ||
include $(CLEAR_VARS) | ||
|
||
LOCAL_MODULE := gaia-gonk | ||
LOCAL_MODULE_CLASS := EXECUTABLES | ||
LOCAL_MODULE_PATH := $(TARGET_OUT)/home | ||
LOCAL_MODULE_TAGS := optional | ||
|
||
####################################### | ||
include $(BUILD_SYSTEM)/base_rules.mk | ||
####################################### | ||
|
||
$(LOCAL_BUILT_MODULE): $(OUT_DIR)/.gaia-chg | ||
$(hide) $(MAKE) -C $(B2G_PATH) gaia-gonk-install && \ | ||
mkdir -p $$(dirname $@) && \ | ||
touch $@ |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Prevent config-galaxy-s2 from downloading blobs from devices every time. It survives even after |make clean| or |make config-*|.