Sosboot-ng: различия между версиями
Перейти к навигации
Перейти к поиску
Zombah (обсуждение | вклад) м (add separate folder for binaries) |
Zombah (обсуждение | вклад) (add more topics, fix some style) |
||
Строка 1: | Строка 1: | ||
= | ==Sosboot-ng guide== | ||
= | ==Description== | ||
New generation of [[sosboot]] recovery tool. <br/> | |||
SOSBoot is the AC100 Swiss Army knife. It's a minimalistic self containing linux system designed to solely fit inside the Recovery partition of the AC100. | |||
=Current features= | ==Where to download source and binary== | ||
* [https://github.com/ac100-ru/sosboot/tree/sosboot-ng Current sosboot-ng source code location] | |||
* [https://drive.google.com/folderview?id=0BzHUnWusu2ztRWM2cFlQVFJjcW8&usp=sharing#list Current sosboot-ng binaries location] | |||
==Current features== | |||
* Include upstream kernels (stable and mainline) | * Include upstream kernels (stable and mainline) | ||
* Have serial console working with getty login | * Have serial console working with getty login | ||
Строка 17: | Строка 20: | ||
** bluez-utils | ** bluez-utils | ||
** alsa-utils | ** alsa-utils | ||
==How to run binary== | |||
* Install tegrarcm opensource tool from Nvidia | |||
** [https://github.com/NVIDIA/tegrarcm Tegrarcm source code location] | |||
* Load directly to AC100 ram from PC with tegrarcm tool | |||
** Connect AC100 to PC with miniUSB and start APX mode CTRL+ESC+POWER<pre># tegrarcm readbct --bct=ac100.bct # tegrarcm --bct=ac100.bct --bootloader=<sosboot-ng binary name .bin> --loadaddr=0x108000</pre> | |||
==Included scripts== | |||
# Multifunctional script to switch from factory proprietary fastboot bootloader to U-Boot | |||
## Name: switch_to_uboot | |||
### Location: <pre># /switch_to_uboot</pre> | |||
# Script to simplify installation of Android system with gpt partition table and U-Boot bootloader | |||
## android installer | |||
### Location: <pre># /installer</pre> | |||
==How get sources and compile it manually== | |||
# Install git-repo tool if you dont have one yet:<pre>$ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo $ chmod a+x ~/bin/repo</pre> | |||
# Create working folder and move inside it<pre>$ mkdir sosboot $ cd sosboot</pre> | |||
# Init git-repo manifest branch | |||
## For development branch: <pre>$ repo init -u git://github.com/ac100-ru/sosboot-manifests.git -b for-next</pre> | |||
## or for stable branch:<pre>$ repo init -u git://github.com/ac100-ru/sosboot-manifests.git -b sosboot-ng</pre> | |||
# Download sources:<pre>$ repo sync</pre> | |||
# Compile sources:<pre>$ ./build_all</pre> | |||
# Clean whole sources if want to recompile:<pre>$ ./clean_all</pre> | |||
===Advanced topics=== | |||
* If you need recompile for example only kernel | |||
<pre> | |||
$ ./scripts/clean_sosboot | |||
$ ./scripts/clean_sos-uboot | |||
$ ./scripts/clean_kernel | |||
$ ./build_all | |||
</pre> |
Версия от 22:08, 18 января 2015
Sosboot-ng guide
Description
New generation of sosboot recovery tool.
SOSBoot is the AC100 Swiss Army knife. It's a minimalistic self containing linux system designed to solely fit inside the Recovery partition of the AC100.
Where to download source and binary
Current features
- Include upstream kernels (stable and mainline)
- Have serial console working with getty login
- Kernel config have all AC100 hardware enabled for testing
- Working sysV init
- Include android installer
- Include more tools to test
- usbtools
- wireless-tools
- bluez-utils
- alsa-utils
How to run binary
- Install tegrarcm opensource tool from Nvidia
- Load directly to AC100 ram from PC with tegrarcm tool
- Connect AC100 to PC with miniUSB and start APX mode CTRL+ESC+POWER
# tegrarcm readbct --bct=ac100.bct # tegrarcm --bct=ac100.bct --bootloader=<sosboot-ng binary name .bin> --loadaddr=0x108000
- Connect AC100 to PC with miniUSB and start APX mode CTRL+ESC+POWER
Included scripts
- Multifunctional script to switch from factory proprietary fastboot bootloader to U-Boot
- Name: switch_to_uboot
- Location:
# /switch_to_uboot
- Location:
- Name: switch_to_uboot
- Script to simplify installation of Android system with gpt partition table and U-Boot bootloader
- android installer
- Location:
# /installer
- Location:
- android installer
How get sources and compile it manually
- Install git-repo tool if you dont have one yet:
$ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo $ chmod a+x ~/bin/repo
- Create working folder and move inside it
$ mkdir sosboot $ cd sosboot
- Init git-repo manifest branch
- For development branch:
$ repo init -u git://github.com/ac100-ru/sosboot-manifests.git -b for-next
- or for stable branch:
$ repo init -u git://github.com/ac100-ru/sosboot-manifests.git -b sosboot-ng
- For development branch:
- Download sources:
$ repo sync
- Compile sources:
$ ./build_all
- Clean whole sources if want to recompile:
$ ./clean_all
Advanced topics
- If you need recompile for example only kernel
$ ./scripts/clean_sosboot $ ./scripts/clean_sos-uboot $ ./scripts/clean_kernel $ ./build_all