meta-ampere: shellcheck: fix up source locations

Many scripts in meta-ampere had `shellcheck source=/dev/null`, which
isn't as useful as putting the real sourced script.  Fix up all of
these in the meta-layer to point to the right script, which as a
side-effect allow a few global-disables to be removed.

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: Icb43dc76a19edbdada8b4caa6ced57ff07f42d27
diff --git a/meta-ampere/meta-mitchell/recipes-ampere/platform/ampere-platform-init/gpio-lib.sh b/meta-ampere/meta-mitchell/recipes-ampere/platform/ampere-platform-init/gpio-lib.sh
index 3e503c4..5fbbbcc 100644
--- a/meta-ampere/meta-mitchell/recipes-ampere/platform/ampere-platform-init/gpio-lib.sh
+++ b/meta-ampere/meta-mitchell/recipes-ampere/platform/ampere-platform-init/gpio-lib.sh
@@ -1,8 +1,5 @@
 #!/bin/bash
 
-# shellcheck disable=SC2154
-# shellcheck source=/dev/null
-
 # Configure GPIO as output and set its value
 AST2600_GPIO_BASE=(
     816
@@ -69,4 +66,4 @@
         gpioPin=$(("$offset" + ${AST2600_GPIO_BASE[$gpioid]}))
         gpio_configure_input "$gpioPin"
     fi
-}
\ No newline at end of file
+}