summaryrefslogtreecommitdiffstats
path: root/arch/arm/configs/usb_a9g20_defconfig
Commit message (Collapse)AuthorAgeFilesLines
* arch: refresh defconfigsSascha Hauer2016-10-121-36/+30
| | | | | | | | | | | | | | | | | | | | | | 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>
* defaultenv: add defaultenv-1 in boards via defaultenv_append_directory()Sascha Hauer2016-10-101-1/+0
| | | | | | | | | | | | | | | | | | | | Currently it's hardcoded for each board which defaultenv version is used. This is unfortunate since some people like the other defaultenv version better and may want to select it. This patch removes the board specific environment path CONFIG_DEFAULT_ENVIRONMENT_PATH and instead adds it via: if (IS_ENABLED(CONFIG_DEFAULT_ENVIRONMENT_GENERIC)) defaultenv_append_directory(defaultenv_<board>); This way we can make sure that the defaultenv-1 board specific bits are only compiled in when defaultenv-1 is actually in use. The next step is to make the defaultenv version selection a user visible choice. 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>
* command: passwd: depend on CMD_LOGIN rather than selecting itSascha Hauer2014-11-271-0/+1
| | | | 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>
* usb-a9g20: add mmc spi supportJean-Christophe PLAGNIOL-VILLARD2012-11-161-1/+9
| | | | | | | on the 9g20 low power version we have a mmc spi as microSD Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* defconfig: Switch all defconfig to new tftp commandSascha Hauer2012-09-281-2/+2
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Calao boards: enable the pblJean-Christophe PLAGNIOL-VILLARD2012-09-061-0/+1
| | | | | | | so we are smaller than the 256KiB reserved for barebox Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* ARM defconfigs: Use TLSF malloc on defconfigs getting too bigSascha Hauer2012-06-291-0/+1
| | | | | | | | | | | | | | | | | Several boards are getting bigger than their specified maximum binary size of 256Kb. Enable the TLSF allocator for them which is smaller than the original dlmalloc. The changed defconfigs are: eukrea_cpuimx25_defconfig eukrea_cpuimx35_defconfig eukrea_cpuimx51_defconfig usb_a9260_defconfig usb_a9263_128mib_defconfig usb_a9263_defconfig usb_a9g20_128mib_defconfig usb_a9g20_defconfig Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* usb-a926x: enable MMUJean-Christophe PLAGNIOL-VILLARD2012-04-101-0/+1
| | | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Cc: Gregory HERMANT <gregory.hermant@calao-systems.com>
* usb-a926x: add oftree supportJean-Christophe PLAGNIOL-VILLARD2012-04-101-2/+4
| | | | | | | | Boot via nfs instead of tftp and zImage. Update nand partition layout to store the oftree. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Cc: Gregory HERMANT <gregory.hermant@calao-systems.com>
* calao/boards: specify BAREBOX_MAX_IMAGE_SIZE to 256KiBJean-Christophe PLAGNIOL-VILLARD2012-01-171-0/+1
| | | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* calao/usb-926x: update usb gadget supportJean-Christophe PLAGNIOL-VILLARD2012-01-041-1/+5
| | | | | | | | | | | | enable serial and dfu at the same time senario if the usb device is plugged and the BP is not pressed at boot time during 5s the usbserial will be enable disable zlib support to fit in the 256K Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* usb-a926x: update defconfigJean-Christophe PLAGNIOL-VILLARD2012-01-021-4/+16
| | | | | | | enable led, triggers, uimage, oftree, dfu, etc... Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* at91: add Calao USB-A960 and USB-A9G20 C01 & C11 board supportJean-Christophe PLAGNIOL-VILLARD2011-09-201-0/+58
http://www.calao-systems.com Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>