11 lines
253 B
Bash
Executable File
11 lines
253 B
Bash
Executable File
#!/bin/bash
|
|
|
|
dr_user=`whoami`
|
|
if [ "$dr_user" != "root" ] ; then
|
|
echo "Aborting script because user is not the root."
|
|
echo ""
|
|
exit
|
|
fi
|
|
cd platform/build
|
|
make MODEL=XX230v env_build boot_build kernel_build modules_build apps_build fs_build image_build
|