-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed build order in build.sh for the necessary shift to integrate …
…the initramfs.cpio.xz into bzImage [aka. initrd into linux kernel]... - See [issue #10](#10 (comment)) for details. Signed-off-by: kkarhan <[email protected]>
- Loading branch information
Showing
3 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
#!/bin/toybox bash | ||
/bin/toybox mount -t proc none /proc | ||
/bin/toybox mount -t sysfs none /sys | ||
/bin/toybox clear | ||
/bin/toybox oneit -rn -c /dev/tty0 | ||
/bin/toybox openvt -c 1 -s | ||
/bin/toyboy mount -nvt tmpfs none /dev | ||
/bin/toybox lspci | ||
/bin/toybox lsusb | ||
/bin/toybox echo -ne '\007' | ||
/bin/toybox sleep 1 | ||
/bin/toybox echo -ne '\007' | ||
/bin/toybox uname | ||
/bin/toybox uname -r | ||
/bin/toybox cat welcome.txt | ||
/bin/toybox bash | ||
/bin/toybox oneit -rn -c /dev/tty0 /bin/toybox bash | ||
/bin/toybox oneit -rn -c /dev/console /bin/toybox bash | ||
/bin/toybox oneit -rn -c /bin/toybox openvt -c 0 -s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters