mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
Compare commits
9 Commits
1c9b5edd6a
...
1662aaaea7
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1662aaaea7 | ||
|
|
1f27d18427 | ||
|
|
3c3a37a48c | ||
|
|
87794f2240 | ||
|
|
341e05b843 | ||
|
|
01975be7ac | ||
|
|
eeac9e880c | ||
|
|
2eb5147675 | ||
|
|
b05c07d21c |
@@ -9,7 +9,7 @@ chapter = "Bare Bones"
|
|||||||
# Please update this when updating the translation
|
# Please update this when updating the translation
|
||||||
translation_based_on_commit = "c1af4e31b14e562826029999b9ab1dce86396b93"
|
translation_based_on_commit = "c1af4e31b14e562826029999b9ab1dce86396b93"
|
||||||
# GitHub usernames of the people that translated this post
|
# GitHub usernames of the people that translated this post
|
||||||
translators = ["JOE1994"]
|
translators = ["JOE1994", "Quqqu"]
|
||||||
+++
|
+++
|
||||||
|
|
||||||
운영체제 커널을 만드는 첫 단계는 표준 라이브러리(standard library)를 링크하지 않는 Rust 실행파일을 만드는 것입니다.
|
운영체제 커널을 만드는 첫 단계는 표준 라이브러리(standard library)를 링크하지 않는 Rust 실행파일을 만드는 것입니다.
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ chapter = "Bare Bones"
|
|||||||
# Please update this when updating the translation
|
# Please update this when updating the translation
|
||||||
translation_based_on_commit = "c1af4e31b14e562826029999b9ab1dce86396b93"
|
translation_based_on_commit = "c1af4e31b14e562826029999b9ab1dce86396b93"
|
||||||
# GitHub usernames of the people that translated this post
|
# GitHub usernames of the people that translated this post
|
||||||
translators = ["JOE1994"]
|
translators = ["JOE1994", "Quqqu"]
|
||||||
+++
|
+++
|
||||||
|
|
||||||
이번 포스트에서는 x86 아키텍처에서 최소한의 기능으로 동작하는 64비트 Rust 커널을 함께 만들 것입니다. 지난 포스트 [Rust로 'Freestanding 실행파일' 만들기][freestanding Rust binary] 에서 작업한 것을 토대로 부팅 가능한 디스크 이미지를 만들고 화면에 데이터를 출력해볼 것입니다.
|
이번 포스트에서는 x86 아키텍처에서 최소한의 기능으로 동작하는 64비트 Rust 커널을 함께 만들 것입니다. 지난 포스트 [Rust로 'Freestanding 실행파일' 만들기][freestanding Rust binary] 에서 작업한 것을 토대로 부팅 가능한 디스크 이미지를 만들고 화면에 데이터를 출력해볼 것입니다.
|
||||||
|
|||||||
@@ -39,8 +39,6 @@
|
|||||||
</small>
|
</small>
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script data-goatcounter="https://phil-opp.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -62,8 +62,6 @@
|
|||||||
</small>
|
</small>
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script data-goatcounter="https://phil-opp.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -17,6 +17,6 @@
|
|||||||
<hr>
|
<hr>
|
||||||
<section>
|
<section>
|
||||||
<h2 id="comments">Comments</h2>
|
<h2 id="comments">Comments</h2>
|
||||||
{{ snippets::giscus(search_term=page.title ~ " (Extra Post)") }}
|
{{ snippets::giscus(search_term=page.title ~ " (Extra Post)", lang=page.lang) }}
|
||||||
</section>
|
</section>
|
||||||
{% endblock after_main %}
|
{% endblock after_main %}
|
||||||
|
|||||||
@@ -118,7 +118,7 @@
|
|||||||
{% else %}
|
{% else %}
|
||||||
{% set search_term=page.title %}
|
{% set search_term=page.title %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{{ snippets::giscus(search_term=search_term) }}
|
{{ snippets::giscus(search_term=search_term, lang=page.lang) }}
|
||||||
|
|
||||||
{%- if page.lang != "en" %}
|
{%- if page.lang != "en" %}
|
||||||
<p class="{% if page.extra.rtl %}right-to-left{% endif %}">
|
<p class="{% if page.extra.rtl %}right-to-left{% endif %}">
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
<hr>
|
<hr>
|
||||||
<section>
|
<section>
|
||||||
<h2 id="comments">Comments</h2>
|
<h2 id="comments">Comments</h2>
|
||||||
{{ snippets::giscus(search_term=page.title ~ " (News Post)") }}
|
{{ snippets::giscus(search_term=page.title ~ " (News Post)", lang=page.lang) }}
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
{% endblock after_main %}
|
{% endblock after_main %}
|
||||||
|
|||||||
@@ -10,12 +10,20 @@
|
|||||||
</p>
|
</p>
|
||||||
{% endmacro support %}
|
{% endmacro support %}
|
||||||
|
|
||||||
{% macro giscus(search_term) %}
|
{% macro giscus(search_term, lang) %}
|
||||||
|
{% if lang != "en" %}
|
||||||
|
{% set category = "Post Comments (translated)" %}
|
||||||
|
{% set category_path = "post-comments-translated" %}
|
||||||
|
{% else %}
|
||||||
|
{% set category = "Post Comments" %}
|
||||||
|
{% set category_path = "post-comments" %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% if search_term is number %}
|
{% if search_term is number %}
|
||||||
{% set discussion_url = "https://github.com/phil-opp/blog_os/discussions/" ~ search_term %}
|
{% set discussion_url = "https://github.com/phil-opp/blog_os/discussions/" ~ search_term %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{% set search_term_encoded = `"` ~ search_term ~ `"` | urlencode %}
|
{% set search_term_encoded = `"` ~ search_term ~ `"` | urlencode %}
|
||||||
{% set discussion_url = `https://github.com/phil-opp/blog_os/discussions/categories/post-comments?discussions_q=` ~ search_term_encoded %}
|
{% set discussion_url = `https://github.com/phil-opp/blog_os/discussions/categories/` ~ category_path ~ `?discussions_q=` ~ search_term_encoded %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<p class="comment-note">
|
<p class="comment-note">
|
||||||
@@ -27,7 +35,7 @@
|
|||||||
<script src="https://giscus.app/client.js"
|
<script src="https://giscus.app/client.js"
|
||||||
data-repo="phil-opp/blog_os"
|
data-repo="phil-opp/blog_os"
|
||||||
data-repo-id="MDEwOlJlcG9zaXRvcnkzOTU3NTEwMQ=="
|
data-repo-id="MDEwOlJlcG9zaXRvcnkzOTU3NTEwMQ=="
|
||||||
data-category="Post Comments"
|
data-category="{{ category }}"
|
||||||
data-category-id="MDE4OkRpc2N1c3Npb25DYXRlZ29yeTMzMDE4OTg1"
|
data-category-id="MDE4OkRpc2N1c3Npb25DYXRlZ29yeTMzMDE4OTg1"
|
||||||
{% if search_term is number %}
|
{% if search_term is number %}
|
||||||
data-mapping="number"
|
data-mapping="number"
|
||||||
@@ -38,6 +46,7 @@
|
|||||||
data-reactions-enabled="1"
|
data-reactions-enabled="1"
|
||||||
data-emit-metadata="1"
|
data-emit-metadata="1"
|
||||||
data-theme="preferred_color_scheme"
|
data-theme="preferred_color_scheme"
|
||||||
|
data-lang="{{ lang }}"
|
||||||
crossorigin="anonymous"
|
crossorigin="anonymous"
|
||||||
async>
|
async>
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -32,7 +32,7 @@
|
|||||||
<hr>
|
<hr>
|
||||||
<section>
|
<section>
|
||||||
<h2 id="comments">Comments</h2>
|
<h2 id="comments">Comments</h2>
|
||||||
{{ snippets::giscus(search_term=page.title) }}
|
{{ snippets::giscus(search_term=page.title, lang=page.lang) }}
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
{% endblock after_main %}
|
{% endblock after_main %}
|
||||||
|
|||||||
Reference in New Issue
Block a user