Difference between revisions of "Fedora ARM Secondary Architecture/Mock Config Repo"

From CDOT Wiki
Jump to: navigation, search
(2010.02.24)
 
Line 38: Line 38:
 
  name=fedora
 
  name=fedora
 
  mirrorlist=http://mirrorlist.fedora-arm.wantstofly.org/?repo=fedora-12&arch=arm
 
  mirrorlist=http://mirrorlist.fedora-arm.wantstofly.org/?repo=fedora-12&arch=arm
 +
# for local building on machines connected to hongkong, comment out the line above and uncomment the one below
 +
#baseurl=http://hongkong/yum/base/12/arm/
 
  failovermethod=priority
 
  failovermethod=priority
 
   
 
   
Line 43: Line 45:
 
  name=updates
 
  name=updates
 
  mirrorlist=http://mirrorlist.fedora-arm.wantstofly.org/?repo=updates-released-f12&arch=arm
 
  mirrorlist=http://mirrorlist.fedora-arm.wantstofly.org/?repo=updates-released-f12&arch=arm
  failovermethod=priority
+
  # for local building on machines connected to hongkong, comment out the line above and uncomment the one below
 +
#baseurl=http://hongkong/yum/source/12/arm/ failovermethod=priority
 
  """
 
  """

Latest revision as of 16:56, 17 April 2010

Description

Mock requires a repository that contains the comps info for the buildsys-build package group.

Progress

2010.02.24

As an alternative to creating a comps repo, here is a mock config file:

# /etc/mock/fedora-12-arm.cfg

config_opts['root'] = 'fedora-12-arm'
config_opts['target_arch'] = 'armv5tel'

# The chroot_setup_cmd is usually 'groupinstall buildsys-build' but that hasn't been defined for ARM yet.
# Instead, the package list is specified here.
config_opts['chroot_setup_cmd'] = 'install bash bzip2 coreutils cpio diffutils fedora-release findutils gawk gcc gcc-c++ grep gzip info make patch redhat-rpm-config

rpm-build sed shadow-utils tar unzip util-linux-ng which bash curl cvs fedora-release gnupg make redhat-rpm-config rpm-build shadow-utils'
config_opts['dist'] = 'fc12'  # only useful for --resultdir variable subst

config_opts['yum.conf'] = """
[main]
cachedir=/var/cache/yum
debuglevel=1
reposdir=/dev/null
logfile=/var/log/yum.log
retries=20
obsoletes=1
gpgcheck=0
assumeyes=1

# repos

[fedora]
name=fedora
mirrorlist=http://mirrorlist.fedora-arm.wantstofly.org/?repo=fedora-12&arch=arm
# for local building on machines connected to hongkong, comment out the line above and uncomment the one below
#baseurl=http://hongkong/yum/base/12/arm/
failovermethod=priority

[updates-released]
name=updates
mirrorlist=http://mirrorlist.fedora-arm.wantstofly.org/?repo=updates-released-f12&arch=arm
# for local building on machines connected to hongkong, comment out the line above and uncomment the one below
#baseurl=http://hongkong/yum/source/12/arm/ failovermethod=priority
"""