| #
e82004bc |
| 17-Oct-2013 |
Masahiro Yamada <yamada.m@jp.panasonic.com> |
fs: move some file system to fs/Makefile
This commit moves some subdirectories of fs from the toplevel Makefile to fs/Makefile using Kbuild descending feature.
Signed-off-by: Masahiro Yamada <yamad
fs: move some file system to fs/Makefile
This commit moves some subdirectories of fs from the toplevel Makefile to fs/Makefile using Kbuild descending feature.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Acked-by: Simon Glass <sjg@chromium.org>
show more ...
|
| #
9c3f0bc5 |
| 17-Oct-2013 |
Masahiro Yamada <yamada.m@jp.panasonic.com> |
drivers: move some drivers to drivers/Makefile
This commit moves some drivers subdirectory entry from the toplevel Makefile to drivers/Makefile using Kbuild descending feature.
Signed-off-by: Masah
drivers: move some drivers to drivers/Makefile
This commit moves some drivers subdirectory entry from the toplevel Makefile to drivers/Makefile using Kbuild descending feature.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
show more ...
|
| #
71f84ef0 |
| 17-Oct-2013 |
Masahiro Yamada <yamada.m@jp.panasonic.com> |
ARM: imx-common: convert makefiles to Kbuild style
Multiple targets are included in arch/arm/imx-common/Makefile In order to refactor it, we need to tweak Makefile and spl/Makefile.
Signed-off-by:
ARM: imx-common: convert makefiles to Kbuild style
Multiple targets are included in arch/arm/imx-common/Makefile In order to refactor it, we need to tweak Makefile and spl/Makefile.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
show more ...
|
| #
ce28d7ac |
| 17-Oct-2013 |
Masahiro Yamada <yamada.m@jp.panasonic.com> |
Makefile: prepare for using Kbuild-style Makefile
Every makefile in sub directories has common lines at the top and the bottom. This commit pushes the common parts into script/Makefile.build.
Going
Makefile: prepare for using Kbuild-style Makefile
Every makefile in sub directories has common lines at the top and the bottom. This commit pushes the common parts into script/Makefile.build.
Going forward sub-makefiles only need to describe this part:
COBJS := ... COBJS += ... SOBJS := ...
But using obj-y is preferable to prepare for switching to Kbuild.
The conventional (non-Kbuild) Makefile style is still supported. This is achieved by greping the Makefile before entering into it. U-Boot conventional sub makefiles always include some other makefiles. So the build system searches a line beginning with "include" keyword in the makefile in order to distinguish which style it is. If the Makefile include a "include" line, we assume it is a conventional U-Boot style. Otherwise, it is treated as a Kbuild-style makefile.
With this tweak, we can switch sub-makefiles from U-Boot style to Kbuild style little by little.
obj-y := foo/ syntax (descending into the sub directory) is not supportd yet. It will be implemented in the upcomming commit.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Simon Glass <sjg@chromium.org> Cc: Tom Rini <trini@ti.com>
show more ...
|
| #
262737f0 |
| 11-Sep-2013 |
Shaohui Xie <Shaohui.Xie@freescale.com> |
powerpc/tool/pbl: fix pbl image compiling process
Previous process of compiling a PBL boot image is: 1: make <board_name_config> 2: make u-boot.pbl
for example: make T4240QDS_SDCARD_config make u-b
powerpc/tool/pbl: fix pbl image compiling process
Previous process of compiling a PBL boot image is: 1: make <board_name_config> 2: make u-boot.pbl
for example: make T4240QDS_SDCARD_config make u-boot.pbl
Now the process is: 1: make <board_name>
for example: make T4240QDS_SDCARD
Also, updated README.pblimage.
Signed-off-by: Shaohui Xie <Shaohui.Xie@freescale.com>
show more ...
|
| #
183acb70 |
| 16-Oct-2013 |
Tom Rini <trini@ti.com> |
Prepare v2013.10
Signed-off-by: Tom Rini <trini@ti.com>
|
| #
4fa7613c |
| 14-Oct-2013 |
Tom Rini <trini@ti.com> |
Merge branch 'master' of git://git.denx.de/u-boot-arm
|
| #
5a912043 |
| 11-Oct-2013 |
Albert ARIBAUD <albert.u.boot@aribaud.net> |
Merge branch 'u-boot-samsung/master' into 'u-boot-arm/master'
|
| #
0c5274e6 |
| 02-Oct-2013 |
Tom Rini <trini@ti.com> |
Prepare v2013.04-rc4
Signed-off-by: Tom Rini <trini@ti.com>
|
| #
04750447 |
| 24-Sep-2013 |
Piotr Wilczek <p.wilczek@samsung.com> |
drivers:power:max77693: add support for new multi function pmic max77693
This patch add support for new multi function pmic max77693. The driver is split into three modules: pmic, muic and fuelgage.
drivers:power:max77693: add support for new multi function pmic max77693
This patch add support for new multi function pmic max77693. The driver is split into three modules: pmic, muic and fuelgage.
Signed-off-by: Piotr Wilczek <p.wilczek@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
show more ...
|
| #
50c2a91b |
| 18-Sep-2013 |
Masahiro Yamada <yamada.m@jp.panasonic.com> |
Makefile: Do not show make debug messages
In commit 27af930, the top Makefile was adjusted to the new boards.cfg format.
But at the same time, -d option was added.
If you configure and make separa
Makefile: Do not show make debug messages
In commit 27af930, the top Makefile was adjusted to the new boards.cfg format.
But at the same time, -d option was added.
If you configure and make separately, for example like follows:
make omap4_panda_config make CROSS_COMPILE=<your_compiler_prefix>
it works fine as it did before.
But if you do them in one time like follows:
make omap4_panda CROSS_COMPILE=<your_compiler_prefix>
The log is sprinkled with annoying make debug messages.
This commit deletes -d option again.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Tested-by: Nishanth Menon <nm@ti.com>
show more ...
|
| #
1bce2aeb |
| 16-Sep-2013 |
Robert P. J. Day <rpjday@crashcourse.ca> |
Cosmetic: Fix a number of typos, no functional changes.
Fix various misspellings of things like "environment", "kernel", "default" and "volatile", and throw in a couple grammar fixes.
Signed-off-by
Cosmetic: Fix a number of typos, no functional changes.
Fix various misspellings of things like "environment", "kernel", "default" and "volatile", and throw in a couple grammar fixes.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
show more ...
|
| #
46ef4fae |
| 17-Sep-2013 |
Tom Rini <trini@ti.com> |
Prepare v2013.10-rc3
Signed-off-by: Tom Rini <trini@ti.com>
|
| #
c4a7ece0 |
| 13-Sep-2013 |
Stefano Babic <sbabic@denx.de> |
Merge branch 'master' of git://git.denx.de/u-boot-arm
Conflicts: MAINTAINERS boards.cfg
Signed-off-by: Stefano Babic <sbabic@denx.de>
|
| #
27af930e |
| 11-Sep-2013 |
Albert ARIBAUD <albert.u.boot@aribaud.net> |
Merge and reformat boards.cfg and MAINTAINERS
Put all informations about targets, including state (active or orphan) and maintainers, in boards.cfg; remove MAINTAINERS; adjust the build system accor
Merge and reformat boards.cfg and MAINTAINERS
Put all informations about targets, including state (active or orphan) and maintainers, in boards.cfg; remove MAINTAINERS; adjust the build system accordingly.
Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
show more ...
|
| #
7bcee5f7 |
| 12-Sep-2013 |
Tom Rini <trini@ti.com> |
Merge branch 'master' of git://git.denx.de/u-boot-arm
|
| #
5480ac32 |
| 11-Sep-2013 |
Albert ARIBAUD <albert.u.boot@aribaud.net> |
Merge branch 'u-boot-samsung/master' into 'u-boot-arm/master'
Conflicts: tools/Makefile
|
| #
4c267374 |
| 26-Aug-2013 |
Henrik Nordström <henrik@henriknordstrom.net> |
Always build u-boot.img when using CONFIG_SPL_FRAMEWORK
Use of uImage formatted u-boot have long been preferred, and recent changes to better support Falcon mode on MMC now enforces it on MMC.
Sign
Always build u-boot.img when using CONFIG_SPL_FRAMEWORK
Use of uImage formatted u-boot have long been preferred, and recent changes to better support Falcon mode on MMC now enforces it on MMC.
Signed-off-by: Henrik Nordstrom <henrik@henriknordstrom.net>
show more ...
|
| #
fb18fa95 |
| 02-Sep-2013 |
Tom Rini <trini@ti.com> |
Prepare v2013.10-rc2
Signed-off-by: Tom Rini <trini@ti.com>
|
| #
ad403e71 |
| 25-Jul-2013 |
Chander Kashyap <chander.kashyap@linaro.org> |
CONFIG: EXYNOS5: Replace misnomer SMDK5250 with EXYNOS5250 and update Makefiles
Update the Makefiles so that all boards can use the same spl generation tool
Signed-off-by: Inderpal Singh <inderpal.
CONFIG: EXYNOS5: Replace misnomer SMDK5250 with EXYNOS5250 and update Makefiles
Update the Makefiles so that all boards can use the same spl generation tool
Signed-off-by: Inderpal Singh <inderpal.singh@linaro.org> Acked-by: Simon Glass <sjg@chromium.org> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
show more ...
|
| #
6612ab33 |
| 21-Aug-2013 |
Tom Rini <trini@ti.com> |
Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx
|
| #
b6df9b01 |
| 21-Aug-2013 |
York Sun <yorksun@freescale.com> |
Makefile: Fix build in a separated directory tree
Fix a bug introduced by commit 3aa29dee TPL : introduce the TPL based on the SPL
Signed-off-by: York Sun <yorksun@freescale.com>
|
| #
3aa29de0 |
| 16-Aug-2013 |
Ying Zhang <b40530@freescale.com> |
TPL : introduce the TPL based on the SPL
Due to the nand SPL on some board(e.g. P1022DS)has a size limit, it can not be more than 4K. So, the SPL cannot initialize the DDR with the SPD code. This pa
TPL : introduce the TPL based on the SPL
Due to the nand SPL on some board(e.g. P1022DS)has a size limit, it can not be more than 4K. So, the SPL cannot initialize the DDR with the SPD code. This patch introduces TPL to enable a loader stub that is loaded by the code from the SPL. It initializes the DDR with the SPD or other operations.
The TPL's size is sizeable, the maximum size is decided by the memory's size that TPL runs. It initializes the DDR through SPD code, and copys final uboot image to DDR. So there are three stage uboot images: * spl_boot, * tpl_boot, * final uboot image
Signed-off-by: Ying Zhang <b40530@freescale.com> Acked-by: York Sun <yorksun@freescale.com>
show more ...
|
| #
39bc12dd |
| 19-Aug-2013 |
Joel Fernandes <joelf@ti.com> |
SPL: Makefile: Build a separate autoconf.mk for SPL
SPL defines CONFIG_SPL_BUILD but this does not percolate to the autoconf.mk Makefile. As a result the build breaks when CONFIG_SPL_BUILD is used
SPL: Makefile: Build a separate autoconf.mk for SPL
SPL defines CONFIG_SPL_BUILD but this does not percolate to the autoconf.mk Makefile. As a result the build breaks when CONFIG_SPL_BUILD is used in the board-specific include header file. With this, there is a possibility of having a CONFIG option defined in the header file but not defined in the Makefile causing all kinds of build failure and problems.
It also messes things for up, for example, when one might want to undefine options to keep the SPL small and doesn't want to be stuck with the CONFIG options used for U-boot. Lastly, this also avoids defining special CONFIG_SPL_ variables for cases where some options are required in U-boot but not in SPL.
We add a spl-autoconf.mk rule that is generated for SPL with the CONFIG_SPL_BUILD flag and conditionally include it for SPL builds.
Signed-off-by: Joel Fernandes <joelf@ti.com> Signed-off-by: Ying Zhang <b40530@freescale.com>
show more ...
|
| #
40a60c6e |
| 19-Aug-2013 |
Tom Rini <trini@ti.com> |
Prepare v2013.10-rc1
Signed-off-by: Tom Rini <trini@ti.com>
|