Created
October 31, 2023 04:25
-
-
Save themactep/99a3c92f71161dac6fb1c88502d459a7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
BR_OUTPUT_DIR=/path/to/openipc/output | |
CROSS_PATH=${BR_OUTPUT_DIR}/host/bin | |
CROSS_COMPILE=$(readlink -f $CROSS_PATH)/mipsel-openipc-linux-musl- | |
CC=${CROSS_COMPILE}gcc | |
make ARCH=mips CC="${CC}" \ | |
CROSS_COMPILE="${CROSS_COMPILE}" \ | |
ISVP_ENV_KERNEL_DIR="${BR_OUTPUT_DIR}/build/linux-custom" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment