Ian Campbell
d9a2047641
sunxi: kconfig: Introduce CONFIG_TARGET_<BOARD>
...
This was done automatically with the following bits of scripting.
The Kconfig choice content was generated with this script snippet:
for i in $(git grep -l CONFIG_ARCH_SUNXI configs/*) ; do
TARGET=$(sed -n -e 's/CONFIG_SYS_EXTRA_OPTIONS="\([^,"]\+\).*/\1/p' $i);
MACH=$(sed -n -e 's/.*CONFIG_\(MACH_SUN.I\)=./\1/p' $i)
echo "config TARGET_$TARGET"
echo " bool \"$TARGET\""
echo " depends on $MACH"
echo
done
defconfigs were updated with a sed script (t):
# Extract board from first entry of CONFIG_SYS_EXTRA_OPTIONS,
/^CONFIG_SYS_EXTRA_OPTIONS/ {
s/^\(CONFIG_SYS_EXTRA_OPTIONS="\)\([^,"]\+\),\?\(.*\)/\1\3\nCONFIG_TARGET_\2=y/;
# Print and delete first line (CONFIG_SYS_EXTRA_OPTIONS), leaving
# CONFIG_TARGET_<BOARD> in pattern space
P;D;
};
# Move CONFIG_TARGET_<BOARD> to hold space
/^CONFIG_TARGET/{h;n}
# Print CONFIG_TARGET_<BOARD> after CONFIG_MACH_<SOC> in either SPL or
# normal mode.
/^CONFIG_MACH/{p;g;p;n};
/^\+S:CONFIG_MACH/{p;g;s/^CONFIG_TARGET/+S:&/;p;n};
# Print any remaining lines normally
p;
Run as:
sed -i -n -f t $(git grep -l CONFIG_ARCH_SUNXI configs/*)
and then manually removing the one instance of CONFIG_SYS_EXTRA_OPTIONS="" from
Colombus_defconfig
board/sunxi/Makefile was updated with:
sed -e 's/^\(obj-\$(CONFIG_\)\(.*\)\().*+= dram_.*\)/\1TARGET_\2\3/g' board/sunxi/Makefile
and manually retabbing a few lines to line up again.
The board descriptions could certainly be improved.
Signed-off-by: Ian Campbell <ijc@hellion.org.uk>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
2014-11-05 13:09:58 +01:00
..
2014-10-23 11:53:02 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-24 18:30:28 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-10-10 09:44:43 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-09-24 18:30:28 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-10-23 09:59:21 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-09-24 18:30:28 -04:00
2014-10-29 09:02:09 -04:00
2014-10-22 21:50:33 -06:00
2014-10-29 09:02:09 -04:00
2014-10-23 09:59:21 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-09-24 18:30:28 -04:00
2014-09-24 18:30:28 -04:00
2014-09-24 18:30:28 -04:00
2014-09-24 18:30:28 -04:00
2014-09-24 18:30:28 -04:00
2014-09-24 18:30:28 -04:00
2014-09-24 18:30:28 -04:00
2014-09-24 18:30:28 -04:00
2014-09-24 18:30:28 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-24 18:30:28 -04:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-10-23 09:59:21 -04:00
2014-09-24 18:30:28 -04:00
2014-10-29 09:02:09 -04:00
2014-09-24 18:30:28 -04:00
2014-11-01 18:18:05 +01:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-09-24 18:30:28 -04:00
2014-10-29 09:02:09 -04:00
2014-10-27 14:35:55 +01:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-09-24 18:30:28 -04:00
2014-09-24 18:30:28 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-09-24 18:30:28 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-09-24 18:30:28 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-09-24 18:30:28 -04:00
2014-09-13 16:43:55 -04:00
2014-11-04 15:01:46 -05:00
2014-09-24 18:30:28 -04:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-08-30 21:22:00 -04:00
2014-10-23 11:53:02 -04:00
2014-09-13 16:43:55 -04:00
2014-09-24 18:30:28 -04:00
2014-10-29 09:02:09 -04:00
2014-10-27 14:35:56 +01:00
2014-09-13 16:43:55 -04:00
2014-11-01 18:18:04 +01:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-10-23 09:59:21 -04:00
2014-09-24 18:30:28 -04:00
2014-09-24 18:30:27 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-09-24 18:30:27 -04:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-10-23 09:59:21 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-10-31 00:46:35 +01:00
2014-09-24 18:30:27 -04:00
2014-10-27 11:03:33 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-09-24 18:30:27 -04:00
2014-09-13 16:43:55 -04:00
2014-09-24 18:30:28 -04:00
2014-10-29 09:02:09 -04:00
2014-10-31 00:38:15 +01:00
2014-10-27 17:54:12 -04:00
2014-09-24 18:30:28 -04:00
2014-11-01 18:18:05 +01:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-24 18:30:28 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-24 18:30:28 -04:00
2014-09-24 18:30:28 -04:00
2014-09-24 18:30:28 -04:00
2014-09-24 18:30:27 -04:00
2014-09-13 16:43:55 -04:00
2014-10-25 07:27:37 -04:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-10-27 09:05:43 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-10-23 11:53:02 -04:00
2014-11-01 18:18:04 +01:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-24 18:30:28 -04:00
2014-10-29 09:02:09 -04:00
2014-09-24 18:30:28 -04:00
2014-09-24 18:30:28 -04:00
2014-09-13 16:43:55 -04:00
2014-10-27 14:35:55 +01:00
2014-10-29 09:02:09 -04:00
2014-11-01 18:18:04 +01:00
2014-09-13 16:43:55 -04:00
2014-10-23 09:59:21 -04:00
2014-10-29 09:02:09 -04:00
2014-10-22 10:36:50 -06:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-09-24 18:30:28 -04:00
2014-10-30 19:56:16 +09:00
2014-09-21 12:03:06 -06:00
2014-10-29 09:02:09 -04:00
2014-09-24 18:30:28 -04:00
2014-09-24 18:30:28 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-10-23 09:59:21 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-09-24 18:30:28 -04:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-09-24 18:30:28 -04:00
2014-11-05 13:09:58 +01:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-09-24 18:30:28 -04:00
2014-09-24 18:30:28 -04:00
2014-10-27 09:05:43 -04:00
2014-10-23 11:53:02 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-09-24 18:30:28 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-09-13 16:43:55 -04:00
2014-09-24 18:30:28 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00
2014-10-25 15:27:36 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-10-29 09:02:09 -04:00
2014-09-24 18:30:28 -04:00
2014-09-13 16:43:55 -04:00
2014-09-13 16:43:55 -04:00
2014-10-29 09:02:09 -04:00