Creating a new startup program

To create a new startup program, you should make a new directory under bsp_working_dir/src/hardware/startup/boards and copy the files from one of the existing startup program directories. For example, to create something close to the Intel PXA250TMDP board, called my_new_board, you would:

  1. cd bsp_working_dir/src/hardware/startup/boards
  2. mkdir my_new_board
  3. cp -r pxa250tmdp/* my_new_board
  4. cd my_new_board
  5. make clean

For descriptions of all the startup functions, see "The startup library" section in this chapter.