Gentoo Archives: gentoo-catalyst

From: Brian Dolbec <dolsen@g.o>
To: gentoo-catalyst@l.g.o
Subject: [gentoo-catalyst] [PATCH 5/5] Add arm64 support
Date: Sun, 02 Mar 2014 23:01:25
Message-Id: 1393801262-13820-5-git-send-email-dolsen@gentoo.org
In Reply to: [gentoo-catalyst] [PATCH 2/5] generic_stage_target.py: Fix an intermittent snapshot_cache_path keyerror by Brian Dolbec
1 From: Mike Frysinger <vapier@g.o>
2
3 Brian Dolbec: Modify patch for the new directory structure and apply.
4 Cleanup the imports.
5
6 dgdg
7 ---
8 catalyst/arch/arm64.py | 15 +++++++++++++++
9 1 file changed, 15 insertions(+)
10 create mode 100644 catalyst/arch/arm64.py
11
12 diff --git a/catalyst/arch/arm64.py b/catalyst/arch/arm64.py
13 new file mode 100644
14 index 0000000..00e7527
15 --- /dev/null
16 +++ b/catalyst/arch/arm64.py
17 @@ -0,0 +1,15 @@
18 +
19 +from catalyst import builder
20 +
21 +class arch_arm64(builder.generic):
22 + "builder class for arm64"
23 + def __init__(self,myspec):
24 + builder.generic.__init__(self,myspec)
25 + self.settings["CHROOT"]="chroot"
26 + self.settings["CFLAGS"]="-O2 -pipe"
27 + self.settings["CFLAGS"]="-O2 -pipe"
28 + self.settings["CHOST"]="aarch64-unknown-linux-gnu"
29 +
30 +def register():
31 + "Inform main catalyst program of the contents of this plugin."
32 + return ({ "arm64":arch_arm64 }, ("aarch64","arm64", ))
33 --
34 1.8.5.3

Replies

Subject Author
Re: [gentoo-catalyst] [PATCH 5/5] Add arm64 support Brian Dolbec <dolsen@g.o>