Skip to content
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

Add support for the 'adb reboot bootloader' command #88

Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
odroidxu3: fix out of source builds due to broken paths
Use the $(srctree) var to correctly refer to file paths in the source
tree.

Change-Id: I13d8b6e0b98699b1e9f19cadf16e57b028505504
Signed-off-by: Khalid Zubair <kzubair@hcrest.com>
  • Loading branch information
statik213 committed Mar 10, 2015
commit 7fa45efe4db5f8ca98abeabbb6ac8471d6266a9e
2 changes: 1 addition & 1 deletion drivers/gud/gud-exynos5422/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# Makefile for the kernel mobicore drivers
#
GUD_ROOT_FOLDER := drivers/gud/gud-exynos5422/
GUD_ROOT_FOLDER := $(srctree)/drivers/gud/gud-exynos5422/
# add our modules to kernel.
obj-$(CONFIG_MOBICORE_API) += mcKernelApi.o
obj-$(CONFIG_MOBICORE_DRIVER) += mcDrvModule.o
Expand Down
2 changes: 1 addition & 1 deletion firmware/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ fw-shipped-$(CONFIG_USB_VICAM) += vicam/firmware.fw
fw-shipped-$(CONFIG_VIDEO_CPIA2) += cpia2/stv0672_vp4.bin
fw-shipped-$(CONFIG_YAM) += yam/1200.bin yam/9600.bin

TSPFIRMWARE_DIRECTORY = firmware/tsp_synaptics
TSPFIRMWARE_DIRECTORY = $(srctree)/firmware/tsp_synaptics
ifeq ($(shell test -d $(TSPFIRMWARE_DIRECTORY) && echo yes),yes)
fw-shipped-$(CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI) += tsp_synaptics/synaptics_b0_h.fw \
tsp_synaptics/synaptics_b0_fac.fw
Expand Down