summaryrefslogtreecommitdiff
path: root/meta-quanta/meta-gbs
diff options
context:
space:
mode:
Diffstat (limited to 'meta-quanta/meta-gbs')
-rw-r--r--meta-quanta/meta-gbs/conf/bblayers.conf.sample13
-rw-r--r--meta-quanta/meta-gbs/recipes-gbs/gbs-bios-update/files/bios-update.sh8
2 files changed, 4 insertions, 17 deletions
diff --git a/meta-quanta/meta-gbs/conf/bblayers.conf.sample b/meta-quanta/meta-gbs/conf/bblayers.conf.sample
index 903833258..22757391f 100644
--- a/meta-quanta/meta-gbs/conf/bblayers.conf.sample
+++ b/meta-quanta/meta-gbs/conf/bblayers.conf.sample
@@ -18,16 +18,3 @@ BBLAYERS ?= " \
##OEROOT##/meta-quanta \
##OEROOT##/meta-quanta/meta-gbs \
"
-BBLAYERS_NON_REMOVABLE ?= " \
- ##OEROOT##/meta \
- ##OEROOT##/meta-openembedded/meta-oe \
- ##OEROOT##/meta-openembedded/meta-networking \
- ##OEROOT##/meta-openembedded/meta-perl \
- ##OEROOT##/meta-openembedded/meta-python \
- ##OEROOT##/meta-security \
- ##OEROOT##/meta-phosphor \
- ##OEROOT##/meta-nuvoton \
- ##OEROOT##/meta-google \
- ##OEROOT##/meta-quanta \
- ##OEROOT##/meta-quanta/meta-gbs \
- "
diff --git a/meta-quanta/meta-gbs/recipes-gbs/gbs-bios-update/files/bios-update.sh b/meta-quanta/meta-gbs/recipes-gbs/gbs-bios-update/files/bios-update.sh
index 36dfa452c..bf71e9452 100644
--- a/meta-quanta/meta-gbs/recipes-gbs/gbs-bios-update/files/bios-update.sh
+++ b/meta-quanta/meta-gbs/recipes-gbs/gbs-bios-update/files/bios-update.sh
@@ -75,14 +75,14 @@ main() {
fi
echo "${KERNEL_FIU_ID}" > "${KERNEL_SYSFS_FIU}"/bind
- # BIOS flash is labelled 'pnor'
- pnor_mtd=$(findmtd pnor)
- if [ -z "${pnor_mtd}" ]; then
+ # BIOS flash is labelled 'bios-primary'
+ bios_mtd=$(findmtd bios-primary)
+ if [ -z "${bios_mtd}" ]; then
echo "Cannot find bios flash mtd partition!"
exit 1
fi
- flashcp -v $IMAGE_FILE /dev/"${pnor_mtd}"
+ flashcp -v $IMAGE_FILE /dev/"${bios_mtd}"
if [ $? -eq 0 ]; then
echo "bios update successfully..."
else