summaryrefslogtreecommitdiffstats
path: root/arch/arm/configs/tqma53_defconfig
Commit message (Collapse)AuthorAgeFilesLines
* arch: refresh defconfigsSascha Hauer2016-10-121-27/+27
| | | | | | | | | | | | | | | | | | | | | | The defconfig files are long untouched and a make xy_defconfig; make savedefconfig usually generates quite a different looking file. Refresh them to make it easier to generate patches against the configs using make xy_defconfig; make menuconfig; make savedefconfig This has been done with the following script. for a in arch/*; do arch=$(basename $a) for c in $a/configs/*; do config=$(basename $c) export ARCH=$arch make $config && make savedefconfig && mv defconfig $c done done Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* bootm: Move bootm options to common/KconfigSascha Hauer2016-05-101-5/+5
| | | | | | | | | | | | bootm has a C API, so the bootm options have to depend on the option providing the bootm code (CONFIG_BOOTM), not on the option providing the command (CONFIG_CMD_BOOTM). Fixing the dependencies makes it possible to fully use bootm from C without enabling the bootm command support. This also removes the CMD_ prefix from the options which means we have to update the defconfigs aswell. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* ARM: remove nonexisting env directories from defconfigsSascha Hauer2014-09-121-1/+0
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* commands: NET_DHCP -> CMD_DHCPHolger Schurig2014-05-141-1/+1
| | | | | | | | | | | * this compile option actually turns on a command, so name it accordingly * also move the Kconfig definition into commands/Kconfig, thus placing getopt into the "Network commands" section * while at it, improve Kconfig documention Signed-off-by: Holger Schurig <holgerschurig@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* commands: NET_PING -> CMD_PINGHolger Schurig2014-05-141-1/+1
| | | | | | | | | | | * this compile option actually turns on a command, so name it accordingly * also move the Kconfig definition into commands/Kconfig, thus placing getopt into the "Network commands" section * while at it, improve Kconfig documention Signed-off-by: Holger Schurig <holgerschurig@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* ARM: i.MX53: tqma53: Switch to devicetree and multiboard supportSascha Hauer2014-01-291-5/+14
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* ARM tqma53: switch to new environmentSascha Hauer2012-07-041-6/+8
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* defenv: remove bogus defaultenv from defconfigsSascha Hauer2012-03-201-1/+1
| | | | | | | | | When CONFIG_DEFAULT_ENVIRONMENT_GENERIC is set the Make system will automatically compile in defaultenv/ into the environment. Some boards explicitely add this path again in their defconfig which is not needed. Remove it. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* initial tqm53 supportSascha Hauer2012-02-131-0/+64
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>