You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.1 KiB
Plaintext
72 lines
2.1 KiB
Plaintext
2 years ago
|
#!/usr/bin/bash
|
||
|
|
||
|
export COMMONFLAGS="-ffreestanding -fomit-frame-pointer -Wall -fno-stack-protector"
|
||
|
export CFLAGS="$COMMONFLAGS -fexceptions -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes"
|
||
|
|
||
|
# defines
|
||
|
|
||
|
## define vars to init rom with csr's it uses...
|
||
|
|
||
|
#
|
||
|
#csr_base=`grep '#define CSR_BASE' generated/csr.h | cut -d ' ' -f 3 | cut -c 1-6`
|
||
|
#uart_base=`grep 'CSR_UART_BASE' generated/csr.h | cut -d ' ' -f 5 | cut -c 3-6`
|
||
|
#UART_ADDR="${csr_base}${uart_base}"
|
||
|
#defsyms="-defsym $UART_ADDR"
|
||
|
#
|
||
|
#uart_base=`grep 'CSR_UART_1_BASE' generated/csr.h | cut -d ' ' -f 5 | cut -c 3-6`
|
||
|
#if [[ "$uart_base" != "" ]] ; then
|
||
|
# UART_1_ADDR="${csr_base}${uart_base}"
|
||
|
# defsyms="$defsyms -defsym $UART_1_ADDR"
|
||
|
#fi
|
||
|
#
|
||
|
#uart_base=`grep 'CSR_UART_2_BASE' generated/csr.h | cut -d ' ' -f 5 | cut -c 3-6`
|
||
|
#if [[ "$uart_base" != "" ]] ; then
|
||
|
# UART_2_ADDR="${csr_base}${uart_base}"
|
||
|
# defsyms="$defsyms -defsym $UART_2_ADDR"
|
||
|
#fi
|
||
|
#
|
||
|
#leds_base=`grep 'CSR_LEDS_BASE' generated/csr.h | cut -d ' ' -f 5 | cut -c 3-6`
|
||
|
#if [[ "$leds_base" != "" ]] ; then
|
||
|
# LEDS_ADDR="${csr_base}${leds_base}"
|
||
|
# defsyms="$defsyms -defsym $LEDS_ADDR"
|
||
|
#fi
|
||
|
#
|
||
|
#echo "CSR Addresses"
|
||
|
#echo "Console UART: ${UART_ADDR}"
|
||
|
#echo " LEDS: ${LEDS_ADDR}"
|
||
|
#echo " UART_1: ${UART_1_ADDR}"
|
||
|
#echo " UART_2: ${UART_1_ADDR}"
|
||
|
|
||
|
# a2o nanokernel
|
||
|
|
||
|
echo -n "Compiling..."
|
||
|
|
||
|
echo -n "asm/boot.s "
|
||
|
#powerpc-linux-gnu-as -defsym UART_ADDR=$UART_ADDR -defsym LEDS_ADDR=$LEDS_ADDR -defsym UNHANDLED=1 -mbig-endian -mpower9 -I./asm asm/cmod7-boot.s -ahlnd -o crt0.o > crt0.lst
|
||
|
powerpc-linux-gnu-as -mbig-endian -ma2 -I. boot.s -ahlnd -o crt0.o > crt0.lst
|
||
|
if [ $? -ne 0 ]; then
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
echo ""
|
||
|
echo "Linking..."
|
||
|
powerpc-linux-gnu-ld -nostdlib -nodefaultlibs -T linker-kernel.ld crt0.o -o rom
|
||
|
if [ $? -ne 0 ]; then
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
powerpc-linux-gnu-objdump -d rom > rom.d #wtf: why not getting labels in asm code?
|
||
|
powerpc-linux-gnu-objdump -s rom > rom.s
|
||
|
powerpc-linux-gnu-objcopy -O binary rom rom.bin
|
||
|
|
||
|
# make rom.bin.hex
|
||
|
bin/bin2init rom.bin
|
||
|
mv rom.bin.hex rom.init
|
||
|
|
||
|
echo "Built rom.d, rom.s, rom.init."
|
||
|
|
||
|
romsize=`grep rom regions.ld | cut -d " " -f 8 | cut -c 3-10`
|
||
|
|
||
|
echo "Hardware ROM Size $romsize"
|
||
|
|