cross_toolchain.rb: Update kernel and change tmp
This commit is contained in:
parent
93e43a82b6
commit
fd21c2f794
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
/dist-newstyle/
|
/dist-newstyle/
|
||||||
/config.toml
|
/config.toml
|
||||||
/log/
|
/log/
|
||||||
|
/tmp/
|
||||||
|
@ -50,4 +50,6 @@ will print:
|
|||||||
2025-02-04 (Disconnecting [])
|
2025-02-04 (Disconnecting [])
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## cross\_toolchain.rb
|
||||||
|
|
||||||
## tea-cleaner
|
## tea-cleaner
|
||||||
|
@ -1,4 +1,8 @@
|
|||||||
#!/usr/bin/env ruby
|
#!/usr/bin/env ruby
|
||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public License,
|
||||||
|
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
|
||||||
|
# obtain one at https://mozilla.org/MPL/2.0/. -}
|
||||||
|
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
require 'pathname'
|
require 'pathname'
|
||||||
|
@ -14,10 +14,10 @@ require 'pathname'
|
|||||||
|
|
||||||
BINUTILS_VERSION = '2.43.1'
|
BINUTILS_VERSION = '2.43.1'
|
||||||
GLIBC_VERSION = '2.40'
|
GLIBC_VERSION = '2.40'
|
||||||
KERNEL_VERSION = '5.15.166'
|
KERNEL_VERSION = '5.15.178'
|
||||||
GCC_VERSION = "14.2.0"
|
GCC_VERSION = "14.2.0"
|
||||||
|
|
||||||
TMP = Pathname.new('./build')
|
TMP = Pathname.new('./tmp')
|
||||||
|
|
||||||
class BuildTarget
|
class BuildTarget
|
||||||
attr_accessor(:build, :gcc, :target, :tmp)
|
attr_accessor(:build, :gcc, :target, :tmp)
|
||||||
|
@ -1,4 +1,9 @@
|
|||||||
#!/usr/bin/env ruby
|
#!/usr/bin/env ruby
|
||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public License,
|
||||||
|
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
|
||||||
|
# obtain one at https://mozilla.org/MPL/2.0/. -}
|
||||||
|
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
require 'date'
|
require 'date'
|
||||||
require 'zlib'
|
require 'zlib'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user