diff -crBN tinboot/compilenike mytinboot/compilenike
*** tinboot/compilenike	1970-01-01 03:00:00.000000000 +0300
--- mytinboot/compilenike	2010-02-13 17:58:04.000000000 +0300
***************
*** 0 ****
--- 1,8 ----
+ for resolution in 428 480 320; do
+   arm-none-linux-gnueabi-as  tinboot.S -o tinboot.o --defsym res=$resolution --defsym MTYPE=1724 --defsym nike=1
+   arm-none-linux-gnueabi-objcopy tinboot.o -O binary tinboot
+   cp partition_table output.nb.payload
+   cat tinboot >> output.nb.payload
+   wine /usr/share/LinuxRomKitchen/NBMerge.exe -kaiser output.nb
+   yang -F NIKIIMG-$resolution.NBH -f output.nb -t 0x400 -s 64 -d NIKI**** -c 11111111 -v 1.0.MARTIN -l WWE
+ done
diff -crBN tinboot/tinboot.S mytinboot/tinboot.S
*** tinboot/tinboot.S	2010-02-13 18:46:15.000000000 +0300
--- mytinboot/tinboot.S	2010-02-13 18:52:47.000000000 +0300
***************
*** 3,8 ****
--- 3,11 ----
  @ Very simple bootloader for HTC Vogue
  @ Martin Johnson - M.J.Johnson@massey.ac.nz
  @
+ .ifdef nike
+ .equ    LOAD_START,     0x10300000
+ .else
  .ifdef kaiser
  .equ    LOAD_START,     0x10300000
  .else
***************
*** 12,17 ****
--- 15,21 ----
  .equ	LOAD_START, 	0x10000000
  .endif
  .endif
+ .endif
  .equ	RAM_START, 	0x10000000
  .equ	RAM_SIZE, 	0x03000000
  .equ	INITRD_START, 	RAM_START+0x00800000
***************
*** 43,48 ****
--- 46,54 ----
  .ifdef vogue
  		.asciz "mtdparts=msm_nand:0x00300000@0x1600000(boot),0x00040000@0x01900000(root),0x066C0000@0x01940000(system),0x08000000@0x08000000(userdata)"
  .endif
+ .ifdef nike	
+ 		.asciz "pm.sleep_mode=0 mtdparts=msm_nand:0x10000000@0x0(nand)ro,0x00040000@0x029a0000(root),0x066C0000@0x029e0000(system),0x06f60000@0x090a0000(userdata)"
+ .endif
  .ifdef kaiser
  		.ascii "board-kaiser-keypad.atttilt="
  		.byte tilt+0x30

