mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-08 11:51:48 +00:00
45 lines
938 B
Bash
45 lines
938 B
Bash
#!/bin/bash
|
|
ARG=${1:-'--confirm'}
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
# Clean-up from last build
|
|
rm -rf ./code_templates/tmp
|
|
mkdir ./code_templates/tmp
|
|
|
|
mv ./source/main.cpp ./main.cpp
|
|
|
|
make clean_all
|
|
|
|
# Build PoC
|
|
poc_name="nxdt_rw_poc"
|
|
poc_path="./code_templates/$poc_name.c"
|
|
|
|
rm -f ./source/main.c
|
|
cp $poc_path ./source/main.c
|
|
|
|
cp ./romfs/icon/nxdumptool.jpg ./romfs/icon/$poc_name.jpg
|
|
|
|
if [ ${ARG,,} != "--noconfirm" ]; then
|
|
make BUILD_TYPE="$poc_name" -j$(nproc)
|
|
else
|
|
make BUILD_TYPE="$poc_name" -j8 PREFIX="ccache aarch64-none-elf-"
|
|
fi
|
|
|
|
rm -f ./romfs/icon/$poc_name.jpg
|
|
|
|
mv -f ./$poc_name.nro ./code_templates/tmp/$poc_name.nro
|
|
mv -f ./$poc_name.elf ./code_templates/tmp/$poc_name.elf
|
|
|
|
# Post build clean-up
|
|
make BUILD_TYPE="$poc_name" clean
|
|
make clean_all
|
|
|
|
rm -f ./source/main.c
|
|
mv -f ./main.cpp ./source/main.cpp
|
|
|
|
if [ ${ARG,,} != "--noconfirm" ]; then
|
|
read -rsp $'Press any key to continue...\n' -n 1 key
|
|
fi
|