Skip to content
This repository has been archived by the owner on Feb 4, 2023. It is now read-only.

Building NextDivel

Álvaro Torralba edited this page Jun 27, 2018 · 3 revisions

Build NextDivel it's so easy. At the moment you'll need:

  • gcc (C, C++ and Assembler)
  • binutils
  • ld
  • cmake

Optionally you can use:

  • grub-mkrescue (ISO image)
  • qemu-system-i386 (test it)
  • doxygen (build documentation)

The recommended operating system is Debian or Ubuntu, but should work on another OS if it has the correct tools.

The steps are easy

Get a copy of NextDivel

git clone http://github.com/AdrianArroyoCalle/next-divel
cd next-divel

Configure NextDivel

mkdir build && cd build
cmake ..

Builds and installs the system to next

make DESTDIR=next install

Builds the ISO image

chmod +x iso.sh
./iso.sh

Runs the ISO on QEMU

qemu-system-i386 nextdivel.iso
Clone this wiki locally