1Summary: this package provides bootstub binary for mrst/mfld platform
2Name: bootstub
3Version: 1.1
4Release: 1%{?dist}
5License: GPLv2
6Group: System Environment/Shells
7Source: %{name}-%{version}.tar.bz2
8BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)  
9
10%description 
11this package provides bootstub to create NAND boot image
12
13%prep
14%setup -q
15
16%build
17make
18
19%install
20rm -rf $RPM_BUILD_ROOT
21mkdir -p $RPM_BUILD_ROOT/boot
22install -m 755 bootstub $RPM_BUILD_ROOT/boot/
23
24%clean
25
26%files
27%defattr(-,root,root,-)
28/boot/bootstub
29
30%changelog
31* Wed Jun 09 2010 Alek Du <alek.du@intel.com> - 0.9
32- Support medfield platform
33* Tue Aug 25 2009 Feng Tang <feng.tang@intel.com> - 0.8
34- Fix SFI mmio exporting
35- changed default spi clock to 100mhz
36* Thu Jun 04 2009 Alek Du <alek.du@intel.com> - 0.7
37- build e820 table (by Feng.Tang@intel.com)
38- add SPI controller selection flag
39* Tue May 12 2009 Alek Du <alek.du@intel.com> - 0.6
40- improved initrd relocation performance
41- improved spi uart output performance
42* Thu Mar 12 2009 Alek Du <alek.du@intel.com> - 0.5
43- add sub arch parameter
44* Thu Jul 10 2008 Alek Du <alek.du@intel.com> - 0.4
45- add SPI uart suppression flag
46* Tue Jun 17 2008 Alek Du <alek.du@intel.com> - 0.3
47- change SPI uart slave select to 0x2 according to ESL 2008.06 version
48* Tue Jun 10 2008 Alek Du <alek.du@intel.com> - 0.2
49- add SPI uart support
50* Mon May 26 2008 Alek Du <alek.du@intel.com > - 0.1
51- create initial package
52