diff options
author | Francis Rowe <info@gluglug.org.uk> | 2014-08-11 09:00:00 (EDT) |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2014-08-22 14:29:49 (EDT) |
commit | 8df313c4d6607181576471e08d7e909c9c0f33e9 (patch) | |
tree | 249f6003e3293fd4049ad57c267fa7ec1c4269e4 /build | |
parent | 7eca665d684a734d55b0bb26c4f1831d399c5330 (diff) | |
download | libreboot-8df313c4d6607181576471e08d7e909c9c0f33e9.zip libreboot-8df313c4d6607181576471e08d7e909c9c0f33e9.tar.gz libreboot-8df313c4d6607181576471e08d7e909c9c0f33e9.tar.bz2 |
Libreboot release 6 beta 5.r20140811
- build: added 'luks', 'lvm', 'cmosdump' and 'cmostest' to the list of
modules for grub.elf
- Documentation: added pics showing T60 unbricking (still need to
write a tutorial)
- build: include cmos.layout
(coreboot/src/mainboard/manufacturer/model/cmos.layout) files in
libreboot_bin
- Documentation: added ../docs/howtos/x60tablet_unbrick.html
- Documentation: added ../docs/howtos/t60_unbrick.html
- Documentation: added ../docs/howtos/t60_lcd_15.html
- Documentation: added ../docs/howtos/t60_security.html
- Documentation: added ../docs/howtos/t60_heatsink.html
- Documentation: Renamed RELEASE.html to release.html
- Documentation: removed pcmcia reference in x60_security.html (it's
cardbus)
- Documentation: added preliminary information about randomized seal
(for physical intrusion detection) in x60_security.html and
t60_security.html
- Documentation: added preliminary information about
preventing/mitigating cold-boot attack in x60_security.html and
t60_security.html
- Documentation: added info to ../docs/index.html#macbook21 warning
about issues with macbook21
- Documentation: X60/T60: added information about checking custom
ROM's using dd to see whether or not the top 64K region is
duplicated below top or not. Advise caution about this in the
tutorial that deals with flashing on top of Lenovo BIOS, citing the
correct dd commands necessary if it is confirmed that the ROM has
not been applied with dd yet. (in the case that the user compiled
their own ROM's from libreboot, without using the build scripts, or
if they forgot to use dd, etc).
- Split resources/libreboot/patch/gitdiff into separate patch files
(getcb script updated to accomodate this change).
- Re-added .git files to bucts
- Fixed the oversight where macbook21_firstflash wasn't included in
binary archives
Diffstat (limited to 'build')
-rwxr-xr-x | build | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -42,7 +42,7 @@ echo "generating grub.elf payload" cd grub mv ../grub_memdisk_keymap . # Build the GRUB2 payload (grub.elf) -./grub-mkstandalone --grub-mkimage=./grub-mkimage -O i386-coreboot -o grub.elf --modules='crypto cryptodisk ahci pata ehci uhci ohci usb_keyboard usbms part_msdos xfs ext2 fat at_keyboard part_gpt usbserial_usbdebug cbfs minix_be minix minix3_be minix3 minix2_be minix2 zfs ufs2 ufs1_be ufs1 udf squash4 romfs jfs reiserfs procfs odc ntfs nilfs2 newc iso9660 hfsplus cpio exfat cpio_be afs btrfs bfs hfs video_bochs password png jpeg keystatus sleep loopback gfxterm_background' --install-modules='syslinuxcfg bsd ls cat echo linux search configfile normal cbtime cbls memrw iorw minicmd lsmmap lspci halt reboot hexdump pcidump regexp setpci lsacpi chain test' --fonts= --themes= --locales= -d grub-core/ /boot/grub/grub.cfg=../resources/grub/config/grub_memdisk.cfg $(./grub_memdisk_keymap) +./grub-mkstandalone --grub-mkimage=./grub-mkimage -O i386-coreboot -o grub.elf --modules='crypto cryptodisk luks lvm cmosdump cmostest ahci pata ehci uhci ohci usb_keyboard usbms part_msdos xfs ext2 fat at_keyboard part_gpt usbserial_usbdebug cbfs minix_be minix minix3_be minix3 minix2_be minix2 zfs ufs2 ufs1_be ufs1 udf squash4 romfs jfs reiserfs procfs odc ntfs nilfs2 newc iso9660 hfsplus cpio exfat cpio_be afs btrfs bfs hfs video_bochs password png jpeg keystatus sleep loopback gfxterm_background' --install-modules='syslinuxcfg bsd ls cat echo linux search configfile normal cbtime cbls memrw iorw minicmd lsmmap lspci halt reboot hexdump pcidump regexp setpci lsacpi chain test' --fonts= --themes= --locales= -d grub-core/ /boot/grub/grub.cfg=../resources/grub/config/grub_memdisk.cfg $(./grub_memdisk_keymap) mv grub_memdisk_keymap ../ # move those into coreboot directory: @@ -119,6 +119,11 @@ cp COPYING ../libreboot_bin # Include the same documentation in binary archive cp -r docs ../libreboot_bin +# include X60 cmos.layout file +cp coreboot/src/mainboard/lenovo/x60/cmos.layout ../libreboot_bin/x60cmos.layout +cp coreboot/src/mainboard/lenovo/t60/cmos.layout ../libreboot_bin/t60cmos.layout +cp coreboot/src/mainboard/apple/macbook21/cmos.layout ../libreboot_bin/macbook21cmos.layout + # X60/T60: BUC.TS utility is needed to flash libreboot while Lenovo BIOS is running cp -r bucts ../libreboot_bin @@ -129,6 +134,8 @@ cp -r coreboot/util/nvramtool ../libreboot_bin cp powertop.trisquel6 ../libreboot_bin cp powertop.trisquel6.init ../libreboot_bin +cp macbook21_firstflash ../libreboot_bin + # (lazy hack) to make builddep-flashrom work in libreboot_bin: cp -r resources ../libreboot_bin |