mwatch_kernel 0.9.0

A embedded 'Smart' watch
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
INCLUDE link.x

SECTIONS
{   
  .app_section(NOLOAD) : ALIGN(4)
  {
    KEEP(*(.app_section.data));
    . = ALIGN(4);
  } > APPDATA

  .fb_section(NOLOAD) : ALIGN(4)
  {
      KEEP(*(.fb_section.fb));
      . = ALIGN(4);
  } > FRAMEBUFFER
}