configs: pumpkin: remove config_distro_bootcmd.h include

When exporting the U-Boot environment for Pumpkin with the following:

ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- \
           scripts/get_default_envs.sh > u-boot-initial-env

We can observe that the bootcmd is defined twice:

bootcmd=gpio input 42;if test $? -eq 0 || \
  test "${force_fastboot}" -eq 1; \
  then setenv force_fastboot 0; saveenv; \
  run fastboot;run mmcboot;else run mmcboot;fi
bootcmd=run distro_bootcmd

Dependening on the the output of get_default_env.sh we have very
different boot behaviours, which is confusing.

Remove the include to <config_distro_bootcmd.h> which deletes the
unneeded occurence of bootcmd definition.

Signed-off-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
1 file changed