├── .gitignore ├── AUTHORS.md ├── LICENSE ├── README.md ├── bootstrap.sh ├── bootstrap.yml ├── copy-root-to-img.sh ├── cross_file.txt ├── extra-patches └── gcc.patch ├── patches ├── automake-v1.11 │ └── 0001-qword-specific-changes.patch ├── automake-v1.15 │ └── 0001-qword-specific-changes.patch ├── bash │ └── 0001-qword-specific-changes.patch ├── binutils │ └── 0001-qword-specific-changes.patch ├── coreutils │ └── 0001-qword-specific-changes.patch ├── gcc │ └── 0001-qword-specific-changes.patch ├── libtool │ └── 0001-qword-specific-changes.patch └── ncurses │ └── 0001-qword-specific-changes.patch ├── quickie.sh ├── root ├── etc │ ├── hostname │ └── passwd ├── limine.cfg └── root │ ├── .bashrc │ └── hello.c ├── run.sh └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/bootstrap.yml -------------------------------------------------------------------------------- /copy-root-to-img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/copy-root-to-img.sh -------------------------------------------------------------------------------- /cross_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/cross_file.txt -------------------------------------------------------------------------------- /extra-patches/gcc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/extra-patches/gcc.patch -------------------------------------------------------------------------------- /patches/automake-v1.11/0001-qword-specific-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/patches/automake-v1.11/0001-qword-specific-changes.patch -------------------------------------------------------------------------------- /patches/automake-v1.15/0001-qword-specific-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/patches/automake-v1.15/0001-qword-specific-changes.patch -------------------------------------------------------------------------------- /patches/bash/0001-qword-specific-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/patches/bash/0001-qword-specific-changes.patch -------------------------------------------------------------------------------- /patches/binutils/0001-qword-specific-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/patches/binutils/0001-qword-specific-changes.patch -------------------------------------------------------------------------------- /patches/coreutils/0001-qword-specific-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/patches/coreutils/0001-qword-specific-changes.patch -------------------------------------------------------------------------------- /patches/gcc/0001-qword-specific-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/patches/gcc/0001-qword-specific-changes.patch -------------------------------------------------------------------------------- /patches/libtool/0001-qword-specific-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/patches/libtool/0001-qword-specific-changes.patch -------------------------------------------------------------------------------- /patches/ncurses/0001-qword-specific-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/patches/ncurses/0001-qword-specific-changes.patch -------------------------------------------------------------------------------- /quickie.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/quickie.sh -------------------------------------------------------------------------------- /root/etc/hostname: -------------------------------------------------------------------------------- 1 | qword 2 | -------------------------------------------------------------------------------- /root/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/root/etc/passwd -------------------------------------------------------------------------------- /root/limine.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/root/limine.cfg -------------------------------------------------------------------------------- /root/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/root/root/.bashrc -------------------------------------------------------------------------------- /root/root/hello.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(void) { 4 | puts("hello"); 5 | } 6 | -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/run.sh -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qword-os/build/HEAD/screenshot.png --------------------------------------------------------------------------------