移除relibc和old libc以及旧的shell (#529)

移除relibc和old libc以及旧的shell
This commit is contained in:
裕依
2024-03-04 14:20:01 +08:00
committed by GitHub
parent f3b05a97ec
commit bc6f0a967c
141 changed files with 334 additions and 8836 deletions

View File

@ -1,9 +1,7 @@
#include "sys_version.h" // 这是系统的版本头文件,在编译过程中自动生成
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
void print_ascii_logo()
{
printf(" ____ ___ ____ \n");
@ -13,24 +11,25 @@ void print_ascii_logo()
printf("|____/ |_| \\__,_| \\__, | \\___/ |_| |_| \\___/ |____/ \n");
printf(" |___/ \n");
}
void print_copyright()
{
printf(" DragonOS - An opensource operating system.\n");
printf(" Copyright: DragonOS Community. 2022-2024, All rights reserved.\n");
printf(" Version: ");
put_string("V0.1.8\n", COLOR_GREEN, COLOR_BLACK);
printf("\033[1;32m%s\033[0m", "V0.1.8\n");
printf(" Git commit SHA1: %s\n", DRAGONOS_GIT_COMMIT_SHA1);
printf(" Build time: %s %s\n", __DATE__, __TIME__);
printf(" \nYou can visit the project via:\n");
printf("\n");
put_string(" Official Website: https://DragonOS.org\n", COLOR_INDIGO, COLOR_BLACK);
put_string(" GitHub: https://github.com/DragonOS-Community/DragonOS\n", COLOR_ORANGE, COLOR_BLACK);
printf("\x1B[1;36m%s\x1B[0m", " Official Website: https://DragonOS.org\n");
printf("\x1B[1;33m%s\x1B[0m", " GitHub: https://github.com/DragonOS-Community/DragonOS\n");
printf("\n");
printf(" Maintainer: longjin <longjin@DragonOS.org>\n");
printf(" Get contact with the community: <contact@DragonOS.org>\n");
printf("\n");
printf(" Join our development community:\n");
put_string(" https://bbs.dragonos.org.cn\n", COLOR_ORANGE, COLOR_BLACK);
printf("\x1B[1;33m%s\x1B[0m", " https://bbs.dragonos.org.cn\n");
printf("\n");
}
@ -39,4 +38,4 @@ int main()
print_ascii_logo();
print_copyright();
return 0;
}
}