9
0
Fork 0
barebox/arch/sandbox
Sascha Hauer 221d6f5d79 arch: refresh defconfigs
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>
2016-10-12 08:58:31 +02:00
..
board restart: replace reset_cpu with registered restart handlers 2015-08-27 21:37:03 +02:00
configs arch: refresh defconfigs 2016-10-12 08:58:31 +02:00
dts sandbox: add sample dts 2015-03-06 07:42:21 +01:00
include/asm rework remap_range 2015-11-03 07:27:44 +01:00
lib kbuild: move asm-offsets.h rule to ./Kbuild 2015-01-08 13:55:38 +01:00
mach-sandbox/include/mach restart: replace reset_cpu with registered restart handlers 2015-08-27 21:37:03 +02:00
os restart: replace reset_cpu with registered restart handlers 2015-08-27 21:37:03 +02:00
Kconfig sandbox: add support to pass dtb to barebox 2015-03-06 07:42:21 +01:00
Makefile sandbox: Makefile: drop unused SUBARCH stuff 2016-10-04 08:15:46 +02:00