Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Errors while building the system after building toolchain. #94

Open
JustVic opened this issue Jul 7, 2021 · 3 comments
Open

Errors while building the system after building toolchain. #94

JustVic opened this issue Jul 7, 2021 · 3 comments

Comments

@JustVic
Copy link

JustVic commented Jul 7, 2021

if I make menuconfig after cloning repository and making toolchain when I get:
"make: *** No rule to make target 'menuconfig'. Stop."
If I call ./configure it gets me some warning or error:
"sed: can't read src/lib/config.h: No such file or directory"
After configure make menuconfig is working.
But make command fails while trying building system with :
"/bin/sh: 1: i786-pc-xelix-gcc: not found."
If I try to build picotcp from picotcp directory it builds ok. After that if try to build system again I get another error:
"i786-pc-xelix-objcopy: architecture -I unknown"
Maybe it something with debian setting or something. Maybe I an not so familiar with this project but currently I was not able to quickly deal with the problems by myself.

@lutoma
Copy link
Owner

lutoma commented Jul 7, 2021

As for the i786-pc-xelix-gcc not found, does that binary exist in the toolchain/local/bin folder? Normally the makefile should automatically add that to your path, but can you try doing export PATH="/full/path/to/xelix/toolchain/local/bin:$PATH" before running the other commands?

You're right about the missing Makefile/menucofing target, I missed that while switching the Kconfig system in one of the last commits. The architecture -I unknown error is also related to that. I've made some changes to account for that.

Can you try running ./configure and make again with the PATH set and the latest changes from the repository?

Sorry for all the hassle, all this code is rarely compiled outside of my computer so there's lots of underlying assumptions in the build system that may no always be true.

@JustVic
Copy link
Author

JustVic commented Jul 8, 2021

Ok. Thanks for helping. I trought I alredy tried it, but maybe I misstyped something. This time it works good with exprot full path to the PATH variable. It has built well. Next I try "make image" and I get: "Usage: util/build-image.sh <image_dir> <image_name>". It needs path to dir as a second parameter but in makefile writed : "util/build-image.sh xelix.qcow2". After correction it gives next error : "qemu-nbd: Failed to set NBD socket
qemu-nbd: Disconnect client, due to: Failed to read request: Unexpected end-of-file before all bytes were read"

@lutoma
Copy link
Owner

lutoma commented Jul 8, 2021

Instead of building your own userland image, I would recommend just downloading the 0.3.0-alpha image which is identical to the current userland state of the git repository anyway. I've added some instructions to the docs yesterday that describe how you can use your compiled kernel with the existing image: https://xelix.org/compiling/#using-the-compiled-kernel

If you really want to build your own userland image, that should also be possible, but the entire process is very experimental and fiddly. You would have to start with

util/xpkg/xpkg -a -e gcc -e dialog -e fontconfig

You will probably have to install some Python dependencies (toposort package).

This will compile every package in the land/ directory for Xelix except for gcc/dialog/fontconfig (which are broken right now), and build a full system image in the xpkg-build/image directory. You can then transform that into a bootable qcow2 image with the build-image command you have already discovered. You will need to have grub, fdisk and the nbd kernel module installed:

sudo modprobe nbd
util/build-image.sh xpkg-build/image xelix.qcow2

If everything went well, you should then end up with a xelix.qcow2 image which you can run in QEMU:

qemu-system-i386 -accel kvm -vga qxl -m 1024 -cpu host -serial mon:stdio -device ac97 -drive file=xelix.qcow2,if=ide -netdev user,id=mnet0 -device virtio-net,netdev=mnet0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants