ragnaroek
Ragnarök is a work-in-progress tool to flash Samsung devices via USB or Wifi, similar to Heimdall, Odin and NetOdin.
파일 탐색기
- build-and-test.yml
- error.rs
- integration_tests.rs
- lib.rs
- metadata.rs
- BL_A405FNXXU4CVK1_CL25488227_QB58944467_REV00_user_low_ship.tar.md5
- Cargo.toml
- pit.rs
- .gitignore
- Cargo.lock
- Cargo.toml
- deserialize.rs
- deserialize_test.rs
- error.rs
- lib.rs
- pit_entry.rs
- A40_EUR_OPEN.pit
- GT-I8190.pit
- GT-I9500.pit
- GT-I9505.pit
- I9000_s1_odin_20100512.pit
- I9000_s1_odin_20100803.pit
- PICASSO3_EUR_OPEN.pit
- SCH-I545.pit
- SGH-I317.pit
- SM-A105F-DS.pit
- SM-A105FN_Europe.pit
- SM-A105G.pit
- SM-A105N_KOR_Open.pit
- SM-A3050_China_Open.pit
- SM-A305_Japan_KDI.pit
- SM-A305F.pit
- SM-A305FN.pit
- SM-A305G.pit
- SM-A305GN.pit
- SM-A305GT.pit
- SM-A305N_Korea.pit
- SM-A305YN.pit
- SM-A515F.pit
- SM-A8000.pit
- SM-G530H.pit
- SM-G800H_EUR_OPEN.pit
- SM-G900A.pit
- SM-G900F_16GB.pit
- SM-G900F_32GB.pit
- SM-G900F_pit.pit
- SM-G900H_16GB.pit
- SM-G900I_16GB.pit
- SM-G900M.pit
- SM-G900P_16GB.pit
- SM-G900T_16GB.pit
- SM-G900W8_16GB.pit
- SM-G900W8_32GB.pit
- SM-G901F.pit
- SM-G9250_CHN_HKTW.pit
- SM-G925A.pit
- SM-G925F_EUR_OPEN.pit
- SM-G925F_EUR_OPEN_HIDDEN100M.pit
- SM-G925F_EUR_OPEN_HIDDEN150M.pit
- SM-G925F_EUR_OPEN_HIDDEN200M.pit
- SM-G925F_EUR_OPEN_HIDDEN240M.pit
- SM-G925F_EUR_OPEN_HIDDEN300M.pit
- SM-G925F_EUR_OPEN_HIDDEN60M.pit
- SM-G925I.pit
- SM-G925K-L-S_KOR.pit
- SM-G925P.pit
- SM-G925R4_USC.pit
- SM-G925T.pit
- SM-G925V.pit
- SM-G925W8.pit
- SM-G950F_EUR_OPEN.pit
- SM-G965F_EUR_OPEN.pit
- SM-J200BT.pit
- SM-J200F.pit
- SM-J200G.pit
- SM-J200GU.pit
- SM-J200H.pit
- SM-J200M.pit
- SM-J200Y.pit
- SM-J500M.pit
- SM-N9005_16GB.pit
- SM-N9005_32GB.pit
- SM-N900_32GB.pit
- SM-N900A_32G.pit
- SM-N900P_32GB.pit
- SM-N900V_32G.pit
- SM-N910F_32GB.pit
- SM-N910T_32GB.pit
- SM-N910V.pit
- SM-R381.pit
- SM-R732.pit
- SM-T210(R).pit
- SM-T210.pit
- SM-T231.pit
- SM-T320.pit
- SM-T365.pit
- SM-T531.pit
- SM-T535.pit
- SM-T550.pit
- SPH-L720_16GB.pit
- X1Q_CHN_OPENX.pit
- X1Q_USA_SINGLE.pit
- Cargo.toml
- mod.rs
- net_bind.rs
- net_connect.rs
- usb.rs
- mod.rs
- sequence.rs
- cmd.rs
- cmd_packet.rs
- cmd_reply.rs
- error.rs
- mod.rs
- odin_int.rs
- session.rs
- begin_session.rs
- download_pit.rs
- end_session.rs
- flash_pit.rs
- magic_handshake.rs
- mod.rs
- end_session.rs
- error.rs
- handshake.rs
- mod.rs
- probe.rs
- transfer.rs
- error.rs
- lib.rs
- shell.rs
- Cargo.toml
- main.rs
- Cargo.toml
- connect_tab.rs
- flash_tab.rs
- log_tab.rs
- mod.rs
- pit_tab.rs
- main.rs
- shared_conn.rs
- Cargo.toml
- .envrc
- .gitignore
- Cargo.lock
- Cargo.toml
- devenv.lock
- devenv.nix
- devenv.yaml
- LICENSE
- PIT.md
- PROTOCOL.md
- README.md
- UPLOAD.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
cargo build
설명 보기 ▼
cargo build
Compile a local package and all of its dependencies.
cargo {{[b|build]}}
Build the package or packages defined by the `Cargo.toml` manifest file in the local path:
cargo {{[b|build]}} {{[-r|--release]}}
Build artifacts in release mode, with optimizations:
cargo {{[b|build]}} --locked
Require that `Cargo.lock` is up to date:
cargo run
설명 보기 ▼
cargo run
Run the current Cargo package.
Note: The working directory of the executed binary will be set to the current working directory.
cargo {{[r|run]}}
Run the default binary target:
cargo {{[r|run]}} --bin {{name}}
Run the specified binary:
cargo {{[r|run]}} --example {{name}}
Run the specified example:
cargo test
설명 보기 ▼
cargo test
Execute the unit and integration tests of a Rust package.
cargo {{[t|test]}} {{test_name}}
Only run tests containing a specific string in their names:
cargo {{[t|test]}} -- --test-threads {{count}}
Set the number of simultaneous running test cases:
cargo {{[t|test]}} {{[-r|--release]}}
Test artifacts in release mode, with optimizations:
