Add a new x86_64 target without qemu.
This commit is contained in:
21
projects/x86_64_qemu_domo/post-build.sh
Executable file
21
projects/x86_64_qemu_domo/post-build.sh
Executable 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}"
|
||||
Reference in New Issue
Block a user