NetBSD/Dreamcast: Difference between revisions
No edit summary |
No edit summary |
||
Line 4: | Line 4: | ||
The example we'll follow here is using is using 10.0-release BETA. | The example we'll follow here is using is using 10.0-release BETA. | ||
In general, the instructions are made to be able to copy/paste, but read the text before and after the commands to make sure you understand them in case you need to adjust paramaters to your liking. | |||
References: [https://www.netbsd.org/docs/guide/en/chap-fetch.html How to fetch NetBSD sources], [https://www.netbsd.org/docs/guide/en/chap-build.html How to build NetBSD] | References: [https://www.netbsd.org/docs/guide/en/chap-fetch.html How to fetch NetBSD sources], [https://www.netbsd.org/docs/guide/en/chap-build.html How to build NetBSD] | ||
Line 11: | Line 13: | ||
Create a working directory in your home folder to hold everything, and enter it: | Create a working directory in your home folder to hold everything, and enter it: | ||
mkdir ~/netbsd | mkdir ~/netbsd | ||
cd netbsd | cd ~/netbsd | ||
Create additional directories for files: | Create additional directories for files: | ||
mkdir | mkdir obj toolchain dest release src-tars xsrc-tars | ||
===Download files=== | ===Download files=== | ||
Line 21: | Line 23: | ||
===Extract files=== | ===Extract files=== | ||
cd ~/netbsd | |||
for file in src-tars/*.tar.gz; do tar -zxf $file; done | for file in src-tars/*.tar.gz; do tar -zxf $file; done | ||
for file in xsrc-tars/*.tar.gz; do tar -zxf $file; done | for file in xsrc-tars/*.tar.gz; do tar -zxf $file; done | ||
Line 26: | Line 29: | ||
===Build toolchain=== | ===Build toolchain=== | ||
First, we need to build the cross-compiler to compile SuperH code on your desktop machine. | First, we need to build the cross-compiler to compile SuperH code on your desktop machine. | ||
cd src | cd ~/netbsd/src | ||
./build.sh -U -O ~/netbsd/obj -T ~/netbsd/toolchain -D ~/netbsd/dest -R ~/netbsd/release -j2 -m dreamcast tools | ./build.sh -U -O ~/netbsd/obj -T ~/netbsd/toolchain -D ~/netbsd/dest -R ~/netbsd/release -j2 -m dreamcast tools | ||
(-U is unprivileged, -O is where to store object files, -T is your toolchain directory, -D is the directory to place built NetBSD files, -R is the directory to place release files, -j is number of threads during build, -m is machine type, tools indcates you want to build toolchain) | (-U is unprivileged, -O is where to store object files, -T is your toolchain directory, -D is the directory to place built NetBSD files, -R is the directory to place release files, -j is number of threads during build, -m is machine type, tools indcates you want to build toolchain) | ||
Be sure to adjust -j to the number of threads you want to use depending on how many cores/threads your processor provides. | Be sure to adjust -j to the number of threads you want to use depending on how many cores/threads your processor provides. | ||
===Build kernel=== | ===Build kernel=== | ||
cd sys/arch/dreamcast/conf | cd ~/netbsd/src/sys/arch/dreamcast/conf | ||
If your target Dreamcast is modded with 32MB of RAM and you wish to build for that, open std.dreamcast and replace | If your target Dreamcast is [[32MB RAM expansion|modded with 32MB of RAM]] and you wish to build for that, open <code>std.dreamcast</code> and replace | ||
options IOM_RAM_SIZE=0x01000000 # 16MB | options IOM_RAM_SIZE=0x01000000 # 16MB | ||
with | with | ||
options IOM_RAM_SIZE=0x02000000 # 32MB | options IOM_RAM_SIZE=0x02000000 # 32MB | ||
You can pick GENERIC, GENERIC_MD (memory disk), or G1ATA kernel types | You can pick GENERIC, GENERIC_MD (memory disk), or G1ATA kernel types. You can also copy one of them to a new file in the same dir and edit to configure your own kernel options for a custom kernel type. | ||
Run nbconfig on your kernel config | If you have a serial or USB [[coder's cable]] and want to run headless, or don't have a Dreamcast keyboard and want to use your computer keyboard for input, you may want to set <code>options SCIFCONSOLE</code> in your kernel config to communicate over serial connection. | ||
~/netbsd/ | |||
Run nbconfig on your kernel config: | |||
~/netbsd/toolchain/bin/nbconfig GENERIC | |||
Enter the configuration directory: | |||
cd ../compile/GENERIC | |||
Then build dependencies and kernel: | Then build dependencies and kernel: | ||
~/netbsd/toolchain/bin/nbmake-dreamcast depend | ~/netbsd/toolchain/bin/nbmake-dreamcast depend | ||
~/netbsd/toolchain/bin/nbmake-dreamcast | ~/netbsd/toolchain/bin/nbmake-dreamcast | ||
netbsd.bin is your kernel file and Dreamcast executable (e.g. it can be sent over dcload-ip to boot NetBSD, or it can be scrambled and burned to CD-R as 1ST_READ.BIN). | |||
cp netbsd.bin ~/netbsd/NetBSD-10.0_BETA-GENERIC.bin | |||
You can repeat these steps to build multiple kernels. | |||
===Build userland=== | ===Build userland=== | ||
cd ~/netbsd/src | cd ~/netbsd/src | ||
./build.sh -U - | ./build.sh -U -O ~/netbsd/obj -T ~/netbsd/toolchain -D ~/netbsd/dest -R ~/netbsd/release -j2 -u -m dreamcast release | ||
(-u is update-only so we use what we've already built before instead of building another toolchain, and don't forget -j is number of threads during build) | (-u is update-only so we use what we've already built before instead of building another toolchain, and don't forget -j is number of threads during build) | ||
===Build X Server=== | ===Build X Server=== | ||
cd ~/netbsd/src | cd ~/netbsd/src | ||
./build.sh -U | ./build.sh -U -O ~/netbsd/obj -T ~/netbsd/toolchain -D ~/netbsd/dest -R ~/netbsd/release -x -X ~/netbsd/xsrc -j2 -u -m dreamcast release | ||
(-x is to build the X server, -X is the path of the X source code) | (-x is to build the X server, -X is the path of the X source code) |
Revision as of 01:31, 5 January 2023
This article is a WIP. It is subject to rapid change. Beware!
Before building NetBSD, it's important to undertand release types and pick one of release, stable, or current types.
The example we'll follow here is using is using 10.0-release BETA.
In general, the instructions are made to be able to copy/paste, but read the text before and after the commands to make sure you understand them in case you need to adjust paramaters to your liking.
References: How to fetch NetBSD sources, How to build NetBSD
Example
Initial folder setup
Create a working directory in your home folder to hold everything, and enter it:
mkdir ~/netbsd cd ~/netbsd
Create additional directories for files:
mkdir obj toolchain dest release src-tars xsrc-tars
Download files
Download all files from ftp.netbsd.org/pub/NetBSD/NetBSD-release-10/tar_files/src/ and place files into directory src-tars
Download all files from ftp.netbsd.org/pub/NetBSD/NetBSD-release-10/tar_files/xsrc/ and place files into directory xsrc-tars
Extract files
cd ~/netbsd for file in src-tars/*.tar.gz; do tar -zxf $file; done for file in xsrc-tars/*.tar.gz; do tar -zxf $file; done
Build toolchain
First, we need to build the cross-compiler to compile SuperH code on your desktop machine.
cd ~/netbsd/src ./build.sh -U -O ~/netbsd/obj -T ~/netbsd/toolchain -D ~/netbsd/dest -R ~/netbsd/release -j2 -m dreamcast tools
(-U is unprivileged, -O is where to store object files, -T is your toolchain directory, -D is the directory to place built NetBSD files, -R is the directory to place release files, -j is number of threads during build, -m is machine type, tools indcates you want to build toolchain)
Be sure to adjust -j to the number of threads you want to use depending on how many cores/threads your processor provides.
Build kernel
cd ~/netbsd/src/sys/arch/dreamcast/conf
If your target Dreamcast is modded with 32MB of RAM and you wish to build for that, open std.dreamcast
and replace
options IOM_RAM_SIZE=0x01000000 # 16MB
with
options IOM_RAM_SIZE=0x02000000 # 32MB
You can pick GENERIC, GENERIC_MD (memory disk), or G1ATA kernel types. You can also copy one of them to a new file in the same dir and edit to configure your own kernel options for a custom kernel type.
If you have a serial or USB coder's cable and want to run headless, or don't have a Dreamcast keyboard and want to use your computer keyboard for input, you may want to set options SCIFCONSOLE
in your kernel config to communicate over serial connection.
Run nbconfig on your kernel config:
~/netbsd/toolchain/bin/nbconfig GENERIC
Enter the configuration directory:
cd ../compile/GENERIC
Then build dependencies and kernel:
~/netbsd/toolchain/bin/nbmake-dreamcast depend ~/netbsd/toolchain/bin/nbmake-dreamcast
netbsd.bin is your kernel file and Dreamcast executable (e.g. it can be sent over dcload-ip to boot NetBSD, or it can be scrambled and burned to CD-R as 1ST_READ.BIN).
cp netbsd.bin ~/netbsd/NetBSD-10.0_BETA-GENERIC.bin
You can repeat these steps to build multiple kernels.
Build userland
cd ~/netbsd/src ./build.sh -U -O ~/netbsd/obj -T ~/netbsd/toolchain -D ~/netbsd/dest -R ~/netbsd/release -j2 -u -m dreamcast release
(-u is update-only so we use what we've already built before instead of building another toolchain, and don't forget -j is number of threads during build)
Build X Server
cd ~/netbsd/src ./build.sh -U -O ~/netbsd/obj -T ~/netbsd/toolchain -D ~/netbsd/dest -R ~/netbsd/release -x -X ~/netbsd/xsrc -j2 -u -m dreamcast release
(-x is to build the X server, -X is the path of the X source code)