Add a new x86_64 target without qemu.

This commit is contained in:
2018-03-28 22:26:16 +02:00
parent 0a54ddca34
commit a6d48e761d
13 changed files with 5766 additions and 9 deletions

View File

@@ -0,0 +1,21 @@
#!/bin/bash
# Catch Postbuild Error
function error {
echo "Postbuild Failed."
exit 1;
}
set -e
trap error ERR
echo "==> POSTBUILD:"
echo "BR_STAGING: ${BR_STAGING}"
echo "BR_PROJECT: ${BR_PROJECT}"
ROOT_DIR=${BR_STAGING}/buildroot/target
echo " => Setting-up the target rootfs to be used by qemu"
PATH="${PATH}:${BR_STAGING}/cross/usr/bin" "${BR_PROJECT}/map-all-xattr.sh" "${ROOT_DIR}"