├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── BUGSLIST.md ├── FAQS.md ├── LICENSE ├── Makefile ├── README.md ├── TODO.md ├── bin ├── Makefile ├── README.md ├── archfetch │ ├── Makefile │ └── main.c ├── bash │ ├── ABOUT-NLS │ ├── AUTHORS │ ├── CHANGES │ ├── COMPAT │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── MANIFEST │ ├── Makefile │ ├── Makefile.in │ ├── NEWS │ ├── NOTES │ ├── POSIX │ ├── RBASH │ ├── README │ ├── Y2K │ ├── aclocal.m4 │ ├── alias.c │ ├── alias.h │ ├── array.c │ ├── array.h │ ├── arrayfunc.c │ ├── arrayfunc.h │ ├── assoc.c │ ├── assoc.h │ ├── bashansi.h │ ├── bashhist.c │ ├── bashhist.h │ ├── bashintl.h │ ├── bashjmp.h │ ├── bashline.c │ ├── bashline.h │ ├── bashtypes.h │ ├── bracecomp.c │ ├── braces.c │ ├── builtins.h │ ├── builtins │ │ ├── Makefile.in │ │ ├── alias.c │ │ ├── alias.def │ │ ├── bashgetopt.c │ │ ├── bashgetopt.h │ │ ├── bind.c │ │ ├── bind.def │ │ ├── break.c │ │ ├── break.def │ │ ├── builtext.h │ │ ├── builtin.c │ │ ├── builtin.def │ │ ├── builtins.c │ │ ├── caller.c │ │ ├── caller.def │ │ ├── cd.c │ │ ├── cd.def │ │ ├── colon.c │ │ ├── colon.def │ │ ├── command.c │ │ ├── command.def │ │ ├── common.c │ │ ├── common.h │ │ ├── complete.c │ │ ├── complete.def │ │ ├── declare.c │ │ ├── declare.def │ │ ├── echo.c │ │ ├── echo.def │ │ ├── enable.c │ │ ├── enable.def │ │ ├── eval.c │ │ ├── eval.def │ │ ├── evalfile.c │ │ ├── evalstring.c │ │ ├── exec.c │ │ ├── exec.def │ │ ├── exit.c │ │ ├── exit.def │ │ ├── fc.c │ │ ├── fc.def │ │ ├── fg_bg.c │ │ ├── fg_bg.def │ │ ├── gen-helpfiles.c_ │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── getopts.c │ │ ├── getopts.def │ │ ├── hash.c │ │ ├── hash.def │ │ ├── help.c │ │ ├── help.def │ │ ├── history.c │ │ ├── history.def │ │ ├── inlib.c │ │ ├── inlib.def │ │ ├── jobs.c │ │ ├── jobs.def │ │ ├── kill.c │ │ ├── kill.def │ │ ├── let.c │ │ ├── let.def │ │ ├── mapfile.c │ │ ├── mapfile.def │ │ ├── mkbuiltins.c_ │ │ ├── pipesize.h │ │ ├── printf.c │ │ ├── printf.def │ │ ├── psize.c_ │ │ ├── psize.sh │ │ ├── pushd.c │ │ ├── pushd.def │ │ ├── read.c │ │ ├── read.def │ │ ├── reserved.c │ │ ├── reserved.def │ │ ├── return.c │ │ ├── return.def │ │ ├── set.c │ │ ├── set.def │ │ ├── setattr.c │ │ ├── setattr.def │ │ ├── shift.c │ │ ├── shift.def │ │ ├── shopt.c │ │ ├── shopt.def │ │ ├── source.c │ │ ├── source.def │ │ ├── suspend.c │ │ ├── suspend.def │ │ ├── test.c │ │ ├── test.def │ │ ├── times.c │ │ ├── times.def │ │ ├── trap.c │ │ ├── trap.def │ │ ├── type.c │ │ ├── type.def │ │ ├── ulimit.c │ │ ├── ulimit.def │ │ ├── umask.c │ │ ├── umask.def │ │ ├── wait.c │ │ └── wait.def │ ├── command.h │ ├── config-bot.h │ ├── config-top.h │ ├── config.h │ ├── config.h.in │ ├── configure │ ├── configure.ac │ ├── conftypes.h │ ├── copy_cmd.c │ ├── dispose_cmd.c │ ├── dispose_cmd.h │ ├── error.c │ ├── error.h │ ├── eval.c │ ├── execute_cmd.c │ ├── execute_cmd.h │ ├── expr.c │ ├── externs.h │ ├── findcmd.c │ ├── findcmd.h │ ├── flags.c │ ├── flags.h │ ├── general.c │ ├── general.h │ ├── hashcmd.c │ ├── hashcmd.h │ ├── hashlib.c │ ├── hashlib.h │ ├── include │ │ ├── ansi_stdlib.h │ │ ├── chartypes.h │ │ ├── filecntl.h │ │ ├── gettext.h │ │ ├── maxpath.h │ │ ├── memalloc.h │ │ ├── ocache.h │ │ ├── posixdir.h │ │ ├── posixjmp.h │ │ ├── posixselect.h │ │ ├── posixstat.h │ │ ├── posixtime.h │ │ ├── posixwait.h │ │ ├── shmbchar.h │ │ ├── shmbutil.h │ │ ├── shtty.h │ │ ├── stat-time.h │ │ ├── stdc.h │ │ ├── systimes.h │ │ ├── typemax.h │ │ └── unionwait.h │ ├── input.c │ ├── input.h │ ├── jobs.c │ ├── jobs.h │ ├── lib │ │ ├── glob │ │ │ ├── Makefile.in │ │ │ ├── collsyms.h │ │ │ ├── doc │ │ │ │ ├── Makefile │ │ │ │ └── glob.texi │ │ │ ├── glob.c │ │ │ ├── glob.h │ │ │ ├── glob_loop.c │ │ │ ├── gm_loop.c │ │ │ ├── gmisc.c │ │ │ ├── ndir.h │ │ │ ├── sm_loop.c │ │ │ ├── smatch.c │ │ │ ├── strmatch.c │ │ │ ├── strmatch.h │ │ │ └── xmbsrtowcs.c │ │ ├── intl │ │ │ ├── ChangeLog │ │ │ ├── Makefile.in │ │ │ ├── VERSION │ │ │ ├── bindtextdom.c │ │ │ ├── config.charset │ │ │ ├── dcgettext.c │ │ │ ├── dcigettext.c │ │ │ ├── dcngettext.c │ │ │ ├── dgettext.c │ │ │ ├── dngettext.c │ │ │ ├── eval-plural.h │ │ │ ├── explodename.c │ │ │ ├── finddomain.c │ │ │ ├── gettext.c │ │ │ ├── gettextP.h │ │ │ ├── gmo.h │ │ │ ├── hash-string.h │ │ │ ├── intl-compat.c │ │ │ ├── l10nflist.c │ │ │ ├── libgnuintl.h │ │ │ ├── libgnuintl.h.in │ │ │ ├── loadinfo.h │ │ │ ├── loadmsgcat.c │ │ │ ├── localcharset.c │ │ │ ├── localcharset.h │ │ │ ├── locale.alias │ │ │ ├── localealias.c │ │ │ ├── localename.c │ │ │ ├── log.c │ │ │ ├── ngettext.c │ │ │ ├── plural-exp.c │ │ │ ├── plural-exp.h │ │ │ ├── plural.c │ │ │ ├── plural.y │ │ │ ├── ref-add.sin │ │ │ ├── ref-del.sin │ │ │ ├── relocatable.c │ │ │ ├── relocatable.h │ │ │ └── textdomain.c │ │ ├── malloc │ │ │ ├── Makefile.in │ │ │ ├── alloca.c │ │ │ ├── getpagesize.h │ │ │ ├── i386-alloca.s │ │ │ ├── imalloc.h │ │ │ ├── malloc.c │ │ │ ├── mstats.h │ │ │ ├── shmalloc.h │ │ │ ├── stats.c │ │ │ ├── stub.c │ │ │ ├── table.c │ │ │ ├── table.h │ │ │ ├── trace.c │ │ │ ├── watch.c │ │ │ ├── watch.h │ │ │ ├── x386-alloca.s │ │ │ ├── xleaktrace │ │ │ └── xmalloc.c │ │ ├── readline │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── STANDALONE │ │ │ ├── ansi_stdlib.h │ │ │ ├── bind.c │ │ │ ├── callback.c │ │ │ ├── chardefs.h │ │ │ ├── colors.c │ │ │ ├── colors.h │ │ │ ├── compat.c │ │ │ ├── complete.c │ │ │ ├── display.c │ │ │ ├── doc │ │ │ │ ├── Makefile │ │ │ │ ├── fdl.texi │ │ │ │ ├── history.texi │ │ │ │ ├── hstech.texi │ │ │ │ ├── hsuser.texi │ │ │ │ ├── rlman.texi │ │ │ │ ├── rltech.texi │ │ │ │ ├── rluser.texi │ │ │ │ ├── rluserman.texi │ │ │ │ └── version.texi │ │ │ ├── emacs_keymap.c │ │ │ ├── examples │ │ │ │ ├── Inputrc │ │ │ │ ├── Makefile │ │ │ │ ├── excallback.c │ │ │ │ ├── fileman.c │ │ │ │ ├── histexamp.c │ │ │ │ ├── manexamp.c │ │ │ │ ├── rl-callbacktest.c │ │ │ │ ├── rl.c │ │ │ │ ├── rlcat.c │ │ │ │ └── rltest.c │ │ │ ├── funmap.c │ │ │ ├── histexpand.c │ │ │ ├── histfile.c │ │ │ ├── histlib.h │ │ │ ├── history.c │ │ │ ├── history.h │ │ │ ├── histsearch.c │ │ │ ├── input.c │ │ │ ├── isearch.c │ │ │ ├── keymaps.c │ │ │ ├── keymaps.h │ │ │ ├── kill.c │ │ │ ├── macro.c │ │ │ ├── mbutil.c │ │ │ ├── misc.c │ │ │ ├── nls.c │ │ │ ├── parens.c │ │ │ ├── parse-colors.c │ │ │ ├── parse-colors.h │ │ │ ├── posixdir.h │ │ │ ├── posixjmp.h │ │ │ ├── posixselect.h │ │ │ ├── posixstat.h │ │ │ ├── readline.c │ │ │ ├── readline.h │ │ │ ├── rlconf.h │ │ │ ├── rldefs.h │ │ │ ├── rlmbutil.h │ │ │ ├── rlprivate.h │ │ │ ├── rlshell.h │ │ │ ├── rlstdc.h │ │ │ ├── rltty.c │ │ │ ├── rltty.h │ │ │ ├── rltypedefs.h │ │ │ ├── rlwinsize.h │ │ │ ├── savestring.c │ │ │ ├── search.c │ │ │ ├── shell.c │ │ │ ├── signals.c │ │ │ ├── tcap.h │ │ │ ├── terminal.c │ │ │ ├── text.c │ │ │ ├── tilde.c │ │ │ ├── tilde.h │ │ │ ├── undo.c │ │ │ ├── util.c │ │ │ ├── vi_keymap.c │ │ │ ├── vi_mode.c │ │ │ ├── xfree.c │ │ │ ├── xmalloc.c │ │ │ └── xmalloc.h │ │ ├── sh │ │ │ ├── Makefile.in │ │ │ ├── casemod.c │ │ │ ├── clktck.c │ │ │ ├── clock.c │ │ │ ├── dprintf.c_ │ │ │ ├── eaccess.c │ │ │ ├── fmtullong.c │ │ │ ├── fmtulong.c │ │ │ ├── fmtumax.c │ │ │ ├── fnxform.c │ │ │ ├── fpurge.c │ │ │ ├── getcwd.c │ │ │ ├── getenv.c │ │ │ ├── gettimeofday.c │ │ │ ├── inet_aton.c │ │ │ ├── input_avail.c │ │ │ ├── itos.c │ │ │ ├── mailstat.c │ │ │ ├── makepath.c │ │ │ ├── mbscasecmp.c │ │ │ ├── mbschr.c │ │ │ ├── mbscmp.c │ │ │ ├── memset.c_ │ │ │ ├── mktime.c │ │ │ ├── netconn.c │ │ │ ├── netopen.c_ │ │ │ ├── pathcanon.c │ │ │ ├── pathphys.c │ │ │ ├── random.c │ │ │ ├── rename.c │ │ │ ├── setlinebuf.c │ │ │ ├── shmatch.c │ │ │ ├── shmbchar.c │ │ │ ├── shquote.c │ │ │ ├── shtty.c │ │ │ ├── snprintf.c │ │ │ ├── spell.c │ │ │ ├── strcasecmp.c │ │ │ ├── strcasestr.c_ │ │ │ ├── strchrnul.c │ │ │ ├── strdup.c │ │ │ ├── strerror.c │ │ │ ├── strftime.c_ │ │ │ ├── stringlist.c │ │ │ ├── stringvec.c │ │ │ ├── strnlen.c │ │ │ ├── strpbrk.c │ │ │ ├── strstr.c_ │ │ │ ├── strtod.c │ │ │ ├── strtoimax.c │ │ │ ├── strtol.c │ │ │ ├── strtoll.c │ │ │ ├── strtoul.c │ │ │ ├── strtoull.c │ │ │ ├── strtoumax.c │ │ │ ├── strtrans.c │ │ │ ├── times.c │ │ │ ├── timeval.c │ │ │ ├── tmpfile.c │ │ │ ├── uconvert.c │ │ │ ├── ufuncs.c │ │ │ ├── unicode.c │ │ │ ├── utf8.c │ │ │ ├── vprint.c │ │ │ ├── wcsdup.c │ │ │ ├── wcsnwidth.c │ │ │ ├── wcswidth.c │ │ │ ├── winsize.c │ │ │ ├── zcatfd.c │ │ │ ├── zgetline.c │ │ │ ├── zmapfd.c │ │ │ ├── zread.c │ │ │ └── zwrite.c │ │ ├── termcap │ │ │ ├── Makefile.in │ │ │ ├── ltcap.h │ │ │ ├── termcap.c │ │ │ ├── termcap.h │ │ │ ├── tparam.c │ │ │ └── version.c │ │ └── tilde │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── shell.c │ │ │ ├── tilde.c │ │ │ └── tilde.h │ ├── list.c │ ├── locale.c │ ├── mailcheck.c │ ├── mailcheck.h │ ├── make_cmd.c │ ├── make_cmd.h │ ├── mksyntax.c_ │ ├── nojobs.c │ ├── parse.y │ ├── parser-built │ ├── parser.h │ ├── patchlevel.h │ ├── pathexp.c │ ├── pathexp.h │ ├── pathnames.h │ ├── pathnames.h.in │ ├── pcomplete.c │ ├── pcomplete.h │ ├── pcomplib.c │ ├── print_cmd.c │ ├── quit.h │ ├── redir.c │ ├── redir.h │ ├── shell.c │ ├── shell.h │ ├── sig.c │ ├── sig.h │ ├── siglist.c │ ├── siglist.h │ ├── signames.h │ ├── stringlib.c │ ├── subst.c │ ├── subst.h │ ├── syntax.c │ ├── syntax.h │ ├── test.c │ ├── test.h │ ├── trap.c │ ├── trap.h │ ├── unwind_prot.c │ ├── unwind_prot.h │ ├── variables.c │ ├── variables.h │ ├── version.c │ ├── version.h │ ├── xmalloc.c │ ├── xmalloc.h │ ├── y.tab.c │ └── y.tab.h ├── cal │ ├── Makefile │ └── main.c ├── cat │ ├── Makefile │ └── main.c ├── cat2 │ ├── Makefile │ └── main.c ├── cp │ ├── Makefile │ └── main.c ├── cpptests │ ├── Makefile │ ├── iostream_test.cpp │ ├── main.cpp │ └── test.h ├── cpuinfo │ ├── Makefile │ └── main.c ├── date │ ├── Makefile │ └── main.c ├── echo │ ├── Makefile │ └── main.c ├── env │ └── env ├── grep │ ├── Makefile │ └── main.c ├── hello │ ├── Makefile │ └── main.c ├── httpd │ ├── Makefile │ └── httpd.c ├── ifconfig │ ├── Makefile │ └── main.c ├── kill │ ├── Makefile │ └── main.c ├── lmbench │ └── lmbench ├── losetup │ ├── Makefile │ └── main.c ├── ls │ ├── Makefile │ └── main.c ├── lua │ └── lua ├── mem │ ├── Makefile │ └── main.c ├── mkdir │ ├── Makefile │ └── main.c ├── mkfs │ ├── Makefile │ └── main.c ├── mount │ ├── Makefile │ └── main.c ├── mp3player │ ├── Makefile │ ├── helix │ │ ├── Makefile │ │ ├── mp3dec.c │ │ ├── mp3tabs.c │ │ ├── pub │ │ │ ├── mp3common.h │ │ │ ├── mp3dec.h │ │ │ ├── mpadecobjfixpt.h │ │ │ └── statname.h │ │ └── real │ │ │ ├── assembly.h │ │ │ ├── bitstream.c │ │ │ ├── buffers.c │ │ │ ├── coder.h │ │ │ ├── dct32.c │ │ │ ├── dequant.c │ │ │ ├── dqchan.c │ │ │ ├── huffman.c │ │ │ ├── hufftabs.c │ │ │ ├── imdct.c │ │ │ ├── polyphase.c │ │ │ ├── scalfact.c │ │ │ ├── stproc.c │ │ │ ├── subband.c │ │ │ └── trigtabs.c │ ├── mp3.c │ ├── mp3.h │ ├── mp3_buf.c │ ├── mp3_buf.h │ └── play.c ├── mv │ ├── Makefile │ └── main.c ├── ping │ ├── Makefile │ └── main.c ├── poweroff │ ├── Makefile │ └── main.c ├── ps │ ├── Makefile │ └── main.c ├── reboot │ ├── Makefile │ └── main.c ├── rename │ ├── Makefile │ └── main.c ├── rm │ ├── Makefile │ └── main.c ├── rmdir │ ├── Makefile │ └── main.c ├── sh │ ├── Makefile │ ├── main.c │ └── sh.h ├── telnet │ ├── Makefile │ └── main.c ├── test_echo │ └── test_echo ├── tests │ ├── Makefile │ ├── backtrace_test.c │ ├── chargen.c │ ├── exp_test.c │ ├── fcntl_test.c │ ├── fifo_test.c │ ├── file_test.c │ ├── id.c │ ├── loop_test.c │ ├── main.c │ ├── math_test.c │ ├── perm_test.c │ ├── pipe_test.c │ ├── port_test.c │ ├── proc_test.c │ ├── pthread_test.c │ ├── pty_test.c │ ├── select_test.c │ ├── shm_test.c │ ├── signal_test.c │ ├── sleep_test.c │ ├── socket_test.c │ ├── sound_test.c │ ├── sys_test.c │ ├── test.h │ ├── test_sockcall.c │ ├── tty_test.c │ ├── video_test.c │ └── xlibc_test.c ├── touch │ ├── Makefile │ └── main.c ├── uname │ ├── Makefile │ └── main.c ├── unmount │ ├── Makefile │ └── main.c ├── uview │ ├── Makefile │ └── main.c └── wavplayer │ ├── Makefile │ └── main.c ├── develop ├── initrd.cfg └── rom │ ├── .bash_profile │ ├── .profile │ ├── about.txt │ ├── boot │ ├── bootres.img │ └── uga.img │ ├── etc │ ├── inputrc │ ├── passwd │ ├── profile │ └── termcap │ ├── usr │ ├── data │ │ ├── Infinity.mp3 │ │ ├── alarm01.wav │ │ ├── hi.txt │ │ └── ss.txt │ └── scripts │ │ ├── m0.sh │ │ ├── m1.sh │ │ └── test.sh │ └── www │ ├── CNAME │ ├── README.md │ ├── css │ ├── normalize.css │ ├── style.css │ └── summer.css │ ├── img │ └── icon │ │ └── icon.jpg │ ├── index.html │ └── js │ └── mtool.js ├── doc ├── bochs-config.md ├── buddy-memory.md ├── cmd-list.md ├── memory.md ├── qemu-config.md ├── swich_lowmem.md ├── tap0.win.md ├── unit-test.md └── user_socket.md ├── libs ├── Makefile ├── pthread │ ├── Makefile │ ├── include │ │ ├── pthread.h │ │ └── semaphore.h │ ├── pthread.c │ ├── pthread_cond.c │ ├── pthread_entry.asm │ ├── pthread_mutex.c │ ├── pthread_spinlock.c │ └── semaphore.c ├── sconf │ ├── Makefile │ ├── sconf.c │ └── sconf.h ├── uview │ ├── Makefile │ ├── include │ │ ├── uview.h │ │ ├── uview_bitmap.h │ │ ├── uview_color.h │ │ ├── uview_io.h │ │ ├── uview_keycode.h │ │ ├── uview_mouse.h │ │ ├── uview_msg.h │ │ └── uview_shape.h │ ├── uveiw_mouse.c │ ├── uview.c │ ├── uview_bitmap.c │ └── uview_keyboard.c ├── xcrt │ ├── Makefile │ └── x86 │ │ ├── crt1.asm │ │ ├── crti.asm │ │ └── crtn.asm ├── xlibc │ ├── Makefile │ ├── ansi │ │ ├── exit.c │ │ └── string.c │ ├── arch │ │ ├── wordsize-32 │ │ │ ├── bits │ │ │ │ └── wordsize.h │ │ │ └── divdi3.c │ │ └── x86 │ │ │ ├── _start.asm.old │ │ │ ├── atomic.asm │ │ │ ├── execinfo.c │ │ │ ├── setjmp.asm │ │ │ ├── user.ld │ │ │ └── xchg.asm │ ├── arpa │ │ ├── inet.c │ │ └── ip_addr.c │ ├── charset │ │ └── charset.c │ ├── crypto │ │ ├── aes128.c │ │ ├── crc16.c │ │ ├── crc32.c │ │ ├── crc8.c │ │ ├── sha1.c │ │ └── sha256.c │ ├── ctype │ │ └── ctype.c │ ├── environ │ │ ├── clearenv.c │ │ ├── environ.c │ │ ├── getenv.c │ │ ├── putenv.c │ │ ├── setenv.c │ │ └── unsetenv.c │ ├── gcc │ │ ├── __divmoddi4.c │ │ ├── __udivmoddi4.c │ │ ├── emutls.c │ │ └── fixunsdfdi.c │ ├── genernal │ │ ├── initfini.c │ │ └── start.c │ ├── include │ │ ├── aes128.h │ │ ├── ansi.h │ │ ├── arch │ │ │ ├── atomic.h │ │ │ ├── config.h │ │ │ ├── const.h │ │ │ ├── x86 │ │ │ │ ├── atomic.h │ │ │ │ ├── const.h │ │ │ │ └── xchg.h │ │ │ └── xchg.h │ │ ├── arpa │ │ │ ├── inet.h │ │ │ └── ip_addr.h │ │ ├── assert.h │ │ ├── bits │ │ │ ├── byteswap.h │ │ │ ├── dlfcn.h │ │ │ ├── libc-header-start.h │ │ │ ├── locale.h │ │ │ ├── types │ │ │ │ ├── __locale_t.h │ │ │ │ └── locale_t.h │ │ │ └── wordsize.h │ │ ├── charset.h │ │ ├── const.h │ │ ├── crc16.h │ │ ├── crc32.h │ │ ├── crc8.h │ │ ├── ctype.h │ │ ├── debug.h │ │ ├── dirent.h │ │ ├── ecdsa256.h │ │ ├── endian.h │ │ ├── environ.h │ │ ├── errno.h │ │ ├── execinfo.h │ │ ├── exit.h │ │ ├── fcntl.h │ │ ├── features.h │ │ ├── float.h │ │ ├── getopt.h │ │ ├── gnu │ │ │ ├── stubs-32.h │ │ │ └── stubs.h │ │ ├── inttypes.h │ │ ├── langinfo.h │ │ ├── limits.h │ │ ├── locale.h │ │ ├── log2.h │ │ ├── longlong.h │ │ ├── malloc.h │ │ ├── math.h │ │ ├── net │ │ │ ├── if.h │ │ │ ├── if_arp.h │ │ │ └── if_ether.h │ │ ├── netdb.h │ │ ├── netinet │ │ │ └── in.h │ │ ├── path.h │ │ ├── pty.h │ │ ├── pwd.h │ │ ├── setjmp.h │ │ ├── sha1.h │ │ ├── sha256.h │ │ ├── shash.h │ │ ├── signal.h │ │ ├── sizes.h │ │ ├── spin.h │ │ ├── stdarg.h │ │ ├── stdbool.h │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── sys │ │ │ ├── cdefs.h │ │ │ ├── dir.h │ │ │ ├── exception.h │ │ │ ├── fifo.h │ │ │ ├── input.h │ │ │ ├── ioctl.h │ │ │ ├── ipc.h │ │ │ ├── list.h │ │ │ ├── lpc.h │ │ │ ├── mman.h │ │ │ ├── mount.h │ │ │ ├── mutexqueue.h │ │ │ ├── param.h │ │ │ ├── portcomm.h │ │ │ ├── proc.h │ │ │ ├── select.h │ │ │ ├── sockcall.h │ │ │ ├── socket.h │ │ │ ├── spinlock.h │ │ │ ├── stat.h │ │ │ ├── sys.h │ │ │ ├── syscall.h │ │ │ ├── sysmacros.h │ │ │ ├── time.h │ │ │ ├── times.h │ │ │ ├── types.h │ │ │ ├── udev.h │ │ │ ├── vmm.h │ │ │ ├── wait.h │ │ │ └── walltime.h │ │ ├── termios.h │ │ ├── time.h │ │ ├── types.h │ │ ├── unistd.h │ │ ├── utime.h │ │ ├── wchar.h │ │ ├── wctype.h │ │ └── xdebug.h │ ├── locale │ │ ├── localeconv.c │ │ └── setlocale.c │ ├── malloc │ │ └── malloc.c │ ├── math │ │ ├── __cos.c │ │ ├── __cosdf.c │ │ ├── __expo2.c │ │ ├── __expo2f.c │ │ ├── __fpclassify.c │ │ ├── __fpclassifyf.c │ │ ├── __rem_pio2.c │ │ ├── __rem_pio2_large.c │ │ ├── __rem_pio2f.c │ │ ├── __sin.c │ │ ├── __sindf.c │ │ ├── __tan.c │ │ ├── __tandf.c │ │ ├── acos.c │ │ ├── acosf.c │ │ ├── acosh.c │ │ ├── acoshf.c │ │ ├── asin.c │ │ ├── asinf.c │ │ ├── asinh.c │ │ ├── asinhf.c │ │ ├── atan.c │ │ ├── atan2.c │ │ ├── atan2f.c │ │ ├── atanf.c │ │ ├── atanh.c │ │ ├── atanhf.c │ │ ├── cbrt.c │ │ ├── cbrtf.c │ │ ├── ceil.c │ │ ├── ceilf.c │ │ ├── copysign.c │ │ ├── copysignf.c │ │ ├── cos.c │ │ ├── cosf.c │ │ ├── cosh.c │ │ ├── coshf.c │ │ ├── exp.c │ │ ├── exp2.c │ │ ├── exp2f.c │ │ ├── expf.c │ │ ├── expm1.c │ │ ├── expm1f.c │ │ ├── fabs.c │ │ ├── fabsf.c │ │ ├── fdim.c │ │ ├── fdimf.c │ │ ├── floor.c │ │ ├── floorf.c │ │ ├── fmax.c │ │ ├── fmaxf.c │ │ ├── fmin.c │ │ ├── fminf.c │ │ ├── fmod.c │ │ ├── fmodf.c │ │ ├── frexp.c │ │ ├── frexpf.c │ │ ├── hypot.c │ │ ├── hypotf.c │ │ ├── ldexp.c │ │ ├── ldexpf.c │ │ ├── log.c │ │ ├── log10.c │ │ ├── log10f.c │ │ ├── log1p.c │ │ ├── log1pf.c │ │ ├── log2.c │ │ ├── log2f.c │ │ ├── logf.c │ │ ├── modf.c │ │ ├── modff.c │ │ ├── pow.c │ │ ├── powf.c │ │ ├── rint.c │ │ ├── rintf.c │ │ ├── round.c │ │ ├── roundf.c │ │ ├── scalbln.c │ │ ├── scalblnf.c │ │ ├── scalbn.c │ │ ├── scalbnf.c │ │ ├── sin.c │ │ ├── sinf.c │ │ ├── sinh.c │ │ ├── sinhf.c │ │ ├── sqrt.c │ │ ├── sqrtf.c │ │ ├── tan.c │ │ ├── tanf.c │ │ ├── tanh.c │ │ ├── tanhf.c │ │ ├── trunc.c │ │ └── truncf.c │ ├── path │ │ ├── basename.c │ │ └── dirname.c │ ├── stdio │ │ ├── __stdio.c │ │ ├── __stdio_flush.c │ │ ├── __stdio_read.c │ │ ├── __stdio_write.c │ │ ├── asprintf.c │ │ ├── clearerr.c │ │ ├── fclose.c │ │ ├── fdopen.c │ │ ├── feof.c │ │ ├── ferror.c │ │ ├── fflush.c │ │ ├── fgetc.c │ │ ├── fgetpos.c │ │ ├── fgets.c │ │ ├── fopen.c │ │ ├── fprintf.c │ │ ├── fputc.c │ │ ├── fputs.c │ │ ├── fread.c │ │ ├── freopen.c │ │ ├── fscanf.c │ │ ├── fseek.c │ │ ├── fsetpos.c │ │ ├── ftell.c │ │ ├── fwrite.c │ │ ├── getc.c │ │ ├── getchar.c │ │ ├── perror.c │ │ ├── printf.c │ │ ├── putc.c │ │ ├── putchar.c │ │ ├── puts.c │ │ ├── remove.c │ │ ├── rename.c │ │ ├── rewind.c │ │ ├── scanf.c │ │ ├── setbuf.c │ │ ├── setvbuf.c │ │ ├── snprintf.c │ │ ├── sprintf.c │ │ ├── sscanf.c │ │ ├── system.c │ │ ├── tmpfile.c │ │ ├── tmpnam.c │ │ ├── ungetc.c │ │ ├── vasprintf.c │ │ ├── vfprintf.c │ │ ├── vsnprintf.c │ │ └── vsscanf.c │ ├── stdlib │ │ ├── abort.c │ │ ├── abs.c │ │ ├── atexit.c │ │ ├── atof.c │ │ ├── atoi.c │ │ ├── atol.c │ │ ├── atoll.c │ │ ├── bsearch.c │ │ ├── div.c │ │ ├── errno.c │ │ ├── labs.c │ │ ├── ldiv.c │ │ ├── lldiv.c │ │ ├── longjmp.c │ │ ├── qsort.c │ │ ├── rand.c │ │ ├── realpath.c │ │ ├── setjmp.c │ │ ├── strntoimax.c │ │ ├── strntoumax.c │ │ ├── strtod.c │ │ ├── strtof.c │ │ ├── strtoimax.c │ │ ├── strtol.c │ │ ├── strtoll.c │ │ ├── strtoul.c │ │ ├── strtoull.c │ │ ├── strtoumax.c │ │ └── system.c │ ├── string │ │ ├── memchr.c │ │ ├── strcasecmp.c │ │ └── strdup.c │ ├── syslib │ │ ├── auto.c │ │ ├── brk.c │ │ ├── exception.c │ │ ├── fifo.c │ │ ├── id.c │ │ ├── ipc.c │ │ ├── lpc.c │ │ ├── mutexqueue.c │ │ ├── portcomm.c │ │ ├── proc.c │ │ ├── pty.c │ │ ├── select.c │ │ ├── socket.c │ │ ├── spinlock.c │ │ ├── sys.c │ │ ├── syscall.asm │ │ ├── tcgetpgrp.c │ │ ├── tcsetpgrp.c │ │ ├── time.c │ │ ├── times.c │ │ ├── udev.c │ │ └── vmm.c │ ├── termios │ │ ├── tcflow.c │ │ ├── tcgetattr.c │ │ ├── tcsetattr.c │ │ └── tgoto.c │ ├── time │ │ ├── __secs_to_tm.c │ │ ├── __tm_to_secs.c │ │ ├── asctime.c │ │ ├── clock.c │ │ ├── ctime.c │ │ ├── difftime.c │ │ ├── gettimeofday.c │ │ ├── gmtime.c │ │ ├── localtime.c │ │ ├── mktime.c │ │ ├── strftime.c │ │ └── time.c │ └── unistd │ │ ├── dir.c │ │ ├── exec.c │ │ ├── file.c │ │ ├── gethostname.c │ │ ├── getopt.c │ │ ├── istty.c │ │ ├── mount.c │ │ ├── openclass.c │ │ ├── pwd.c │ │ ├── signal.c │ │ ├── stat.c │ │ ├── sysconf.c │ │ ├── ttyname.c │ │ └── umask.c └── xlibcpp │ ├── Makefile │ └── include │ ├── iostream │ └── ostream ├── mk2 ├── sbin ├── Makefile ├── README.md ├── grootfs │ ├── Makefile │ ├── cpio │ │ ├── cpio.c │ │ └── cpio.h │ └── main.c ├── init │ ├── Makefile │ └── main.c ├── login │ ├── Makefile │ └── main.c └── netserv │ ├── Makefile │ ├── httpd.c │ ├── include │ └── netserv.h │ ├── lwip │ ├── Makefile │ ├── api │ │ ├── api_lib.c │ │ ├── api_msg.c │ │ ├── err.c │ │ ├── netbuf.c │ │ ├── netdb.c │ │ ├── netifapi.c │ │ ├── sockets.c │ │ └── tcpip.c │ ├── arch │ │ └── sys_arch.c │ ├── core │ │ ├── def.c │ │ ├── dhcp.c │ │ ├── dns.c │ │ ├── init.c │ │ ├── ipv4 │ │ │ ├── autoip.c │ │ │ ├── icmp.c │ │ │ ├── igmp.c │ │ │ ├── inet.c │ │ │ ├── inet_chksum.c │ │ │ ├── ip.c │ │ │ ├── ip_addr.c │ │ │ └── ip_frag.c │ │ ├── ipv6 │ │ │ ├── README │ │ │ ├── icmp6.c │ │ │ ├── inet6.c │ │ │ ├── ip6.c │ │ │ └── ip6_addr.c │ │ ├── mem.c │ │ ├── memp.c │ │ ├── netif.c │ │ ├── pbuf.c │ │ ├── raw.c │ │ ├── snmp │ │ │ ├── asn1_dec.c │ │ │ ├── asn1_enc.c │ │ │ ├── mib2.c │ │ │ ├── mib_structs.c │ │ │ ├── msg_in.c │ │ │ └── msg_out.c │ │ ├── stats.c │ │ ├── sys.c │ │ ├── tcp.c │ │ ├── tcp_in.c │ │ ├── tcp_out.c │ │ ├── timers.c │ │ └── udp.c │ ├── include │ │ ├── arch │ │ │ ├── bpstruct.h │ │ │ ├── cc.h │ │ │ ├── epstruct.h │ │ │ ├── perf.h │ │ │ └── sys_arch.h │ │ ├── ipv4 │ │ │ └── lwip │ │ │ │ ├── autoip.h │ │ │ │ ├── icmp.h │ │ │ │ ├── igmp.h │ │ │ │ ├── inet.h │ │ │ │ ├── inet_chksum.h │ │ │ │ ├── ip.h │ │ │ │ ├── ip_addr.h │ │ │ │ └── ip_frag.h │ │ ├── ipv6 │ │ │ └── lwip │ │ │ │ ├── icmp.h │ │ │ │ ├── inet.h │ │ │ │ ├── ip.h │ │ │ │ └── ip_addr.h │ │ ├── lwip │ │ │ ├── api.h │ │ │ ├── api_msg.h │ │ │ ├── arch.h │ │ │ ├── debug.h │ │ │ ├── def.h │ │ │ ├── dhcp.h │ │ │ ├── dns.h │ │ │ ├── err.h │ │ │ ├── init.h │ │ │ ├── mem.h │ │ │ ├── memp.h │ │ │ ├── memp_std.h │ │ │ ├── netbuf.h │ │ │ ├── netdb.h │ │ │ ├── netif.h │ │ │ ├── netifapi.h │ │ │ ├── opt.h │ │ │ ├── pbuf.h │ │ │ ├── raw.h │ │ │ ├── sio.h │ │ │ ├── snmp.h │ │ │ ├── snmp_asn1.h │ │ │ ├── snmp_msg.h │ │ │ ├── snmp_structs.h │ │ │ ├── sockets.h │ │ │ ├── stats.h │ │ │ ├── sys.h │ │ │ ├── tcp.h │ │ │ ├── tcp_impl.h │ │ │ ├── tcpip.h │ │ │ ├── timers.h │ │ │ └── udp.h │ │ ├── lwipopts.h │ │ ├── netif │ │ │ ├── etharp.h │ │ │ ├── ppp_oe.h │ │ │ └── slipif.h │ │ └── posix │ │ │ ├── netdb.h │ │ │ └── sys │ │ │ └── socket.h │ └── netif │ │ ├── etharp.c │ │ └── ethernetif.c │ ├── main.c │ ├── netcard.c │ ├── netmain.c │ ├── netremote.c │ ├── socket_udp.c │ └── socket_udp.h ├── scripts ├── bochs │ ├── bochsrc.linux │ └── bochsrc.win ├── build.mk ├── conf.mk ├── define.mk ├── env.mk ├── fixdep.c ├── fixdep.exe ├── include.mk ├── localenv.mk ├── rule.mk └── wrapper.mk ├── src ├── .vscode │ └── settings.json ├── Makefile ├── arch │ └── x86 │ │ ├── MEMORY.md │ │ ├── Makefile │ │ ├── boot │ │ ├── Makefile │ │ ├── multiboot2 │ │ │ ├── Makefile │ │ │ ├── framebuffer.c │ │ │ ├── multiboot2.S │ │ │ ├── multiboot2.h │ │ │ └── setup.c │ │ └── myboot │ │ │ ├── Makefile │ │ │ ├── boot.asm │ │ │ ├── config.inc │ │ │ ├── const.inc │ │ │ ├── elf32.h │ │ │ ├── lib.c │ │ │ ├── lib.h │ │ │ ├── loader.asm │ │ │ ├── setup.c │ │ │ ├── setup.ld │ │ │ └── start.asm │ │ ├── include │ │ ├── arch │ │ │ ├── acpi.h │ │ │ ├── arch.h │ │ │ ├── atapi.h │ │ │ ├── atomic.h │ │ │ ├── bootmem.h │ │ │ ├── cmos.h │ │ │ ├── config.h │ │ │ ├── const.inc │ │ │ ├── cpu.h │ │ │ ├── debug.h │ │ │ ├── fpu.h │ │ │ ├── gate.h │ │ │ ├── hw.h │ │ │ ├── interrupt.h │ │ │ ├── io.h │ │ │ ├── memio.h │ │ │ ├── memory.h │ │ │ ├── mempool.h │ │ │ ├── misc.h │ │ │ ├── module.h │ │ │ ├── page.h │ │ │ ├── pci.h │ │ │ ├── phymem.h │ │ │ ├── pic.h │ │ │ ├── registers.h │ │ │ ├── segment.h │ │ │ ├── task.h │ │ │ ├── time.h │ │ │ ├── tss.h │ │ │ └── vmm.h │ │ └── drivers │ │ │ ├── e1000.h │ │ │ ├── e1000_hw.h │ │ │ ├── e1000_osdep.h │ │ │ └── vbe.h │ │ ├── kernel-myboot.ld │ │ ├── kernel.ld │ │ └── mach-i386 │ │ ├── Makefile │ │ ├── arch.c │ │ ├── backtrace.c │ │ ├── bus │ │ ├── atapi.c │ │ └── pci.c │ │ ├── cpu │ │ ├── atomic.asm │ │ ├── cpu.c │ │ ├── gate.c │ │ ├── segment.c │ │ ├── time.c │ │ └── x86.asm │ │ ├── debug.c │ │ ├── drivers │ │ ├── Makefile │ │ ├── audio │ │ │ ├── Makefile │ │ │ ├── ac97 │ │ │ │ ├── ac97_codec.c │ │ │ │ ├── ac97_codec.h │ │ │ │ ├── ac97_contro.c │ │ │ │ ├── ac97_contro.h │ │ │ │ ├── buff.c │ │ │ │ ├── buff.h │ │ │ │ ├── dsp.c │ │ │ │ ├── dsp.h │ │ │ │ ├── snd.c │ │ │ │ ├── snd.h │ │ │ │ ├── snd_list.c │ │ │ │ └── snd_list.h │ │ │ ├── intel-hda │ │ │ │ └── Makefile │ │ │ ├── pcspeaker.c │ │ │ └── sb16 │ │ │ │ ├── Makefile │ │ │ │ └── sb16.c │ │ ├── disk │ │ │ ├── Makefile │ │ │ ├── ahci.c │ │ │ ├── cdrom.c │ │ │ └── ide.c │ │ ├── input │ │ │ ├── Makefile │ │ │ ├── keyboard.c │ │ │ ├── mouse.c │ │ │ └── ps2mouse.c │ │ ├── misc │ │ │ ├── Makefile │ │ │ └── cpu.c │ │ ├── network │ │ │ ├── Makefile │ │ │ ├── e1000 │ │ │ │ ├── Makefile │ │ │ │ ├── e1000.c │ │ │ │ └── e1000_hw.c │ │ │ ├── pcnet32.c │ │ │ └── rtl8139.c │ │ ├── output │ │ │ ├── Makefile │ │ │ └── console.c │ │ ├── uart │ │ │ ├── Makefile │ │ │ └── serial.c │ │ ├── usb │ │ │ └── Makefile │ │ └── video │ │ │ ├── Makefile │ │ │ └── vbe.c │ │ ├── entry.asm │ │ ├── hardware │ │ ├── cmos.c │ │ ├── console.c │ │ ├── pit.c │ │ └── serial.c │ │ ├── interrupt │ │ ├── handler.asm │ │ ├── interrupt.c │ │ └── pic.c │ │ ├── misc │ │ ├── acpi.c │ │ ├── halt.c │ │ └── reboot.c │ │ ├── mm │ │ ├── ards.c │ │ ├── bootmem.c │ │ ├── memio.c │ │ ├── mempool.c │ │ ├── page.c │ │ ├── phymem.c │ │ └── vmm.c │ │ └── task │ │ ├── switch.asm │ │ ├── task.c │ │ └── tss.c ├── drivers │ ├── Makefile │ ├── README.md │ ├── block │ │ ├── loop.c │ │ └── ramdisk.c │ ├── char │ │ ├── Makefile │ │ ├── null.c │ │ └── zero.c │ ├── tty │ │ ├── ptty.c │ │ └── tty.c │ └── view │ │ ├── Makefile │ │ ├── core │ │ ├── bitmap.c │ │ ├── core.c │ │ ├── env.c │ │ ├── keyboard.c │ │ ├── mouse.c │ │ ├── msg.c │ │ ├── refresh.c │ │ ├── render.c │ │ ├── screen.c │ │ ├── section.c │ │ └── view.c │ │ ├── driver.c │ │ └── hal │ │ ├── keyboard.c │ │ ├── mouse.c │ │ ├── screen.c │ │ └── section.c ├── dwin │ ├── Makefile │ ├── client.c │ ├── dwin.c │ ├── hal.c │ ├── hal │ │ ├── Makefile │ │ └── kdevice │ │ │ ├── Makefile │ │ │ ├── hal.c │ │ │ ├── keyboard.c │ │ │ ├── lcd.c │ │ │ ├── mouse.c │ │ │ ├── msgpool.c │ │ │ └── thread.c │ ├── message.c │ ├── objects │ │ ├── keyboard.c │ │ ├── layer.c │ │ ├── layer_action.c │ │ ├── layer_id.c │ │ ├── lcd.c │ │ ├── mouse.c │ │ ├── workstation.c │ │ ├── workstation_action.c │ │ └── workstation_flush.c │ └── window.c ├── fs │ ├── Makefile │ ├── diskman.c │ ├── fatfs │ │ ├── 00history.txt │ │ ├── 00readme.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── diskio.c │ │ ├── diskio.h │ │ ├── ff.c │ │ ├── ff.h │ │ ├── ffconf.h │ │ ├── ffsystem.c │ │ └── ffunicode.c │ ├── fs.c │ ├── fsal │ │ ├── Makefile │ │ ├── dir.c │ │ ├── fatfs.c │ │ ├── fd.c │ │ ├── file.c │ │ ├── fsal.c │ │ ├── fsalif.c │ │ ├── fstype.c │ │ └── path.c │ ├── fsif.c │ └── kernif.c ├── include │ ├── assert.h │ ├── const.h │ ├── cpio.h │ ├── ctype.h │ ├── dirent.h │ ├── drivers │ │ └── view │ │ │ ├── bitmap.h │ │ │ ├── color.h │ │ │ ├── core.h │ │ │ ├── env.h │ │ │ ├── hal.h │ │ │ ├── keyboard.h │ │ │ ├── misc.h │ │ │ ├── mouse.h │ │ │ ├── msg.h │ │ │ ├── render.h │ │ │ ├── screen.h │ │ │ ├── section.h │ │ │ └── view.h │ ├── dwin │ │ ├── buffer.h │ │ ├── client.h │ │ ├── dwin.h │ │ ├── dwin_config.h │ │ ├── hal.h │ │ ├── layer.h │ │ ├── message.h │ │ ├── objects.h │ │ ├── window.h │ │ └── workstation.h │ ├── errno.h │ ├── fcntl.h │ ├── inet.h │ ├── limits.h │ ├── math.h │ ├── sconf.h │ ├── stdarg.h │ ├── stdbool.h │ ├── stddef.h │ ├── stdint.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── sys │ │ ├── dir.h │ │ ├── input.h │ │ ├── ioctl.h │ │ ├── ipc.h │ │ ├── lpc.h │ │ ├── mutexqueue.h │ │ ├── proc.h │ │ ├── pthread.h │ │ ├── res.h │ │ ├── select.h │ │ ├── socket.h │ │ ├── stat.h │ │ ├── time.h │ │ ├── wait.h │ │ └── walltime.h │ ├── types.h │ ├── unistd.h │ └── xbook │ │ ├── account.h │ │ ├── alarm.h │ │ ├── arch.h │ │ ├── bitmap.h │ │ ├── bitops.h │ │ ├── byteorder.h │ │ ├── charset.h │ │ ├── clock.h │ │ ├── config.h │ │ ├── debug.h │ │ ├── dir.h │ │ ├── disk.h │ │ ├── diskman.h │ │ ├── dma.h │ │ ├── driver.h │ │ ├── elf32.h │ │ ├── exception.h │ │ ├── fatfs.h │ │ ├── fd.h │ │ ├── fifo.h │ │ ├── fifobuf.h │ │ ├── fifoio.h │ │ ├── file.h │ │ ├── fs.h │ │ ├── fsal.h │ │ ├── fstype.h │ │ ├── hardirq.h │ │ ├── if_arp.h │ │ ├── if_ether.h │ │ ├── initcall.h │ │ ├── kernel.h │ │ ├── list.h │ │ ├── mdl.h │ │ ├── memalloc.h │ │ ├── memcache.h │ │ ├── memspace.h │ │ ├── msgpool.h │ │ ├── msgqueue.h │ │ ├── mutexlock.h │ │ ├── mutexqueue.h │ │ ├── net.h │ │ ├── netif.h │ │ ├── path.h │ │ ├── pipe.h │ │ ├── portcomm.h │ │ ├── process.h │ │ ├── pthread.h │ │ ├── rwlock.h │ │ ├── safety.h │ │ ├── schedule.h │ │ ├── sem.h │ │ ├── semaphore.h │ │ ├── sharemem.h │ │ ├── sockcall.h │ │ ├── socketcache.h │ │ ├── sockioif.h │ │ ├── softirq.h │ │ ├── spinlock.h │ │ ├── synclock.h │ │ ├── syscall.h │ │ ├── task.h │ │ ├── timer.h │ │ ├── virmem.h │ │ ├── vmm.h │ │ ├── waitqueue.h │ │ └── walltime.h ├── init │ ├── Makefile │ └── main.c ├── ipc │ ├── Makefile │ ├── fifo.c │ ├── lpc.c │ ├── msgqueue.c │ ├── pipe.c │ ├── portcomm.c │ ├── sem.c │ └── sharemem.c ├── kernel │ ├── Makefile │ ├── account.c │ ├── alarm.c │ ├── clock.c │ ├── config.c │ ├── debug.c │ ├── driver.c │ ├── exception.c │ ├── hardirq.c │ ├── initcall.c │ ├── permission.c │ ├── safety.c │ ├── softirq.c │ ├── syscall.c │ ├── time.c │ ├── timer.c │ └── walltime.c ├── lib │ ├── Makefile │ ├── abort.c │ ├── bitmap.c │ ├── cpio.c │ ├── ctype.c │ ├── fifobuf.c │ ├── fifoio.c │ ├── inet.c │ ├── msgpool.c │ ├── rand.c │ ├── sconf.c │ ├── stdio.c │ ├── string.c │ └── vsprintf.c ├── net │ ├── Makefile │ ├── httpd.c │ ├── lwip │ │ ├── Makefile │ │ ├── api │ │ │ ├── api_lib.c │ │ │ ├── api_msg.c │ │ │ ├── err.c │ │ │ ├── netbuf.c │ │ │ ├── netdb.c │ │ │ ├── netifapi.c │ │ │ ├── sockets.c │ │ │ └── tcpip.c │ │ ├── arch │ │ │ └── sys_arch.c │ │ ├── core │ │ │ ├── def.c │ │ │ ├── dhcp.c │ │ │ ├── dns.c │ │ │ ├── init.c │ │ │ ├── ipv4 │ │ │ │ ├── autoip.c │ │ │ │ ├── icmp.c │ │ │ │ ├── igmp.c │ │ │ │ ├── inet.c │ │ │ │ ├── inet_chksum.c │ │ │ │ ├── ip.c │ │ │ │ ├── ip_addr.c │ │ │ │ └── ip_frag.c │ │ │ ├── mem.c │ │ │ ├── memp.c │ │ │ ├── netif.c │ │ │ ├── pbuf.c │ │ │ ├── raw.c │ │ │ ├── snmp │ │ │ │ ├── asn1_dec.c │ │ │ │ ├── asn1_enc.c │ │ │ │ ├── mib2.c │ │ │ │ ├── mib_structs.c │ │ │ │ ├── msg_in.c │ │ │ │ └── msg_out.c │ │ │ ├── stats.c │ │ │ ├── sys.c │ │ │ ├── tcp.c │ │ │ ├── tcp_in.c │ │ │ ├── tcp_out.c │ │ │ ├── timers.c │ │ │ └── udp.c │ │ ├── include │ │ │ ├── arch │ │ │ │ ├── bpstruct.h │ │ │ │ ├── cc.h │ │ │ │ ├── epstruct.h │ │ │ │ ├── perf.h │ │ │ │ └── sys_arch.h │ │ │ ├── ipv4 │ │ │ │ └── lwip │ │ │ │ │ ├── autoip.h │ │ │ │ │ ├── icmp.h │ │ │ │ │ ├── igmp.h │ │ │ │ │ ├── inet.h │ │ │ │ │ ├── inet_chksum.h │ │ │ │ │ ├── ip.h │ │ │ │ │ ├── ip_addr.h │ │ │ │ │ └── ip_frag.h │ │ │ ├── lwip │ │ │ │ ├── api.h │ │ │ │ ├── api_msg.h │ │ │ │ ├── arch.h │ │ │ │ ├── debug.h │ │ │ │ ├── def.h │ │ │ │ ├── dhcp.h │ │ │ │ ├── dns.h │ │ │ │ ├── err.h │ │ │ │ ├── init.h │ │ │ │ ├── mem.h │ │ │ │ ├── memp.h │ │ │ │ ├── memp_std.h │ │ │ │ ├── netbuf.h │ │ │ │ ├── netdb.h │ │ │ │ ├── netif.h │ │ │ │ ├── netifapi.h │ │ │ │ ├── opt.h │ │ │ │ ├── pbuf.h │ │ │ │ ├── raw.h │ │ │ │ ├── sio.h │ │ │ │ ├── snmp.h │ │ │ │ ├── snmp_asn1.h │ │ │ │ ├── snmp_msg.h │ │ │ │ ├── snmp_structs.h │ │ │ │ ├── sockets.h │ │ │ │ ├── stats.h │ │ │ │ ├── sys.h │ │ │ │ ├── tcp.h │ │ │ │ ├── tcp_impl.h │ │ │ │ ├── tcpip.h │ │ │ │ ├── timers.h │ │ │ │ └── udp.h │ │ │ ├── lwipopts.h │ │ │ └── netif │ │ │ │ ├── etharp.h │ │ │ │ ├── ppp_oe.h │ │ │ │ └── slipif.h │ │ └── netif │ │ │ ├── etharp.c │ │ │ └── ethernetif.c │ ├── net.c │ ├── netcard.c │ ├── netif.c │ ├── sockcall.c │ ├── socketapi │ │ ├── select.c │ │ ├── socket.c │ │ ├── socket_accept.c │ │ ├── socket_bind.c │ │ ├── socket_connect.c │ │ ├── socket_getpeername.c │ │ ├── socket_getsockname.c │ │ ├── socket_getsockopt.c │ │ ├── socket_ioctl.c │ │ ├── socket_listen.c │ │ ├── socket_recv.c │ │ ├── socket_recvfrom.c │ │ ├── socket_send.c │ │ ├── socket_sendto.c │ │ ├── socket_setsockopt.c │ │ └── socket_shutdown.c │ └── socketcache.c ├── task │ ├── Makefile │ ├── exec.c │ ├── exit.c │ ├── fork.c │ ├── mutexlock.c │ ├── mutexqueue.c │ ├── process.c │ ├── pthread.c │ ├── rwlock.c │ ├── schedule.c │ ├── semaphore.c │ ├── sleep.c │ ├── task.c │ ├── wait.c │ └── waitqueue.c └── vmm │ ├── Makefile │ ├── dma.c │ ├── mdl.c │ ├── memcache.c │ ├── memspace.c │ ├── virmem.c │ └── vmm.c └── tools ├── bios_fw └── IA32_OVMF.fd └── grub-2.04 ├── Makefile ├── README.md ├── boot ├── grub │ ├── grub.cfg │ ├── i386-efi │ │ ├── acpi.mod │ │ ├── adler32.mod │ │ ├── affs.mod │ │ ├── afs.mod │ │ ├── afsplitter.mod │ │ ├── ahci.mod │ │ ├── alias.mod │ │ ├── all_video.mod │ │ ├── aout.mod │ │ ├── appleldr.mod │ │ ├── archelp.mod │ │ ├── at_keyboard.mod │ │ ├── ata.mod │ │ ├── backtrace.mod │ │ ├── bcfg.mod │ │ ├── bfs.mod │ │ ├── bitmap.mod │ │ ├── bitmap_scale.mod │ │ ├── blocklist.mod │ │ ├── blscfg.mod │ │ ├── bmp.mod │ │ ├── boot.mod │ │ ├── bsd.mod │ │ ├── bswap_test.mod │ │ ├── btrfs.mod │ │ ├── bufio.mod │ │ ├── cat.mod │ │ ├── cbfs.mod │ │ ├── cbls.mod │ │ ├── cbmemc.mod │ │ ├── cbtable.mod │ │ ├── cbtime.mod │ │ ├── chain.mod │ │ ├── cmdline_cat_test.mod │ │ ├── cmp.mod │ │ ├── cmp_test.mod │ │ ├── command.lst │ │ ├── commandline.mod │ │ ├── configfile.mod │ │ ├── conv.mod │ │ ├── cpio.mod │ │ ├── cpio_be.mod │ │ ├── cpuid.mod │ │ ├── crc.mod │ │ ├── crc64.mod │ │ ├── crscreenshot.mod │ │ ├── crypto.lst │ │ ├── crypto.mod │ │ ├── cryptodisk.mod │ │ ├── cs5536.mod │ │ ├── ctz_test.mod │ │ ├── date.mod │ │ ├── datehook.mod │ │ ├── datetime.mod │ │ ├── dd.mod │ │ ├── disk.mod │ │ ├── diskfilter.mod │ │ ├── div.mod │ │ ├── div_test.mod │ │ ├── dm_nv.mod │ │ ├── dp.mod │ │ ├── echo.mod │ │ ├── efi_gop.mod │ │ ├── efi_mouse.mod │ │ ├── efi_netfs.mod │ │ ├── efi_uga.mod │ │ ├── efienv.mod │ │ ├── efiload.mod │ │ ├── efinet.mod │ │ ├── ehci.mod │ │ ├── elf.mod │ │ ├── eval.mod │ │ ├── exfat.mod │ │ ├── exfctest.mod │ │ ├── expr.mod │ │ ├── ext2.mod │ │ ├── extcmd.mod │ │ ├── f2fs.mod │ │ ├── fat.mod │ │ ├── fatfs.mod │ │ ├── fb.mod │ │ ├── fdlibm.mod │ │ ├── fdt.lst │ │ ├── file.mod │ │ ├── fixmmap.mod │ │ ├── fixvideo.mod │ │ ├── font.mod │ │ ├── fs.lst │ │ ├── fshelp.mod │ │ ├── functional_test.mod │ │ ├── gcry_arcfour.mod │ │ ├── gcry_blowfish.mod │ │ ├── gcry_camellia.mod │ │ ├── gcry_cast5.mod │ │ ├── gcry_crc.mod │ │ ├── gcry_des.mod │ │ ├── gcry_dsa.mod │ │ ├── gcry_idea.mod │ │ ├── gcry_md4.mod │ │ ├── gcry_md5.mod │ │ ├── gcry_rfc2268.mod │ │ ├── gcry_rijndael.mod │ │ ├── gcry_rmd160.mod │ │ ├── gcry_rsa.mod │ │ ├── gcry_seed.mod │ │ ├── gcry_serpent.mod │ │ ├── gcry_sha1.mod │ │ ├── gcry_sha256.mod │ │ ├── gcry_sha512.mod │ │ ├── gcry_tiger.mod │ │ ├── gcry_twofish.mod │ │ ├── gcry_whirlpool.mod │ │ ├── gdb.mod │ │ ├── gdb_grub │ │ ├── geli.mod │ │ ├── getargs.mod │ │ ├── getenv.mod │ │ ├── getkey.mod │ │ ├── gettext.mod │ │ ├── gfxmenu.mod │ │ ├── gfxterm.mod │ │ ├── gfxterm_background.mod │ │ ├── gfxterm_menu.mod │ │ ├── gmodule.pl │ │ ├── gpt.mod │ │ ├── gptprio.mod │ │ ├── gptrepair.mod │ │ ├── gptsync.mod │ │ ├── grubfm.mod │ │ ├── gzio.mod │ │ ├── halt.mod │ │ ├── hashsum.mod │ │ ├── hdparm.mod │ │ ├── help.mod │ │ ├── hexdump.mod │ │ ├── hfs.mod │ │ ├── hfsplus.mod │ │ ├── hfspluscomp.mod │ │ ├── http.mod │ │ ├── increment.mod │ │ ├── ini.mod │ │ ├── iorw.mod │ │ ├── iso9660.mod │ │ ├── jfs.mod │ │ ├── jpeg.mod │ │ ├── json.mod │ │ ├── kernel.img │ │ ├── keylayouts.mod │ │ ├── keystatus.mod │ │ ├── ldm.mod │ │ ├── legacy_password_test.mod │ │ ├── legacycfg.mod │ │ ├── linux.mod │ │ ├── linux16.mod │ │ ├── linuxefi.mod │ │ ├── loadbios.mod │ │ ├── loadenv.mod │ │ ├── loopback.mod │ │ ├── ls.mod │ │ ├── lsacpi.mod │ │ ├── lsefi.mod │ │ ├── lsefimmap.mod │ │ ├── lsefisystab.mod │ │ ├── lsmmap.mod │ │ ├── lspci.mod │ │ ├── lssal.mod │ │ ├── lua.mod │ │ ├── luks.mod │ │ ├── luks2.mod │ │ ├── lvm.mod │ │ ├── lynxfs.mod │ │ ├── lzmaio.mod │ │ ├── lzopio.mod │ │ ├── macbless.mod │ │ ├── macho.mod │ │ ├── map.mod │ │ ├── mdraid09.mod │ │ ├── mdraid09_be.mod │ │ ├── mdraid1x.mod │ │ ├── memdisk.mod │ │ ├── memrw.mod │ │ ├── minicmd.mod │ │ ├── minix.mod │ │ ├── minix2.mod │ │ ├── minix2_be.mod │ │ ├── minix3.mod │ │ ├── minix3_be.mod │ │ ├── minix_be.mod │ │ ├── mmap.mod │ │ ├── moddep.lst │ │ ├── modinfo.sh │ │ ├── morse.mod │ │ ├── mpi.mod │ │ ├── msdospart.mod │ │ ├── mul_test.mod │ │ ├── multiboot.mod │ │ ├── multiboot2.mod │ │ ├── nativedisk.mod │ │ ├── nes.mod │ │ ├── net.mod │ │ ├── newc.mod │ │ ├── nilfs2.mod │ │ ├── normal.mod │ │ ├── ntboot.mod │ │ ├── ntfs.mod │ │ ├── ntfscomp.mod │ │ ├── nttools.mod │ │ ├── odc.mod │ │ ├── offsetio.mod │ │ ├── ohci.mod │ │ ├── part_acorn.mod │ │ ├── part_amiga.mod │ │ ├── part_apple.mod │ │ ├── part_bsd.mod │ │ ├── part_dfly.mod │ │ ├── part_dvh.mod │ │ ├── part_gpt.mod │ │ ├── part_msdos.mod │ │ ├── part_plan.mod │ │ ├── part_sun.mod │ │ ├── part_sunpc.mod │ │ ├── partmap.lst │ │ ├── partnew.mod │ │ ├── parttool.lst │ │ ├── parttool.mod │ │ ├── password.mod │ │ ├── password_pbkdf2.mod │ │ ├── pata.mod │ │ ├── pbkdf2.mod │ │ ├── pbkdf2_test.mod │ │ ├── pcidump.mod │ │ ├── pgp.mod │ │ ├── play.mod │ │ ├── png.mod │ │ ├── priority_queue.mod │ │ ├── probe.mod │ │ ├── procfs.mod │ │ ├── progress.mod │ │ ├── ps2mouse.mod │ │ ├── qnx4.mod │ │ ├── qnx6.mod │ │ ├── raid5rec.mod │ │ ├── raid6rec.mod │ │ ├── random.mod │ │ ├── rdmsr.mod │ │ ├── read.mod │ │ ├── reboot.mod │ │ ├── regexp.mod │ │ ├── reiserfs.mod │ │ ├── relocator.mod │ │ ├── romfs.mod │ │ ├── sbpolicy.mod │ │ ├── scsi.mod │ │ ├── search.mod │ │ ├── search_disk_uuid.mod │ │ ├── search_fs_file.mod │ │ ├── search_fs_uuid.mod │ │ ├── search_label.mod │ │ ├── search_part_label.mod │ │ ├── search_part_uuid.mod │ │ ├── serial.mod │ │ ├── setenv.mod │ │ ├── setjmp.mod │ │ ├── setjmp_test.mod │ │ ├── setkey.mod │ │ ├── setpci.mod │ │ ├── setup_var.mod │ │ ├── sfs.mod │ │ ├── shell.mod │ │ ├── shift_test.mod │ │ ├── shim_lock.mod │ │ ├── signature_test.mod │ │ ├── sleep.mod │ │ ├── sleep_test.mod │ │ ├── smbios.mod │ │ ├── sortlib.mod │ │ ├── spkmodem.mod │ │ ├── squash4.mod │ │ ├── stat.mod │ │ ├── strtoull_test.mod │ │ ├── syslinuxcfg.mod │ │ ├── tar.mod │ │ ├── terminal.lst │ │ ├── terminal.mod │ │ ├── terminfo.mod │ │ ├── test.mod │ │ ├── test_blockarg.mod │ │ ├── testload.mod │ │ ├── testspeed.mod │ │ ├── tetris.mod │ │ ├── tftp.mod │ │ ├── tga.mod │ │ ├── time.mod │ │ ├── tpm.mod │ │ ├── tr.mod │ │ ├── trig.mod │ │ ├── true.mod │ │ ├── udf.mod │ │ ├── ufs1.mod │ │ ├── ufs1_be.mod │ │ ├── ufs2.mod │ │ ├── uhci.mod │ │ ├── usb.mod │ │ ├── usb_gamepad.mod │ │ ├── usb_keyboard.mod │ │ ├── usbms.mod │ │ ├── usbserial_common.mod │ │ ├── usbserial_ftdi.mod │ │ ├── usbserial_pl2303.mod │ │ ├── usbserial_usbdebug.mod │ │ ├── usbtest.mod │ │ ├── uuid.mod │ │ ├── verifiers.mod │ │ ├── version.mod │ │ ├── vhd.mod │ │ ├── video.lst │ │ ├── video.mod │ │ ├── video_bochs.mod │ │ ├── video_cirrus.mod │ │ ├── video_colors.mod │ │ ├── video_fb.mod │ │ ├── videoinfo.mod │ │ ├── videotest.mod │ │ ├── videotest_checksum.mod │ │ ├── wimboot.mod │ │ ├── wrmsr.mod │ │ ├── xfs.mod │ │ ├── xnu_uuid.mod │ │ ├── xnu_uuid_test.mod │ │ ├── xzio.mod │ │ ├── zfs.mod │ │ ├── zfscrypt.mod │ │ ├── zfsinfo.mod │ │ └── zstd.mod │ ├── i386-pc │ │ ├── acpi.mod │ │ ├── adler32.mod │ │ ├── affs.mod │ │ ├── afs.mod │ │ ├── ahci.mod │ │ ├── all_video.mod │ │ ├── aout.mod │ │ ├── archelp.mod │ │ ├── at_keyboard.mod │ │ ├── ata.mod │ │ ├── backtrace.mod │ │ ├── bfs.mod │ │ ├── biosdisk.mod │ │ ├── bitmap.mod │ │ ├── bitmap_scale.mod │ │ ├── blocklist.mod │ │ ├── boot.img │ │ ├── boot.mod │ │ ├── boot_hybrid.img │ │ ├── boottime.mod │ │ ├── bsd.mod │ │ ├── bswap_test.mod │ │ ├── btrfs.mod │ │ ├── bufio.mod │ │ ├── cacheinfo.mod │ │ ├── cat.mod │ │ ├── cbfs.mod │ │ ├── cbls.mod │ │ ├── cbmemc.mod │ │ ├── cbtable.mod │ │ ├── cbtime.mod │ │ ├── cdboot.img │ │ ├── chain.mod │ │ ├── cmdline_cat_test.mod │ │ ├── cmosdump.mod │ │ ├── cmostest.mod │ │ ├── cmp.mod │ │ ├── cmp_test.mod │ │ ├── command.lst │ │ ├── config.h │ │ ├── configfile.mod │ │ ├── core.img │ │ ├── cpio.mod │ │ ├── cpio_be.mod │ │ ├── cpuid.mod │ │ ├── crc64.mod │ │ ├── crypto.lst │ │ ├── crypto.mod │ │ ├── cryptodisk.mod │ │ ├── cs5536.mod │ │ ├── ctz_test.mod │ │ ├── date.mod │ │ ├── datehook.mod │ │ ├── datetime.mod │ │ ├── disk.mod │ │ ├── diskboot.img │ │ ├── diskfilter.mod │ │ ├── div.mod │ │ ├── div_test.mod │ │ ├── dm_nv.mod │ │ ├── drivemap.mod │ │ ├── echo.mod │ │ ├── efiemu.mod │ │ ├── ehci.mod │ │ ├── elf.mod │ │ ├── eltorito.img │ │ ├── eval.mod │ │ ├── exfat.mod │ │ ├── exfctest.mod │ │ ├── ext2.mod │ │ ├── extcmd.mod │ │ ├── f2fs.mod │ │ ├── fat.mod │ │ ├── fdt.lst │ │ ├── file.mod │ │ ├── font.mod │ │ ├── freedos.mod │ │ ├── fs.lst │ │ ├── fshelp.mod │ │ ├── functional_test.mod │ │ ├── gcry_arcfour.mod │ │ ├── gcry_blowfish.mod │ │ ├── gcry_camellia.mod │ │ ├── gcry_cast5.mod │ │ ├── gcry_crc.mod │ │ ├── gcry_des.mod │ │ ├── gcry_dsa.mod │ │ ├── gcry_idea.mod │ │ ├── gcry_md4.mod │ │ ├── gcry_md5.mod │ │ ├── gcry_rfc2268.mod │ │ ├── gcry_rijndael.mod │ │ ├── gcry_rmd160.mod │ │ ├── gcry_rsa.mod │ │ ├── gcry_seed.mod │ │ ├── gcry_serpent.mod │ │ ├── gcry_sha1.mod │ │ ├── gcry_sha256.mod │ │ ├── gcry_sha512.mod │ │ ├── gcry_tiger.mod │ │ ├── gcry_twofish.mod │ │ ├── gcry_whirlpool.mod │ │ ├── gdb.mod │ │ ├── geli.mod │ │ ├── gettext.mod │ │ ├── gfxmenu.mod │ │ ├── gfxterm.mod │ │ ├── gfxterm_background.mod │ │ ├── gfxterm_menu.mod │ │ ├── gptsync.mod │ │ ├── gzio.mod │ │ ├── halt.mod │ │ ├── hashsum.mod │ │ ├── hdparm.mod │ │ ├── hello.mod │ │ ├── help.mod │ │ ├── hexdump.mod │ │ ├── hfs.mod │ │ ├── hfsplus.mod │ │ ├── hfspluscomp.mod │ │ ├── http.mod │ │ ├── iorw.mod │ │ ├── iso9660.mod │ │ ├── jfs.mod │ │ ├── jpeg.mod │ │ ├── kernel.img │ │ ├── keylayouts.mod │ │ ├── keystatus.mod │ │ ├── ldm.mod │ │ ├── legacy_password_test.mod │ │ ├── legacycfg.mod │ │ ├── linux.mod │ │ ├── linux16.mod │ │ ├── lnxboot.img │ │ ├── loadenv.mod │ │ ├── loopback.mod │ │ ├── ls.mod │ │ ├── lsacpi.mod │ │ ├── lsapm.mod │ │ ├── lsmmap.mod │ │ ├── lspci.mod │ │ ├── luks.mod │ │ ├── lvm.mod │ │ ├── lzma_decompress.img │ │ ├── lzopio.mod │ │ ├── macbless.mod │ │ ├── macho.mod │ │ ├── mda_text.mod │ │ ├── mdraid09.mod │ │ ├── mdraid09_be.mod │ │ ├── mdraid1x.mod │ │ ├── memdisk.mod │ │ ├── memrw.mod │ │ ├── minicmd.mod │ │ ├── minix.mod │ │ ├── minix2.mod │ │ ├── minix2_be.mod │ │ ├── minix3.mod │ │ ├── minix3_be.mod │ │ ├── minix_be.mod │ │ ├── mmap.mod │ │ ├── moddep.lst │ │ ├── modinfo.sh │ │ ├── morse.mod │ │ ├── mpi.mod │ │ ├── msdospart.mod │ │ ├── mul_test.mod │ │ ├── multiboot.mod │ │ ├── multiboot2.mod │ │ ├── nativedisk.mod │ │ ├── net.mod │ │ ├── newc.mod │ │ ├── nilfs2.mod │ │ ├── normal.mod │ │ ├── ntfs.mod │ │ ├── ntfscomp.mod │ │ ├── ntldr.mod │ │ ├── odc.mod │ │ ├── offsetio.mod │ │ ├── ohci.mod │ │ ├── part_acorn.mod │ │ ├── part_amiga.mod │ │ ├── part_apple.mod │ │ ├── part_bsd.mod │ │ ├── part_dfly.mod │ │ ├── part_dvh.mod │ │ ├── part_gpt.mod │ │ ├── part_msdos.mod │ │ ├── part_plan.mod │ │ ├── part_sun.mod │ │ ├── part_sunpc.mod │ │ ├── partmap.lst │ │ ├── parttool.lst │ │ ├── parttool.mod │ │ ├── password.mod │ │ ├── password_pbkdf2.mod │ │ ├── pata.mod │ │ ├── pbkdf2.mod │ │ ├── pbkdf2_test.mod │ │ ├── pci.mod │ │ ├── pcidump.mod │ │ ├── pgp.mod │ │ ├── plan9.mod │ │ ├── play.mod │ │ ├── png.mod │ │ ├── priority_queue.mod │ │ ├── probe.mod │ │ ├── procfs.mod │ │ ├── progress.mod │ │ ├── pxe.mod │ │ ├── pxeboot.img │ │ ├── pxechain.mod │ │ ├── raid5rec.mod │ │ ├── raid6rec.mod │ │ ├── random.mod │ │ ├── rdmsr.mod │ │ ├── read.mod │ │ ├── reboot.mod │ │ ├── regexp.mod │ │ ├── reiserfs.mod │ │ ├── relocator.mod │ │ ├── romfs.mod │ │ ├── scsi.mod │ │ ├── search.mod │ │ ├── search_fs_file.mod │ │ ├── search_fs_uuid.mod │ │ ├── search_label.mod │ │ ├── sendkey.mod │ │ ├── serial.mod │ │ ├── setjmp.mod │ │ ├── setjmp_test.mod │ │ ├── setpci.mod │ │ ├── sfs.mod │ │ ├── shift_test.mod │ │ ├── signature_test.mod │ │ ├── sleep.mod │ │ ├── sleep_test.mod │ │ ├── smbios.mod │ │ ├── spkmodem.mod │ │ ├── squash4.mod │ │ ├── strtoull_test.mod │ │ ├── syslinuxcfg.mod │ │ ├── tar.mod │ │ ├── terminal.lst │ │ ├── terminal.mod │ │ ├── terminfo.mod │ │ ├── test.mod │ │ ├── test_blockarg.mod │ │ ├── testload.mod │ │ ├── testspeed.mod │ │ ├── tftp.mod │ │ ├── tga.mod │ │ ├── time.mod │ │ ├── tr.mod │ │ ├── trig.mod │ │ ├── true.mod │ │ ├── truecrypt.mod │ │ ├── udf.mod │ │ ├── ufs1.mod │ │ ├── ufs1_be.mod │ │ ├── ufs2.mod │ │ ├── uhci.mod │ │ ├── usb.mod │ │ ├── usb_keyboard.mod │ │ ├── usbms.mod │ │ ├── usbserial_common.mod │ │ ├── usbserial_ftdi.mod │ │ ├── usbserial_pl2303.mod │ │ ├── usbserial_usbdebug.mod │ │ ├── usbtest.mod │ │ ├── vbe.mod │ │ ├── verifiers.mod │ │ ├── vga.mod │ │ ├── vga_text.mod │ │ ├── video.lst │ │ ├── video.mod │ │ ├── video_bochs.mod │ │ ├── video_cirrus.mod │ │ ├── video_colors.mod │ │ ├── video_fb.mod │ │ ├── videoinfo.mod │ │ ├── videotest.mod │ │ ├── videotest_checksum.mod │ │ ├── wrmsr.mod │ │ ├── xfs.mod │ │ ├── xnu.mod │ │ ├── xnu_uuid.mod │ │ ├── xnu_uuid_test.mod │ │ ├── xzio.mod │ │ ├── zfs.mod │ │ ├── zfscrypt.mod │ │ ├── zfsinfo.mod │ │ └── zstd.mod │ ├── kernels.cfg │ ├── locales │ │ ├── C_ │ │ ├── be_BY │ │ ├── bg_BG │ │ ├── bs_BA │ │ ├── cs_CZ │ │ ├── da_DK │ │ ├── de_AT │ │ ├── de_BE │ │ ├── de_CH │ │ ├── de_DE │ │ ├── de_LI │ │ ├── de_LU │ │ ├── el_CY │ │ ├── el_GR │ │ ├── en_AG │ │ ├── en_AU │ │ ├── en_BW │ │ ├── en_CA │ │ ├── en_DK │ │ ├── en_GB │ │ ├── en_HK │ │ ├── en_IE │ │ ├── en_IN │ │ ├── en_NG │ │ ├── en_NZ │ │ ├── en_PH │ │ ├── en_SG │ │ ├── en_US │ │ ├── en_ZA │ │ ├── en_ZW │ │ ├── es_AR │ │ ├── es_BO │ │ ├── es_CL │ │ ├── es_CO │ │ ├── es_CR │ │ ├── es_DO │ │ ├── es_EC │ │ ├── es_ES │ │ ├── es_GT │ │ ├── es_HN │ │ ├── es_MX │ │ ├── es_NI │ │ ├── es_PA │ │ ├── es_PE │ │ ├── es_PR │ │ ├── es_PY │ │ ├── es_SV │ │ ├── es_US │ │ ├── es_UY │ │ ├── es_VE │ │ ├── et_EE │ │ ├── fi_FI │ │ ├── fr_BE │ │ ├── fr_CA │ │ ├── fr_CH │ │ ├── fr_FR │ │ ├── fr_LU │ │ ├── fr_NC │ │ ├── ga_IE │ │ ├── he_IL │ │ ├── hr_HR │ │ ├── hu_HU │ │ ├── is_IS │ │ ├── it_CH │ │ ├── it_IT │ │ ├── ja_JP │ │ ├── keyboards │ │ ├── ko_KR │ │ ├── nb_NO │ │ ├── nl_AW │ │ ├── nl_BE │ │ ├── nl_NL │ │ ├── nn_NO │ │ ├── pl_PL │ │ ├── pt_BR │ │ ├── pt_PT │ │ ├── ro_RO │ │ ├── ru_RU │ │ ├── ru_UA │ │ ├── se_FI │ │ ├── se_NO │ │ ├── se_SE │ │ ├── sk_SK │ │ ├── sl_SI │ │ ├── sv_FI │ │ ├── sv_SE │ │ ├── tr_CY │ │ ├── tr_TR │ │ ├── uk_UA │ │ ├── zh_CN │ │ ├── zh_HK │ │ ├── zh_SG │ │ └── zh_TW │ ├── themes │ │ └── XBook-live │ │ │ ├── background.jpg │ │ │ ├── dejavu_32.pf2 │ │ │ ├── dejavu_sans_12.pf2 │ │ │ ├── dejavu_sans_14.pf2 │ │ │ ├── dejavu_sans_16.pf2 │ │ │ ├── dejavu_sans_24.pf2 │ │ │ ├── dejavu_sans_48.pf2 │ │ │ ├── icons │ │ │ ├── Manjaro.i686.png │ │ │ ├── Manjaro.x86_64.png │ │ │ ├── antergos.png │ │ │ ├── arch.png │ │ │ ├── archlinux.png │ │ │ ├── arcolinux.png │ │ │ ├── bookos.png │ │ │ ├── cancel.png │ │ │ ├── chakra.png │ │ │ ├── debian.png │ │ │ ├── deepin.png │ │ │ ├── devuan.png │ │ │ ├── driver.png │ │ │ ├── edit.png │ │ │ ├── efi.png │ │ │ ├── elementary.png │ │ │ ├── endeavouros.png │ │ │ ├── fedora.png │ │ │ ├── find.efi.png │ │ │ ├── find.none.png │ │ │ ├── gentoo.png │ │ │ ├── gnu-linux.png │ │ │ ├── gueeos.png │ │ │ ├── help.png │ │ │ ├── kali.png │ │ │ ├── kaos.png │ │ │ ├── kbd.png │ │ │ ├── korora.png │ │ │ ├── kubuntu.png │ │ │ ├── lang.png │ │ │ ├── lfs.png │ │ │ ├── linux.png │ │ │ ├── linuxmint.png │ │ │ ├── lubuntu.png │ │ │ ├── macosx.png │ │ │ ├── mageia.png │ │ │ ├── manjaro.png │ │ │ ├── memtest.png │ │ │ ├── opensuse.png │ │ │ ├── pop-os.png │ │ │ ├── recovery.png │ │ │ ├── restart.png │ │ │ ├── shutdown.png │ │ │ ├── siduction.png │ │ │ ├── solus.png │ │ │ ├── steamos.png │ │ │ ├── type.png │ │ │ ├── tz.png │ │ │ ├── ubuntu.png │ │ │ ├── unknown.png │ │ │ ├── unset.png │ │ │ ├── void.png │ │ │ ├── windows.png │ │ │ └── xubuntu.png │ │ │ ├── select_c.png │ │ │ ├── select_e.png │ │ │ ├── select_w.png │ │ │ ├── terminal_box_c.png │ │ │ ├── terminal_box_e.png │ │ │ ├── terminal_box_n.png │ │ │ ├── terminal_box_ne.png │ │ │ ├── terminal_box_nw.png │ │ │ ├── terminal_box_s.png │ │ │ ├── terminal_box_se.png │ │ │ ├── terminal_box_sw.png │ │ │ ├── terminal_box_w.png │ │ │ ├── terminus-12.pf2 │ │ │ ├── terminus-14.pf2 │ │ │ ├── terminus-16.pf2 │ │ │ ├── terminus-18.pf2 │ │ │ └── theme.txt │ ├── unicode.pf2 │ ├── variable.cfg │ └── x86_64-efi │ │ ├── acpi.mod │ │ ├── adler32.mod │ │ ├── affs.mod │ │ ├── afs.mod │ │ ├── ahci.mod │ │ ├── all_video.mod │ │ ├── aout.mod │ │ ├── appleldr.mod │ │ ├── archelp.mod │ │ ├── at_keyboard.mod │ │ ├── ata.mod │ │ ├── backtrace.mod │ │ ├── bfs.mod │ │ ├── bitmap.mod │ │ ├── bitmap_scale.mod │ │ ├── blocklist.mod │ │ ├── boot.mod │ │ ├── boottime.mod │ │ ├── bsd.mod │ │ ├── bswap_test.mod │ │ ├── btrfs.mod │ │ ├── bufio.mod │ │ ├── cacheinfo.mod │ │ ├── cat.mod │ │ ├── cbfs.mod │ │ ├── cbls.mod │ │ ├── cbmemc.mod │ │ ├── cbtable.mod │ │ ├── cbtime.mod │ │ ├── chain.mod │ │ ├── cmdline_cat_test.mod │ │ ├── cmp.mod │ │ ├── cmp_test.mod │ │ ├── command.lst │ │ ├── configfile.mod │ │ ├── cpio.mod │ │ ├── cpio_be.mod │ │ ├── cpuid.mod │ │ ├── crc.mod │ │ ├── crc64.mod │ │ ├── crypto.lst │ │ ├── crypto.mod │ │ ├── cryptodisk.mod │ │ ├── cs5536.mod │ │ ├── ctz_test.mod │ │ ├── date.mod │ │ ├── datehook.mod │ │ ├── datetime.mod │ │ ├── disk.mod │ │ ├── diskfilter.mod │ │ ├── div.mod │ │ ├── div_test.mod │ │ ├── dm_nv.mod │ │ ├── echo.mod │ │ ├── efi_gop.mod │ │ ├── efi_uga.mod │ │ ├── efifwsetup.mod │ │ ├── efinet.mod │ │ ├── ehci.mod │ │ ├── elf.mod │ │ ├── eval.mod │ │ ├── exfat.mod │ │ ├── exfctest.mod │ │ ├── ext2.mod │ │ ├── extcmd.mod │ │ ├── f2fs.mod │ │ ├── fat.mod │ │ ├── fdt.lst │ │ ├── file.mod │ │ ├── fixvideo.mod │ │ ├── font.mod │ │ ├── fs.lst │ │ ├── fshelp.mod │ │ ├── functional_test.mod │ │ ├── gcry_arcfour.mod │ │ ├── gcry_blowfish.mod │ │ ├── gcry_camellia.mod │ │ ├── gcry_cast5.mod │ │ ├── gcry_crc.mod │ │ ├── gcry_des.mod │ │ ├── gcry_dsa.mod │ │ ├── gcry_idea.mod │ │ ├── gcry_md4.mod │ │ ├── gcry_md5.mod │ │ ├── gcry_rfc2268.mod │ │ ├── gcry_rijndael.mod │ │ ├── gcry_rmd160.mod │ │ ├── gcry_rsa.mod │ │ ├── gcry_seed.mod │ │ ├── gcry_serpent.mod │ │ ├── gcry_sha1.mod │ │ ├── gcry_sha256.mod │ │ ├── gcry_sha512.mod │ │ ├── gcry_tiger.mod │ │ ├── gcry_twofish.mod │ │ ├── gcry_whirlpool.mod │ │ ├── geli.mod │ │ ├── gettext.mod │ │ ├── gfxmenu.mod │ │ ├── gfxterm.mod │ │ ├── gfxterm_background.mod │ │ ├── gfxterm_menu.mod │ │ ├── gptsync.mod │ │ ├── gzio.mod │ │ ├── halt.mod │ │ ├── hashsum.mod │ │ ├── hdparm.mod │ │ ├── hello.mod │ │ ├── help.mod │ │ ├── hexdump.mod │ │ ├── hfs.mod │ │ ├── hfsplus.mod │ │ ├── hfspluscomp.mod │ │ ├── http.mod │ │ ├── iorw.mod │ │ ├── iso9660.mod │ │ ├── jfs.mod │ │ ├── jpeg.mod │ │ ├── kernel.img │ │ ├── keylayouts.mod │ │ ├── keystatus.mod │ │ ├── ldm.mod │ │ ├── legacy_password_test.mod │ │ ├── legacycfg.mod │ │ ├── linux.mod │ │ ├── linux16.mod │ │ ├── loadbios.mod │ │ ├── loadenv.mod │ │ ├── loopback.mod │ │ ├── ls.mod │ │ ├── lsacpi.mod │ │ ├── lsefi.mod │ │ ├── lsefimmap.mod │ │ ├── lsefisystab.mod │ │ ├── lsmmap.mod │ │ ├── lspci.mod │ │ ├── lssal.mod │ │ ├── luks.mod │ │ ├── lvm.mod │ │ ├── lzopio.mod │ │ ├── macbless.mod │ │ ├── macho.mod │ │ ├── mdraid09.mod │ │ ├── mdraid09_be.mod │ │ ├── mdraid1x.mod │ │ ├── memdisk.mod │ │ ├── memrw.mod │ │ ├── minicmd.mod │ │ ├── minix.mod │ │ ├── minix2.mod │ │ ├── minix2_be.mod │ │ ├── minix3.mod │ │ ├── minix3_be.mod │ │ ├── minix_be.mod │ │ ├── mmap.mod │ │ ├── moddep.lst │ │ ├── morse.mod │ │ ├── mpi.mod │ │ ├── msdospart.mod │ │ ├── mul_test.mod │ │ ├── multiboot.mod │ │ ├── multiboot2.mod │ │ ├── nativedisk.mod │ │ ├── net.mod │ │ ├── newc.mod │ │ ├── nilfs2.mod │ │ ├── normal.mod │ │ ├── ntfs.mod │ │ ├── ntfscomp.mod │ │ ├── odc.mod │ │ ├── offsetio.mod │ │ ├── ohci.mod │ │ ├── part_acorn.mod │ │ ├── part_amiga.mod │ │ ├── part_apple.mod │ │ ├── part_bsd.mod │ │ ├── part_dfly.mod │ │ ├── part_dvh.mod │ │ ├── part_gpt.mod │ │ ├── part_msdos.mod │ │ ├── part_plan.mod │ │ ├── part_sun.mod │ │ ├── part_sunpc.mod │ │ ├── partmap.lst │ │ ├── parttool.lst │ │ ├── parttool.mod │ │ ├── password.mod │ │ ├── password_pbkdf2.mod │ │ ├── pata.mod │ │ ├── pbkdf2.mod │ │ ├── pbkdf2_test.mod │ │ ├── pcidump.mod │ │ ├── pgp.mod │ │ ├── play.mod │ │ ├── png.mod │ │ ├── priority_queue.mod │ │ ├── probe.mod │ │ ├── procfs.mod │ │ ├── progress.mod │ │ ├── raid5rec.mod │ │ ├── raid6rec.mod │ │ ├── random.mod │ │ ├── rdmsr.mod │ │ ├── read.mod │ │ ├── reboot.mod │ │ ├── regexp.mod │ │ ├── reiserfs.mod │ │ ├── relocator.mod │ │ ├── romfs.mod │ │ ├── scsi.mod │ │ ├── search.mod │ │ ├── search_fs_file.mod │ │ ├── search_fs_uuid.mod │ │ ├── search_label.mod │ │ ├── serial.mod │ │ ├── setjmp.mod │ │ ├── setjmp_test.mod │ │ ├── setpci.mod │ │ ├── sfs.mod │ │ ├── shift_test.mod │ │ ├── shim_lock.mod │ │ ├── signature_test.mod │ │ ├── sleep.mod │ │ ├── sleep_test.mod │ │ ├── smbios.mod │ │ ├── spkmodem.mod │ │ ├── squash4.mod │ │ ├── strtoull_test.mod │ │ ├── syslinuxcfg.mod │ │ ├── tar.mod │ │ ├── terminal.lst │ │ ├── terminal.mod │ │ ├── terminfo.mod │ │ ├── test.mod │ │ ├── test_blockarg.mod │ │ ├── testload.mod │ │ ├── testspeed.mod │ │ ├── tftp.mod │ │ ├── tga.mod │ │ ├── time.mod │ │ ├── tpm.mod │ │ ├── tr.mod │ │ ├── trig.mod │ │ ├── true.mod │ │ ├── udf.mod │ │ ├── ufs1.mod │ │ ├── ufs1_be.mod │ │ ├── ufs2.mod │ │ ├── uhci.mod │ │ ├── usb.mod │ │ ├── usb_keyboard.mod │ │ ├── usbms.mod │ │ ├── usbserial_common.mod │ │ ├── usbserial_ftdi.mod │ │ ├── usbserial_pl2303.mod │ │ ├── usbserial_usbdebug.mod │ │ ├── usbtest.mod │ │ ├── verifiers.mod │ │ ├── video.lst │ │ ├── video.mod │ │ ├── video_bochs.mod │ │ ├── video_cirrus.mod │ │ ├── video_colors.mod │ │ ├── video_fb.mod │ │ ├── videoinfo.mod │ │ ├── videotest.mod │ │ ├── videotest_checksum.mod │ │ ├── wrmsr.mod │ │ ├── xfs.mod │ │ ├── xnu.mod │ │ ├── xnu_uuid.mod │ │ ├── xnu_uuid_test.mod │ │ ├── xzio.mod │ │ ├── zfs.mod │ │ ├── zfscrypt.mod │ │ ├── zfsinfo.mod │ │ └── zstd.mod └── stage2_eltorito └── compile.cfg /bin/README.md: -------------------------------------------------------------------------------- 1 | 该目录是存放普通应用程序的目录,对于应用开发者,需要在该目录下面工作。 2 | -------------------------------------------------------------------------------- /bin/bash/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/bin/bash/ChangeLog -------------------------------------------------------------------------------- /bin/bash/builtins/pipesize.h: -------------------------------------------------------------------------------- 1 | /* 2 | * pipesize.h 3 | * 4 | * This file is automatically generated by psize.sh 5 | * Do not edit! 6 | */ 7 | 8 | #define PIPESIZE 4096 9 | -------------------------------------------------------------------------------- /bin/bash/lib/glob/doc/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | cp glob.texi glob.info 3 | 4 | clean distclean mostlyclean maintainer-clean: 5 | rm -f glob.?? glob.info 6 | -------------------------------------------------------------------------------- /bin/bash/lib/glob/doc/glob.texi: -------------------------------------------------------------------------------- 1 | Nothing happens here. 2 | -------------------------------------------------------------------------------- /bin/bash/lib/intl/ChangeLog: -------------------------------------------------------------------------------- 1 | 2003-05-22 GNU 2 | 3 | * Version 0.12.1 released. 4 | 5 | -------------------------------------------------------------------------------- /bin/bash/lib/intl/VERSION: -------------------------------------------------------------------------------- 1 | GNU gettext library from gettext-0.12.1 2 | -------------------------------------------------------------------------------- /bin/bash/lib/intl/locale.alias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/bin/bash/lib/intl/locale.alias -------------------------------------------------------------------------------- /bin/bash/lib/readline/STANDALONE: -------------------------------------------------------------------------------- 1 | This is not to be built as a standalone library to be installed in some 2 | public place; get the full readline distribution instead. 3 | -------------------------------------------------------------------------------- /bin/cpptests/main.cpp: -------------------------------------------------------------------------------- 1 | #include "test.h" 2 | 3 | int main(int argc, char *argv[]) 4 | { 5 | iostream_test(argc, argv); 6 | 7 | return 0; 8 | } 9 | -------------------------------------------------------------------------------- /bin/cpptests/test.h: -------------------------------------------------------------------------------- 1 | #ifndef _CPP_TEST_H 2 | #define _CPP_TEST_H 3 | 4 | int iostream_test(int argc, char *argv[]); 5 | 6 | #endif // _CPP_TEST_H 7 | -------------------------------------------------------------------------------- /bin/env/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/bin/env/env -------------------------------------------------------------------------------- /bin/lmbench/lmbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/bin/lmbench/lmbench -------------------------------------------------------------------------------- /bin/lua/lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/bin/lua/lua -------------------------------------------------------------------------------- /bin/mp3player/helix/Makefile: -------------------------------------------------------------------------------- 1 | SRC += *.c real/*.c -------------------------------------------------------------------------------- /bin/poweroff/main.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(void) { 4 | return syscall0(int, SYS_SHUTDOWN); 5 | } -------------------------------------------------------------------------------- /bin/reboot/main.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(void) { 4 | return syscall0(int, SYS_REBOOT); 5 | } -------------------------------------------------------------------------------- /bin/test_echo/test_echo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/bin/test_echo/test_echo -------------------------------------------------------------------------------- /develop/rom/.bash_profile: -------------------------------------------------------------------------------- 1 | export PS1='[\u@\h \W] ' -------------------------------------------------------------------------------- /develop/rom/.profile: -------------------------------------------------------------------------------- 1 | export PS1='[\u@\h \W] ' -------------------------------------------------------------------------------- /develop/rom/boot/bootres.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/develop/rom/boot/bootres.img -------------------------------------------------------------------------------- /develop/rom/boot/uga.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/develop/rom/boot/uga.img -------------------------------------------------------------------------------- /develop/rom/etc/passwd: -------------------------------------------------------------------------------- 1 | root:1234:0:0:root:/root:/bin/bash 2 | jasonhu:0325:1:1:xbook auther:/bin:/bin/bash 3 | -------------------------------------------------------------------------------- /develop/rom/etc/profile: -------------------------------------------------------------------------------- 1 | PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/sbin:/usr/sbin" 2 | -------------------------------------------------------------------------------- /develop/rom/etc/termcap: -------------------------------------------------------------------------------- 1 | vt|vt101|DEC VT 101 terminal in 80 character mode:\ 2 | bs:\ 3 | co#80:\ -------------------------------------------------------------------------------- /develop/rom/usr/data/Infinity.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/develop/rom/usr/data/Infinity.mp3 -------------------------------------------------------------------------------- /develop/rom/usr/data/alarm01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/develop/rom/usr/data/alarm01.wav -------------------------------------------------------------------------------- /develop/rom/usr/data/hi.txt: -------------------------------------------------------------------------------- 1 | asdasd 2 | asfafaf 3 | 4 | steve macos 5 | 6 | 7 | after 8 | ssss 9 | steve windows -------------------------------------------------------------------------------- /develop/rom/usr/data/ss.txt: -------------------------------------------------------------------------------- 1 | asdasd 2 | asfafaf 3 | 4 | steve fail 5 | 6 | 7 | steve winner 8 | after 9 | ssss 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /develop/rom/www/CNAME: -------------------------------------------------------------------------------- 1 | www.book-os.org -------------------------------------------------------------------------------- /develop/rom/www/README.md: -------------------------------------------------------------------------------- 1 | This is a website for Book OS. 2 | Our github is https://github.com/hzcx998/BookOS 3 | kernel is https://github.com/hzcx998/xbook2 -------------------------------------------------------------------------------- /develop/rom/www/img/icon/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/develop/rom/www/img/icon/icon.jpg -------------------------------------------------------------------------------- /libs/sconf/Makefile: -------------------------------------------------------------------------------- 1 | X_INCDIRS += xlibc/include 2 | 3 | SRC += *.c 4 | TARGET_TYPE := static 5 | NAME := sconf -------------------------------------------------------------------------------- /libs/uview/Makefile: -------------------------------------------------------------------------------- 1 | X_INCDIRS := xlibc/include uview/include 2 | 3 | SRC += *.c 4 | TARGET_TYPE := static 5 | NAME := uview 6 | -------------------------------------------------------------------------------- /libs/xcrt/Makefile: -------------------------------------------------------------------------------- 1 | SRC += x86/*.asm 2 | 3 | TARGET_TYPE := static 4 | NAME := xcrt -------------------------------------------------------------------------------- /libs/xlibc/math/fmax.c: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | 4 | double fmax(double x, double y) { 5 | return (double) (x > y ? x : y); 6 | } 7 | -------------------------------------------------------------------------------- /libs/xlibc/math/fmaxf.c: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | 4 | float fmaxf(float x, float y) { 5 | return (float) (x > y ? x : y); 6 | } 7 | -------------------------------------------------------------------------------- /libs/xlibc/math/fmin.c: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | 4 | double fmin(double x, double y) { 5 | return (double) (x < y ? x : y); 6 | } 7 | -------------------------------------------------------------------------------- /libs/xlibc/math/fminf.c: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | 4 | float fminf(float x, float y) { 5 | return (float) (x < y ? x : y); 6 | } 7 | -------------------------------------------------------------------------------- /libs/xlibc/math/ldexp.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | 4 | double ldexp(double x, int n) 5 | { 6 | return scalbn(x, n); 7 | } 8 | -------------------------------------------------------------------------------- /libs/xlibc/math/ldexpf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | 4 | float ldexpf(float x, int n) 5 | { 6 | return scalbnf(x, n); 7 | } 8 | -------------------------------------------------------------------------------- /libs/xlibc/stdio/feof.c: -------------------------------------------------------------------------------- 1 | /* 2 | * xlibc/stdio/feof.c 3 | */ 4 | 5 | #include 6 | 7 | int feof(FILE * f) 8 | { 9 | return f->eof; 10 | } 11 | -------------------------------------------------------------------------------- /libs/xlibc/stdio/ferror.c: -------------------------------------------------------------------------------- 1 | /* 2 | * xlibc/stdio/ferror.c 3 | */ 4 | 5 | #include 6 | 7 | int ferror(FILE * f) 8 | { 9 | return f->error; 10 | } 11 | -------------------------------------------------------------------------------- /libs/xlibc/stdio/getc.c: -------------------------------------------------------------------------------- 1 | /* 2 | * xlibc/stdio/getc.c 3 | */ 4 | 5 | #include 6 | 7 | int getc(FILE * f) 8 | { 9 | return fgetc(f); 10 | } 11 | -------------------------------------------------------------------------------- /libs/xlibc/stdio/getchar.c: -------------------------------------------------------------------------------- 1 | /* 2 | * xlibc/stdio/getchar.c 3 | */ 4 | 5 | #include 6 | 7 | int getchar(void) 8 | { 9 | return fgetc(stdin); 10 | } 11 | -------------------------------------------------------------------------------- /libs/xlibc/stdio/putc.c: -------------------------------------------------------------------------------- 1 | /* 2 | * xlibc/stdio/putc.c 3 | */ 4 | 5 | #include 6 | 7 | int putc(int c, FILE * f) 8 | { 9 | return fputc(c, f); 10 | } 11 | -------------------------------------------------------------------------------- /libs/xlibc/stdio/putchar.c: -------------------------------------------------------------------------------- 1 | /* 2 | * xlibc/stdio/putchar.c 3 | */ 4 | 5 | #include 6 | 7 | int putchar(int c) 8 | { 9 | return fputc(c, stdout); 10 | } 11 | -------------------------------------------------------------------------------- /libs/xlibc/stdio/rewind.c: -------------------------------------------------------------------------------- 1 | /* 2 | * xlibc/stdio/rewind.c 3 | */ 4 | 5 | #include 6 | 7 | void rewind(FILE * f) 8 | { 9 | fseek(f, 0, SEEK_SET); 10 | } 11 | -------------------------------------------------------------------------------- /libs/xlibc/stdlib/abs.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int abs(int const i) 4 | { 5 | return i > 0 ? i : -i; 6 | } 7 | -------------------------------------------------------------------------------- /libs/xlibc/stdlib/labs.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long int labs(long int const i) 4 | { 5 | return i > 0 ? i : -i; 6 | } 7 | -------------------------------------------------------------------------------- /libs/xlibc/syslib/times.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | clock_t times(struct tms *buf) 5 | { 6 | return syscall1(clock_t, SYS_TIMES, buf); 7 | } 8 | -------------------------------------------------------------------------------- /libs/xlibc/termios/tcflow.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int tcflow(int fildes,int action) 4 | { 5 | /* FIXME: set flow in tty */ 6 | return -1; 7 | } -------------------------------------------------------------------------------- /libs/xlibc/time/gettimeofday.c: -------------------------------------------------------------------------------- 1 | /* 2 | * libc/time/gettimeofday.c 3 | */ 4 | 5 | -------------------------------------------------------------------------------- /libs/xlibc/unistd/sysconf.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | long sysconf(int name) 5 | { 6 | return syscall1(long, SYS_SYSCONF, name); 7 | } 8 | -------------------------------------------------------------------------------- /libs/xlibc/unistd/umask.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | mode_t umask(mode_t mask) 4 | { 5 | /* FIXME: set mask in kernel */ 6 | return 0; 7 | } -------------------------------------------------------------------------------- /libs/xlibcpp/Makefile: -------------------------------------------------------------------------------- 1 | X_INCDIRS := xlibc/include 2 | 3 | TARGET_TYPE := static 4 | NAME := xlibcpp 5 | -------------------------------------------------------------------------------- /sbin/README.md: -------------------------------------------------------------------------------- 1 | 系统程序的目录,普通应用程序开发者不应该触碰该目录下面的软件。 2 | -------------------------------------------------------------------------------- /sbin/netserv/lwip/Makefile: -------------------------------------------------------------------------------- 1 | SRC += api/*.c 2 | SRC += arch/*.c 3 | SRC += core/*.c 4 | SRC += core/ipv4/*.c 5 | SRC += core/snmp/*.c 6 | SRC += netif/*.c 7 | -------------------------------------------------------------------------------- /sbin/netserv/lwip/core/ipv6/README: -------------------------------------------------------------------------------- 1 | IPv6 support in lwIP is very experimental. 2 | -------------------------------------------------------------------------------- /sbin/netserv/lwip/include/arch/bpstruct.h: -------------------------------------------------------------------------------- 1 | #pragma pack(push,1) 2 | -------------------------------------------------------------------------------- /sbin/netserv/lwip/include/arch/epstruct.h: -------------------------------------------------------------------------------- 1 | #pragma pack(pop) 2 | -------------------------------------------------------------------------------- /sbin/netserv/socket_udp.h: -------------------------------------------------------------------------------- 1 | #ifndef __SOCKET_EXAMPLES_H__ 2 | #define __SOCKET_EXAMPLES_H__ 3 | 4 | void socket_examples_init(void); 5 | 6 | #endif /* __SOCKET_EXAMPLES_H__ */ 7 | -------------------------------------------------------------------------------- /scripts/fixdep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/scripts/fixdep.exe -------------------------------------------------------------------------------- /src/arch/x86/Makefile: -------------------------------------------------------------------------------- 1 | SRC += boot/ 2 | SRC += mach-i386/ 3 | -------------------------------------------------------------------------------- /src/arch/x86/boot/Makefile: -------------------------------------------------------------------------------- 1 | ifeq ($(KERN_VBE_MODE),y) 2 | X_CFLAGS += -DKERN_VBE_MODE 3 | endif 4 | ifeq ($(BOOT_MODE),$(BOOT_GRUB2_MODE)) 5 | SRC += multiboot2/ 6 | endif -------------------------------------------------------------------------------- /src/arch/x86/boot/multiboot2/Makefile: -------------------------------------------------------------------------------- 1 | SRC += multiboot2.S 2 | SRC += setup.c 3 | SRC += framebuffer.c 4 | -------------------------------------------------------------------------------- /src/arch/x86/boot/myboot/config.inc: -------------------------------------------------------------------------------- 1 | 2 | ; 配置引导方式,只能选择一个 3 | %define CONFIG_BOOT_FLOPPY 4 | ;%define CONFIG_BOOT_HARDDISK 5 | -------------------------------------------------------------------------------- /src/arch/x86/mach-i386/drivers/audio/Makefile: -------------------------------------------------------------------------------- 1 | SRC += intel-hda/ 2 | SRC += sb16/ 3 | #SRC += ac97/ 4 | SRC += pcspeaker.c -------------------------------------------------------------------------------- /src/arch/x86/mach-i386/drivers/audio/intel-hda/Makefile: -------------------------------------------------------------------------------- 1 | # SRC += *.c -------------------------------------------------------------------------------- /src/arch/x86/mach-i386/drivers/audio/sb16/Makefile: -------------------------------------------------------------------------------- 1 | SRC += sb16.c -------------------------------------------------------------------------------- /src/arch/x86/mach-i386/drivers/disk/Makefile: -------------------------------------------------------------------------------- 1 | SRC += ahci.c 2 | SRC += ide.c 3 | SRC += cdrom.c 4 | -------------------------------------------------------------------------------- /src/arch/x86/mach-i386/drivers/input/Makefile: -------------------------------------------------------------------------------- 1 | SRC += keyboard.c 2 | #SRC += mouse.c 3 | SRC += ps2mouse.c -------------------------------------------------------------------------------- /src/arch/x86/mach-i386/drivers/misc/Makefile: -------------------------------------------------------------------------------- 1 | SRC += cpu.c -------------------------------------------------------------------------------- /src/arch/x86/mach-i386/drivers/network/Makefile: -------------------------------------------------------------------------------- 1 | SRC += e1000/ 2 | SRC += rtl8139.c 3 | SRC += pcnet32.c 4 | -------------------------------------------------------------------------------- /src/arch/x86/mach-i386/drivers/network/e1000/Makefile: -------------------------------------------------------------------------------- 1 | SRC += e1000.c 2 | SRC += e1000_hw.c -------------------------------------------------------------------------------- /src/arch/x86/mach-i386/drivers/output/Makefile: -------------------------------------------------------------------------------- 1 | ifeq ($(KERN_VBE_MODE),y) 2 | X_CFLAGS += -DKERN_VBE_MODE 3 | endif 4 | 5 | SRC += console.c -------------------------------------------------------------------------------- /src/arch/x86/mach-i386/drivers/uart/Makefile: -------------------------------------------------------------------------------- 1 | SRC += serial.c -------------------------------------------------------------------------------- /src/arch/x86/mach-i386/drivers/usb/Makefile: -------------------------------------------------------------------------------- 1 | # SRC += *.c -------------------------------------------------------------------------------- /src/arch/x86/mach-i386/drivers/video/Makefile: -------------------------------------------------------------------------------- 1 | ifeq ($(KERN_VBE_MODE),y) 2 | X_CFLAGS += -DKERN_VBE_MODE 3 | endif 4 | SRC += vbe.c -------------------------------------------------------------------------------- /src/drivers/Makefile: -------------------------------------------------------------------------------- 1 | SRC += view/ 2 | SRC += tty/ 3 | SRC += char/ 4 | SRC += block/ 5 | -------------------------------------------------------------------------------- /src/drivers/README.md: -------------------------------------------------------------------------------- 1 | # drivers 目录,存放通用驱动或者是软件驱动 2 | -------------------------------------------------------------------------------- /src/drivers/char/Makefile: -------------------------------------------------------------------------------- 1 | SRC += *.c 2 | -------------------------------------------------------------------------------- /src/drivers/view/Makefile: -------------------------------------------------------------------------------- 1 | SRC += *.c 2 | SRC += core/*.c 3 | SRC += hal/*.c 4 | -------------------------------------------------------------------------------- /src/dwin/Makefile: -------------------------------------------------------------------------------- 1 | SRC += *.c 2 | SRC += hal/ 3 | SRC += objects/ -------------------------------------------------------------------------------- /src/dwin/hal/Makefile: -------------------------------------------------------------------------------- 1 | SRC += kdevice/ 2 | -------------------------------------------------------------------------------- /src/dwin/hal/kdevice/Makefile: -------------------------------------------------------------------------------- 1 | SRC += *.c 2 | -------------------------------------------------------------------------------- /src/dwin/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/src/dwin/message.c -------------------------------------------------------------------------------- /src/dwin/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/src/dwin/window.c -------------------------------------------------------------------------------- /src/fs/Makefile: -------------------------------------------------------------------------------- 1 | ifeq ($(BOOT_MODE),$(BOOT_GRUB2_MODE)) 2 | X_CFLAGS += -D$(BOOT_GRUB2_MODE) 3 | endif 4 | 5 | SRC += *.c 6 | SRC += fsal/ 7 | SRC += fatfs/ 8 | -------------------------------------------------------------------------------- /src/fs/fatfs/Makefile: -------------------------------------------------------------------------------- 1 | SRC += diskio.c 2 | SRC += ff.c 3 | SRC += ffsystem.c 4 | SRC += ffunicode.c 5 | -------------------------------------------------------------------------------- /src/fs/fsal/Makefile: -------------------------------------------------------------------------------- 1 | SRC += dir.c 2 | SRC += fatfs.c 3 | SRC += fsal.c 4 | SRC += fstype.c 5 | SRC += fsalif.c 6 | SRC += path.c 7 | SRC += file.c 8 | SRC += fd.c 9 | -------------------------------------------------------------------------------- /src/include/ctype.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _LIB_CTYPE_H 3 | #define _LIB_CTYPE_H 4 | 5 | int isspace(char c); 6 | 7 | #endif /* _LIB_CTYPE_H */ -------------------------------------------------------------------------------- /src/include/dwin/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/src/include/dwin/window.h -------------------------------------------------------------------------------- /src/include/xbook/memalloc.h: -------------------------------------------------------------------------------- 1 | #ifndef _XBOOK_MEMALLOC_H 2 | #define _XBOOK_MEMMALLOC_H 3 | 4 | #include "memcache.h" 5 | 6 | #endif /* _XBOOK_MEMALLOC_H */ -------------------------------------------------------------------------------- /src/init/Makefile: -------------------------------------------------------------------------------- 1 | SRC += main.c -------------------------------------------------------------------------------- /src/ipc/Makefile: -------------------------------------------------------------------------------- 1 | SRC += sharemem.c 2 | SRC += msgqueue.c 3 | SRC += sem.c 4 | SRC += fifo.c 5 | SRC += pipe.c 6 | SRC += lpc.c 7 | SRC += portcomm.c 8 | -------------------------------------------------------------------------------- /src/lib/Makefile: -------------------------------------------------------------------------------- 1 | SRC += *.c -------------------------------------------------------------------------------- /src/lib/abort.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | void abort(void) 5 | { 6 | spin("abort"); 7 | } 8 | -------------------------------------------------------------------------------- /src/lib/stdio.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int fflush(FILE * f) 4 | { 5 | /* do nothing */ 6 | return 0; 7 | } -------------------------------------------------------------------------------- /src/net/Makefile: -------------------------------------------------------------------------------- 1 | SRC += socket.c 2 | SRC += *.c 3 | SRC += lwip/ 4 | SRC += socketapi/ 5 | -------------------------------------------------------------------------------- /src/net/lwip/Makefile: -------------------------------------------------------------------------------- 1 | SRC += api/*.c 2 | SRC += arch/*.c 3 | SRC += core/*.c 4 | SRC += core/ipv4/*.c 5 | SRC += core/snmp/*.c 6 | SRC += netif/*.c 7 | -------------------------------------------------------------------------------- /src/net/lwip/include/arch/bpstruct.h: -------------------------------------------------------------------------------- 1 | #pragma pack(push,1) 2 | -------------------------------------------------------------------------------- /src/net/lwip/include/arch/epstruct.h: -------------------------------------------------------------------------------- 1 | #pragma pack(pop) 2 | -------------------------------------------------------------------------------- /src/vmm/Makefile: -------------------------------------------------------------------------------- 1 | SRC += memcache.c 2 | SRC += virmem.c 3 | SRC += vmm.c 4 | SRC += memspace.c 5 | SRC += mdl.c 6 | SRC += dma.c 7 | -------------------------------------------------------------------------------- /tools/bios_fw/IA32_OVMF.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/bios_fw/IA32_OVMF.fd -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/acpi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/acpi.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/adler32.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/adler32.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/affs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/affs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/afs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/afs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/ahci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/ahci.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/alias.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/alias.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/all_video.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/all_video.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/aout.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/aout.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/appleldr.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/appleldr.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/archelp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/archelp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/ata.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/ata.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/backtrace.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/backtrace.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/bcfg.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/bcfg.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/bfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/bfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/bitmap.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/bitmap.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/blocklist.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/blocklist.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/blscfg.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/blscfg.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/bmp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/bmp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/boot.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/boot.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/bsd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/bsd.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/btrfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/btrfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/bufio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/bufio.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/cat.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/cat.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/cbfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/cbfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/cbls.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/cbls.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/cbmemc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/cbmemc.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/cbtable.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/cbtable.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/cbtime.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/cbtime.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/chain.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/chain.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/cmp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/cmp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/cmp_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/cmp_test.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/conv.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/conv.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/cpio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/cpio.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/cpio_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/cpio_be.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/cpuid.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/cpuid.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/crc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/crc.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/crc64.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/crc64.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/crypto.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/crypto.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/cs5536.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/cs5536.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/ctz_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/ctz_test.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/date.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/date.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/datehook.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/datehook.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/datetime.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/datetime.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/dd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/dd.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/disk.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/disk.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/div.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/div.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/div_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/div_test.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/dm_nv.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/dm_nv.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/dp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/dp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/echo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/echo.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/efi_gop.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/efi_gop.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/efi_mouse.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/efi_mouse.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/efi_netfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/efi_netfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/efi_uga.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/efi_uga.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/efienv.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/efienv.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/efiload.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/efiload.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/efinet.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/efinet.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/ehci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/ehci.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/elf.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/elf.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/eval.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/eval.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/exfat.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/exfat.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/exfctest.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/exfctest.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/expr.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/expr.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/ext2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/ext2.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/extcmd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/extcmd.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/f2fs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/f2fs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/fat.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/fat.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/fatfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/fatfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/fb.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/fb.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/fdlibm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/fdlibm.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/fdt.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/fdt.lst -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/file.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/file.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/fixmmap.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/fixmmap.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/fixvideo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/fixvideo.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/font.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/font.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/fshelp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/fshelp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/gcry_crc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/gcry_crc.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/gcry_des.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/gcry_des.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/gcry_dsa.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/gcry_dsa.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/gcry_idea.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/gcry_idea.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/gcry_md4.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/gcry_md4.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/gcry_md5.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/gcry_md5.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/gcry_rsa.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/gcry_rsa.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/gcry_seed.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/gcry_seed.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/gcry_sha1.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/gcry_sha1.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/gdb.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/gdb.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/geli.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/geli.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/getargs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/getargs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/getenv.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/getenv.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/getkey.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/getkey.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/gettext.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/gettext.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/gfxmenu.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/gfxmenu.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/gfxterm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/gfxterm.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/gpt.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/gpt.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/gptprio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/gptprio.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/gptrepair.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/gptrepair.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/gptsync.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/gptsync.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/grubfm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/grubfm.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/gzio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/gzio.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/halt.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/halt.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/hashsum.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/hashsum.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/hdparm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/hdparm.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/help.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/help.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/hexdump.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/hexdump.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/hfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/hfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/hfsplus.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/hfsplus.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/http.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/http.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/increment.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/increment.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/ini.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/ini.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/iorw.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/iorw.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/iso9660.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/iso9660.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/jfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/jfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/jpeg.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/jpeg.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/json.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/json.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/kernel.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/kernel.img -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/keystatus.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/keystatus.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/ldm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/ldm.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/legacycfg.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/legacycfg.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/linux.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/linux.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/linux16.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/linux16.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/linuxefi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/linuxefi.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/loadbios.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/loadbios.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/loadenv.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/loadenv.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/loopback.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/loopback.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/ls.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/ls.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/lsacpi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/lsacpi.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/lsefi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/lsefi.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/lsefimmap.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/lsefimmap.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/lsmmap.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/lsmmap.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/lspci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/lspci.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/lssal.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/lssal.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/lua.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/lua.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/luks.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/luks.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/luks2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/luks2.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/lvm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/lvm.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/lynxfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/lynxfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/lzmaio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/lzmaio.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/lzopio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/lzopio.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/macbless.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/macbless.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/macho.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/macho.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/map.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/map.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/mdraid09.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/mdraid09.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/mdraid1x.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/mdraid1x.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/memdisk.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/memdisk.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/memrw.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/memrw.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/minicmd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/minicmd.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/minix.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/minix.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/minix2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/minix2.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/minix2_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/minix2_be.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/minix3.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/minix3.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/minix3_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/minix3_be.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/minix_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/minix_be.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/mmap.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/mmap.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/morse.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/morse.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/mpi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/mpi.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/msdospart.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/msdospart.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/mul_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/mul_test.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/multiboot.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/multiboot.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/nes.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/nes.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/net.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/net.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/newc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/newc.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/nilfs2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/nilfs2.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/normal.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/normal.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/ntboot.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/ntboot.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/ntfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/ntfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/ntfscomp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/ntfscomp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/nttools.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/nttools.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/odc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/odc.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/offsetio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/offsetio.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/ohci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/ohci.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/part_bsd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/part_bsd.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/part_dfly.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/part_dfly.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/part_dvh.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/part_dvh.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/part_gpt.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/part_gpt.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/part_plan.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/part_plan.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/part_sun.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/part_sun.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/partnew.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/partnew.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/parttool.lst: -------------------------------------------------------------------------------- 1 | msdos: msdospart 2 | -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/parttool.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/parttool.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/password.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/password.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/pata.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/pata.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/pbkdf2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/pbkdf2.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/pcidump.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/pcidump.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/pgp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/pgp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/play.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/play.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/png.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/png.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/probe.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/probe.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/procfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/procfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/progress.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/progress.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/ps2mouse.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/ps2mouse.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/qnx4.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/qnx4.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/qnx6.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/qnx6.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/raid5rec.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/raid5rec.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/raid6rec.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/raid6rec.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/random.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/random.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/rdmsr.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/rdmsr.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/read.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/read.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/reboot.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/reboot.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/regexp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/regexp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/reiserfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/reiserfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/relocator.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/relocator.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/romfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/romfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/sbpolicy.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/sbpolicy.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/scsi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/scsi.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/search.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/search.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/serial.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/serial.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/setenv.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/setenv.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/setjmp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/setjmp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/setkey.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/setkey.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/setpci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/setpci.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/setup_var.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/setup_var.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/sfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/sfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/shell.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/shell.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/shim_lock.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/shim_lock.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/sleep.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/sleep.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/smbios.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/smbios.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/sortlib.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/sortlib.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/spkmodem.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/spkmodem.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/squash4.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/squash4.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/stat.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/stat.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/tar.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/tar.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/terminal.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/terminal.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/terminfo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/terminfo.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/test.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/testload.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/testload.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/testspeed.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/testspeed.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/tetris.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/tetris.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/tftp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/tftp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/tga.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/tga.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/time.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/time.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/tpm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/tpm.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/tr.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/tr.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/trig.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/trig.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/true.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/true.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/udf.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/udf.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/ufs1.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/ufs1.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/ufs1_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/ufs1_be.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/ufs2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/ufs2.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/uhci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/uhci.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/usb.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/usb.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/usbms.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/usbms.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/usbtest.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/usbtest.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/uuid.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/uuid.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/verifiers.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/verifiers.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/version.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/version.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/vhd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/vhd.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/video.lst: -------------------------------------------------------------------------------- 1 | efi_gop 2 | efi_uga 3 | video_bochs 4 | video_cirrus 5 | -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/video.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/video.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/video_fb.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/video_fb.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/videoinfo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/videoinfo.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/videotest.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/videotest.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/wimboot.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/wimboot.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/wrmsr.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/wrmsr.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/xfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/xfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/xnu_uuid.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/xnu_uuid.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/xzio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/xzio.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/zfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/zfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/zfscrypt.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/zfscrypt.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/zfsinfo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/zfsinfo.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-efi/zstd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-efi/zstd.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/acpi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/acpi.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/adler32.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/adler32.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/affs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/affs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/afs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/afs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/ahci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/ahci.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/all_video.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/all_video.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/aout.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/aout.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/archelp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/archelp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/ata.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/ata.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/backtrace.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/backtrace.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/bfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/bfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/biosdisk.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/biosdisk.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/bitmap.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/bitmap.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/blocklist.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/blocklist.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/boot.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/boot.img -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/boot.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/boot.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/boottime.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/boottime.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/bsd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/bsd.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/bswap_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/bswap_test.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/btrfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/btrfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/bufio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/bufio.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/cacheinfo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/cacheinfo.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/cat.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/cat.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/cbfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/cbfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/cbls.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/cbls.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/cbmemc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/cbmemc.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/cbtable.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/cbtable.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/cbtime.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/cbtime.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/cdboot.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/cdboot.img -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/chain.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/chain.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/cmosdump.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/cmosdump.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/cmostest.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/cmostest.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/cmp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/cmp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/cmp_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/cmp_test.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/configfile.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/configfile.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/core.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/core.img -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/cpio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/cpio.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/cpio_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/cpio_be.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/cpuid.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/cpuid.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/crc64.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/crc64.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/crypto.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/crypto.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/cryptodisk.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/cryptodisk.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/cs5536.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/cs5536.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/ctz_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/ctz_test.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/date.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/date.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/datehook.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/datehook.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/datetime.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/datetime.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/disk.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/disk.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/diskboot.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/diskboot.img -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/diskfilter.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/diskfilter.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/div.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/div.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/div_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/div_test.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/dm_nv.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/dm_nv.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/drivemap.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/drivemap.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/echo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/echo.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/efiemu.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/efiemu.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/ehci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/ehci.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/elf.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/elf.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/eltorito.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/eltorito.img -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/eval.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/eval.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/exfat.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/exfat.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/exfctest.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/exfctest.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/ext2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/ext2.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/extcmd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/extcmd.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/f2fs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/f2fs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/fat.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/fat.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/fdt.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/fdt.lst -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/file.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/file.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/font.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/font.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/freedos.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/freedos.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/fshelp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/fshelp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/gcry_cast5.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/gcry_cast5.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/gcry_crc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/gcry_crc.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/gcry_des.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/gcry_des.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/gcry_dsa.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/gcry_dsa.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/gcry_idea.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/gcry_idea.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/gcry_md4.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/gcry_md4.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/gcry_md5.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/gcry_md5.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/gcry_rsa.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/gcry_rsa.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/gcry_seed.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/gcry_seed.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/gcry_sha1.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/gcry_sha1.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/gcry_tiger.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/gcry_tiger.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/gdb.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/gdb.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/geli.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/geli.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/gettext.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/gettext.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/gfxmenu.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/gfxmenu.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/gfxterm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/gfxterm.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/gptsync.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/gptsync.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/gzio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/gzio.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/halt.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/halt.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/hashsum.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/hashsum.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/hdparm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/hdparm.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/hello.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/hello.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/help.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/help.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/hexdump.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/hexdump.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/hfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/hfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/hfsplus.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/hfsplus.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/http.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/http.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/iorw.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/iorw.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/iso9660.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/iso9660.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/jfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/jfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/jpeg.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/jpeg.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/kernel.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/kernel.img -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/keylayouts.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/keylayouts.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/keystatus.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/keystatus.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/ldm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/ldm.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/legacycfg.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/legacycfg.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/linux.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/linux.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/linux16.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/linux16.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/lnxboot.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/lnxboot.img -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/loadenv.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/loadenv.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/loopback.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/loopback.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/ls.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/ls.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/lsacpi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/lsacpi.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/lsapm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/lsapm.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/lsmmap.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/lsmmap.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/lspci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/lspci.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/luks.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/luks.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/lvm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/lvm.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/lzopio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/lzopio.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/macbless.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/macbless.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/macho.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/macho.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/mda_text.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/mda_text.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/mdraid09.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/mdraid09.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/mdraid1x.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/mdraid1x.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/memdisk.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/memdisk.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/memrw.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/memrw.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/minicmd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/minicmd.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/minix.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/minix.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/minix2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/minix2.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/minix2_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/minix2_be.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/minix3.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/minix3.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/minix3_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/minix3_be.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/minix_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/minix_be.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/mmap.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/mmap.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/morse.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/morse.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/mpi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/mpi.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/msdospart.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/msdospart.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/mul_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/mul_test.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/multiboot.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/multiboot.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/multiboot2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/multiboot2.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/nativedisk.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/nativedisk.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/net.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/net.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/newc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/newc.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/nilfs2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/nilfs2.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/normal.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/normal.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/ntfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/ntfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/ntfscomp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/ntfscomp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/ntldr.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/ntldr.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/odc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/odc.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/offsetio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/offsetio.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/ohci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/ohci.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/part_acorn.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/part_acorn.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/part_amiga.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/part_amiga.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/part_apple.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/part_apple.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/part_bsd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/part_bsd.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/part_dfly.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/part_dfly.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/part_dvh.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/part_dvh.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/part_gpt.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/part_gpt.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/part_msdos.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/part_msdos.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/part_plan.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/part_plan.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/part_sun.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/part_sun.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/part_sunpc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/part_sunpc.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/parttool.lst: -------------------------------------------------------------------------------- 1 | msdos: msdospart 2 | -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/parttool.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/parttool.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/password.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/password.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/pata.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/pata.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/pbkdf2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/pbkdf2.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/pci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/pci.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/pcidump.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/pcidump.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/pgp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/pgp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/plan9.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/plan9.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/play.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/play.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/png.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/png.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/probe.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/probe.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/procfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/procfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/progress.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/progress.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/pxe.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/pxe.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/pxeboot.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/pxeboot.img -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/pxechain.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/pxechain.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/raid5rec.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/raid5rec.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/raid6rec.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/raid6rec.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/random.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/random.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/rdmsr.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/rdmsr.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/read.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/read.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/reboot.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/reboot.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/regexp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/regexp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/reiserfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/reiserfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/relocator.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/relocator.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/romfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/romfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/scsi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/scsi.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/search.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/search.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/sendkey.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/sendkey.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/serial.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/serial.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/setjmp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/setjmp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/setpci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/setpci.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/sfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/sfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/shift_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/shift_test.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/sleep.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/sleep.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/sleep_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/sleep_test.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/smbios.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/smbios.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/spkmodem.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/spkmodem.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/squash4.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/squash4.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/tar.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/tar.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/terminal.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/terminal.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/terminfo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/terminfo.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/test.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/testload.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/testload.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/testspeed.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/testspeed.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/tftp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/tftp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/tga.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/tga.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/time.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/time.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/tr.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/tr.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/trig.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/trig.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/true.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/true.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/truecrypt.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/truecrypt.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/udf.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/udf.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/ufs1.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/ufs1.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/ufs1_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/ufs1_be.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/ufs2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/ufs2.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/uhci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/uhci.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/usb.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/usb.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/usbms.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/usbms.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/usbtest.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/usbtest.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/vbe.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/vbe.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/verifiers.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/verifiers.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/vga.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/vga.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/vga_text.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/vga_text.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/video.lst: -------------------------------------------------------------------------------- 1 | vbe 2 | vga 3 | video_bochs 4 | video_cirrus 5 | -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/video.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/video.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/video_fb.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/video_fb.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/videoinfo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/videoinfo.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/videotest.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/videotest.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/wrmsr.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/wrmsr.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/xfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/xfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/xnu.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/xnu.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/xnu_uuid.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/xnu_uuid.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/xzio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/xzio.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/zfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/zfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/zfscrypt.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/zfscrypt.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/zfsinfo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/zfsinfo.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/i386-pc/zstd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/i386-pc/zstd.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/kernels.cfg: -------------------------------------------------------------------------------- 1 | multiboot2 /boot/kernel.elf 2 | module2 /boot/initrd.img 'initrd' 3 | boot 4 | -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/unicode.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/unicode.pf2 -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/variable.cfg: -------------------------------------------------------------------------------- 1 | grub_theme=/boot/grub/themes/XBook-live/theme.txt 2 | timeout=10 3 | -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/acpi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/acpi.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/adler32.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/adler32.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/affs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/affs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/afs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/afs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/ahci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/ahci.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/aout.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/aout.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/archelp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/archelp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/ata.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/ata.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/bfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/bfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/bitmap.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/bitmap.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/boot.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/boot.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/bsd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/bsd.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/btrfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/btrfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/bufio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/bufio.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/cat.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/cat.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/cbfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/cbfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/cbls.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/cbls.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/cbmemc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/cbmemc.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/cbtable.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/cbtable.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/cbtime.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/cbtime.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/chain.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/chain.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/cmp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/cmp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/cpio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/cpio.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/cpio_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/cpio_be.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/cpuid.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/cpuid.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/crc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/crc.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/crc64.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/crc64.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/crypto.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/crypto.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/cs5536.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/cs5536.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/date.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/date.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/disk.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/disk.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/div.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/div.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/dm_nv.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/dm_nv.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/echo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/echo.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/efi_gop.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/efi_gop.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/efi_uga.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/efi_uga.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/efinet.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/efinet.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/ehci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/ehci.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/elf.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/elf.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/eval.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/eval.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/exfat.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/exfat.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/ext2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/ext2.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/extcmd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/extcmd.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/f2fs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/f2fs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/fat.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/fat.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/fdt.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/fdt.lst -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/file.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/file.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/font.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/font.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/fshelp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/fshelp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/geli.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/geli.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/gettext.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/gettext.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/gfxmenu.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/gfxmenu.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/gfxterm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/gfxterm.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/gptsync.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/gptsync.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/gzio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/gzio.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/halt.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/halt.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/hashsum.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/hashsum.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/hdparm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/hdparm.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/hello.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/hello.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/help.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/help.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/hexdump.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/hexdump.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/hfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/hfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/hfsplus.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/hfsplus.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/http.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/http.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/iorw.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/iorw.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/iso9660.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/iso9660.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/jfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/jfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/jpeg.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/jpeg.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/kernel.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/kernel.img -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/ldm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/ldm.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/linux.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/linux.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/linux16.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/linux16.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/ls.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/ls.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/lsefi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/lsefi.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/lspci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/lspci.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/lssal.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/lssal.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/luks.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/luks.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/lvm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/lvm.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/macho.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/macho.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/memrw.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/memrw.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/minix.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/minix.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/mmap.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/mmap.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/morse.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/morse.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/mpi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/mpi.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/net.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/net.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/newc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/newc.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/ntfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/ntfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/odc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/odc.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/ohci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/ohci.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/parttool.lst: -------------------------------------------------------------------------------- 1 | msdos: msdospart 2 | -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/pata.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/pata.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/pgp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/pgp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/play.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/play.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/png.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/png.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/probe.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/probe.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/rdmsr.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/rdmsr.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/read.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/read.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/romfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/romfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/scsi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/scsi.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/sfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/sfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/sleep.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/sleep.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/tar.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/tar.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/test.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/tftp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/tftp.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/tga.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/tga.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/time.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/time.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/tpm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/tpm.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/tr.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/tr.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/trig.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/trig.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/true.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/true.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/udf.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/udf.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/ufs1.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/ufs1.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/ufs2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/ufs2.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/uhci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/uhci.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/usb.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/usb.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/usbms.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/usbms.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/video.lst: -------------------------------------------------------------------------------- 1 | efi_gop 2 | efi_uga 3 | video_bochs 4 | video_cirrus 5 | -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/video.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/video.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/wrmsr.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/wrmsr.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/xfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/xfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/xnu.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/xnu.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/xzio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/xzio.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/zfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/zfs.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/grub/x86_64-efi/zstd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/grub/x86_64-efi/zstd.mod -------------------------------------------------------------------------------- /tools/grub-2.04/boot/stage2_eltorito: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzcx998/xbook2/1450d228ce538ae8ad1a2f96e442b8da22e06950/tools/grub-2.04/boot/stage2_eltorito -------------------------------------------------------------------------------- /tools/grub-2.04/compile.cfg: -------------------------------------------------------------------------------- 1 | search.file /boot/grub/grub.cfg root 2 | set prefix=($root)/boot/grub 3 | configfile ($root)/boot/grub/grub.cfg --------------------------------------------------------------------------------