Changes between Version 16 and Version 17 of linux/cheap-nas
- Timestamp:
- 2015-04-17T12:16:59Z (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
linux/cheap-nas
v16 v17 165 165 svn co https://svn.code.sf.net/p/scst/svn/branches/2.2.x scst 166 166 wget http://ftp.redhat.com/pub/redhat/linux/enterprise/6Server/en/os/SRPMS/kernel-${kernel}.src.rpm 167 yum install -y yum-utils rpmdevtools 167 yum install -y \ 168 yum-utils \ 169 rpmdevtools \ 170 elfutils-libelf-devel \ 171 elfutils-devel \ 172 zlib-devel \ 173 binutils-devel \ 174 python-devel \ 175 audit-libs-devel \ 176 perl-ExtUtils-Embed \ 177 bison 168 178 yum-builddep -y --nogpgcheck kernel-${kernel}.src.rpm 169 179 rpm -Uvh kernel-${kernel}.src.rpm 170 cp scst/iscsi-scst/kernel/patches/rhel/put_page_callback-2.6.32-504.patch rpmbuild/SOURCES/180 cp "scst/iscsi-scst/kernel/patches/rhel/put_page_callback-2.6.32-504.patch rpmbuild/SOURCES/ 171 181 cp scst/scst/kernel/rhel/scst_exec_req_fifo-2.6.32.patch rpmbuild/SOURCES/ 172 182 }}} 173 в `kernel.spec` после `Source86: config-s390x-debug-rhel` добавляю 183 в `kernel.spec` после `Source86: config-s390x-debug-rhel` добавляю: 174 184 {{{ 175 185 #!text … … 177 187 Patch112: scst_exec_req_fifo-2.6.32.patch 178 188 }}} 179 а после `ApplyOptionalPatch linux-kernel-test.patch` соответственно 189 после `ApplyOptionalPatch linux-kernel-test.patch` соответственно: 180 190 {{{ 181 191 #!text … … 183 193 ApplyPatch scst_exec_req_fifo-2.6.32.patch 184 194 }}} 185 186 {{{ 187 #!bash 195 `#% define buildid .local` лучше поменять на `%define buildid .scst`, чтобы не запутаться в ядрах. после всего этого запускаю сборку rpm пакетов ядра с включенными файлами firmware: 196 {{{ 197 #!bash 198 cd rpmbuild/SPECS 188 199 rpmbuild -ba \ 189 200 --without kabichk \ … … 191 202 --with firmware \ 192 203 --without debuginfo \ 193 --target=`uname -m` rpmbuild/SPECS/kernel.spec204 --target=`uname -m` kernel.spec 194 205 }}} 195 206