Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

should be sufficient to create the new entry.  See the os database table description for the details of the values of the various parameters.

(jrb) Note: I would use instead something like

Code Block
languagesql
titleAdd new OS
INSERT INTO os (osName, osType, nickname, active) values ('<osName>', '<osType>', '<nickname>', 'true');

The first column, osId, is auto-increment, so it's best to let the system set it to the next available integer.

Add A Build Package Configuration

...