Skip to content

Instantly share code, notes, and snippets.

View rorybolt's full-sized avatar

Rory Bolt rorybolt

View GitHub Profile
@rorybolt
rorybolt / stage2.log
Created January 7, 2022 19:53
stage2.log
07 Jan 2022 11:52:33 PST: INFO : Catalyst 3.0.18
07 Jan 2022 11:52:33 PST: INFO : extended version info unavailable
07 Jan 2022 11:52:33 PST: INFO : Copyright 2003-2022 Gentoo Foundation
07 Jan 2022 11:52:33 PST: INFO : Copyright 2008-2012 various authors
07 Jan 2022 11:52:33 PST: INFO : Distributed under the GNU General Public License version 2.1
07 Jan 2022 11:52:33 PST: NOTICE : Loading configuration file: /etc/catalyst/catalyst.conf
07 Jan 2022 11:52:33 PST: INFO : Package cache support enabled.
07 Jan 2022 11:52:33 PST: INFO : Seed cache support enabled.
07 Jan 2022 11:52:33 PST: INFO : Kernel cache support enabled.
07 Jan 2022 11:52:33 PST: INFO : Envscript support enabled.
@rorybolt
rorybolt / foo
Created January 7, 2022 19:21
foo
RockPro64_be ~ # ./enterit.sh
RockPro64_be / # portageq best_version / sys-apps/baselayout
!!! Section 'gentoo' in repos.conf has location attribute set to nonexistent directory: '/var/db/repos/gentoo'
!!! Invalid Repository Location (not a dir): '/var/db/repos/gentoo'
sys-apps/baselayout-2.7-r3
RockPro64_be / #
@rorybolt
rorybolt / stage2.log
Created January 7, 2022 18:38
stage2.log
07 Jan 2022 10:36:43 PST: INFO : Catalyst 3.0.18
07 Jan 2022 10:36:43 PST: INFO : extended version info unavailable
07 Jan 2022 10:36:43 PST: INFO : Copyright 2003-2022 Gentoo Foundation
07 Jan 2022 10:36:43 PST: INFO : Copyright 2008-2012 various authors
07 Jan 2022 10:36:43 PST: INFO : Distributed under the GNU General Public License version 2.1
07 Jan 2022 10:36:43 PST: NOTICE : Loading configuration file: /etc/catalyst/catalyst.conf
07 Jan 2022 10:36:43 PST: INFO : Autoresuming support enabled.
07 Jan 2022 10:36:43 PST: INFO : Package cache support enabled.
07 Jan 2022 10:36:43 PST: INFO : Seed cache support enabled.
07 Jan 2022 10:36:43 PST: INFO : Snapshot cache support enabled.
@rorybolt
rorybolt / foo
Created January 6, 2022 19:57
foo
RockPro64_be ~ # catalyst -f stage3.spec
06 Jan 2022 11:49:33 PST: NOTICE : Loading configuration file: /etc/catalyst/catalyst.conf
06 Jan 2022 11:49:33 PST: NOTICE : conf_values[options] = {'seedcache', 'kerncache', 'pkgcache', 'snapcache', 'bindist', 'autoresume'}
06 Jan 2022 11:49:33 PST: NOTICE : Processing spec file: stage3.spec
06 Jan 2022 11:49:33 PST: NOTICE : Using target: stage3
06 Jan 2022 11:49:33 PST: NOTICE : Source file specification matching setting is: strict
06 Jan 2022 11:49:33 PST: NOTICE : Accepted source file extensions search order: ['tar.xz', 'tpxz', 'xz', 'tar.bz2', 'bz2', 'tbz2', 'squashfs', 'sfs', 'tar.gz', 'gz', 'tar']
06 Jan 2022 11:49:34 PST: NOTICE : Source path set to /var/tmp/catalyst/tmp/default/stage1-aarch64_be-2022.01.04/
06 Jan 2022 11:49:34 PST: NOTICE : Resume point detected, skipping target path setup operation...
06 Jan 2022 11:49:34 PST: NOTICE : --- Running action sequence: unpack
@rorybolt
rorybolt / arm64.py
Created January 6, 2022 19:19
arm64.py
from catalyst import builder
class arch_arm64(builder.generic):
"builder class for arm64"
def __init__(self,myspec):
builder.generic.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -pipe"
self.settings["CHOST"]="aarch64-unknown-linux-gnu"