Difference between revisions of "Fedora ARM Secondary Architecture/Mock Config Repo"
Chris Tyler (talk | contribs) |
Chris Tyler (talk | contribs) (→Progress) |
||
Line 8: | Line 8: | ||
As an alternative to creating a comps repo, here is a mock config file: | As an alternative to creating a comps repo, here is a mock config file: | ||
− | config_opts['root'] = 'fedora-12-arm' | + | config_opts['root'] = 'fedora-12-arm' |
− | config_opts['target_arch'] = 'armv5tel' | + | config_opts['target_arch'] = 'armv5tel' |
− | + | ||
− | # The chroot_setup_cmd is usually 'groupinstall buildsys-build' but that hasn't been defined for ARM yet. | + | # 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. | + | # 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 | + | 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' | + | 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['dist'] = 'fc12' # only useful for --resultdir variable subst |
− | + | ||
− | config_opts['yum.conf'] = """ | + | config_opts['yum.conf'] = """ |
− | [main] | + | [main] |
− | cachedir=/var/cache/yum | + | cachedir=/var/cache/yum |
− | debuglevel=1 | + | debuglevel=1 |
− | reposdir=/dev/null | + | reposdir=/dev/null |
− | logfile=/var/log/yum.log | + | logfile=/var/log/yum.log |
− | retries=20 | + | retries=20 |
− | obsoletes=1 | + | obsoletes=1 |
− | gpgcheck=0 | + | gpgcheck=0 |
− | assumeyes=1 | + | assumeyes=1 |
− | + | ||
− | # repos | + | # repos |
− | + | ||
− | [fedora] | + | [fedora] |
− | 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 |
− | failovermethod=priority | + | failovermethod=priority |
− | + | ||
− | [updates-released] | + | [updates-released] |
− | 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 | + | failovermethod=priority |
− | """ | + | """ |
Revision as of 09:10, 4 March 2010
Description
Mock requires a repository that contains the comps info for the buildsys-build package group.
Progress
As an alternative to creating a comps repo, here is a mock config file:
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 failovermethod=priority [updates-released] name=updates mirrorlist=http://mirrorlist.fedora-arm.wantstofly.org/?repo=updates-released-f12&arch=arm failovermethod=priority """