userspace: Implement uname utility

This commit is contained in:
2025-11-04 18:45:20 +02:00
parent 00e5749e20
commit fc730679ed
3 changed files with 99 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
set(SOURCES
main.cpp
)
add_executable(uname ${SOURCES})
banan_link_library(uname libc)
install(TARGETS uname OPTIONAL)